From 84d272d879f8dafeea336e6c93feb0ea58d0c8eb Mon Sep 17 00:00:00 2001 From: Harika Nittala Date: Wed, 4 Oct 2023 12:43:05 -0700 Subject: [PATCH] build.sh: Fix to copy host and guest kernel rpm packages Copy the host kernel package and guest kernel rpm packages into the separate folders for the non-debian OS. Signed-off-by: Harika Nittala --- build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 9654329d88ab..7fcf59c01f91 100755 --- a/build.sh +++ b/build.sh @@ -86,7 +86,8 @@ if [[ "$BUILD_PACKAGE" = "1" ]]; then cp linux/linux-*-guest-*.deb $OUTPUT_DIR/linux/guest -v cp linux/linux-*-host-*.deb $OUTPUT_DIR/linux/host -v else - cp linux/kernel-*.rpm $OUTPUT_DIR/linux -v + cp linux/kernel-*host*.rpm $OUTPUT_DIR/linux/host -v + cp linux/kernel-*guest*.rpm $OUTPUT_DIR/linux/guest -v fi cp launch-qemu.sh ${OUTPUT_DIR} -v