Fix VOLID issue

This commit is contained in:
Ward from fusion-voyager-3 2024-08-10 18:51:38 +03:00
parent 7e699e7b4f
commit cf16e258cb
2 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
3
4

View File

@ -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 \