Skip to content

Commit

Permalink
build.sh: Fix to copy host and guest kernel rpm packages
Browse files Browse the repository at this point in the history
Copy the host kernel package and guest kernel rpm packages into the separate folders for the non-debian OS.

Signed-off-by: Harika Nittala <[email protected]>
  • Loading branch information
LakshmiSaiHarika committed Nov 27, 2024
1 parent 2705deb commit 84d272d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 84d272d

Please sign in to comment.