From cf16e258cb8db411c05584e08d06960181c201b3 Mon Sep 17 00:00:00 2001 From: Ward from fusion-voyager-3 Date: Sat, 10 Aug 2024 18:51:38 +0300 Subject: [PATCH] Fix VOLID issue --- .github/release-nest-v3-nvidia-iso | 2 +- build.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/release-nest-v3-nvidia-iso b/.github/release-nest-v3-nvidia-iso index e440e5c..bf0d87a 100644 --- a/.github/release-nest-v3-nvidia-iso +++ b/.github/release-nest-v3-nvidia-iso @@ -1 +1 @@ -3 \ No newline at end of file +4 \ No newline at end of file diff --git a/build.sh b/build.sh index 27c7af5..33cd0aa 100755 --- a/build.sh +++ b/build.sh @@ -60,9 +60,9 @@ mksquashfs \ # Generate bootable EFI Image from refind # Copy kernel to refind -cp "$ROOTFS_PATH/boot"/vmlinuz-* \ +cp "$ROOTFS_PATH/boot"/vmlinuz-$ISO_KERNEL \ "./data/refind/EFI/vmlinuz" && \ -cp "$ROOTFS_PATH/boot"/initrd.img-* \ +cp "$ROOTFS_PATH/boot"/initrd.img-$ISO_KERNEL \ "./data/refind/EFI/initrd" dd if=/dev/zero of="$LIVE_BOOT_PATH/efiboot.img" bs=1 count=$(du -s -B1 ./data/refind | cut -f1) @@ -83,7 +83,7 @@ mkdir -p ./output xorriso \ -as mkisofs \ -iso-level 3 \ - -V $LIVE_BOOT_VOLUME_NAME \ + -V "PikaOS 4" \ -e --interval:appended_partition_2:all:: \ -append_partition 2 0xef "$LIVE_BOOT_PATH/efiboot.img" \ -J -joliet-long \