From 2193b719ba56ebc78dd947eaf3b44ac93bfc566b Mon Sep 17 00:00:00 2001 From: Ward from fusion-voyager-3 Date: Thu, 19 Dec 2024 17:16:07 +0300 Subject: [PATCH] Latest Changes --- build.sh | 6 +++--- info.sh | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index 5ea89bb..c2ce9bc 100755 --- a/build.sh +++ b/build.sh @@ -70,8 +70,8 @@ EFI_BOOT_IMAGE="$LIVE_BOOT_PATH/efiboot.img" # Create needed ISO Params in refind sed -i "s#THE_NAME_OF_CURRENT_ISO_FOR_VENTOY#$ISO_IMAGE".iso"#g" ./data/refind/refind_linux.conf sed -i "s#THE_NAME_OF_CURRENT_ISO_FOR_VENTOY#$ISO_IMAGE".iso"#g" ./data/refind/EFI/boot/refind.conf -sed -i "s#THE_LABEL_OF_CURRENT_ID#$ISO_IMAGE#g" ./data/refind/refind_linux.conf -sed -i "s#THE_LABEL_OF_CURRENT_ID#$ISO_IMAGE#g" ./data/refind/EFI/boot/refind.conf +sed -i "s#THE_LABEL_OF_CURRENT_ID#$ISO_LABEL#g" ./data/refind/refind_linux.conf +sed -i "s#THE_LABEL_OF_CURRENT_ID#$ISO_LABEL#g" ./data/refind/EFI/boot/refind.conf # Create Refind Boot Image dd if=/dev/zero of="$EFI_BOOT_IMAGE" bs=1M count=$EFI_BOOT_IMAGE_SIZE @@ -95,7 +95,7 @@ mkdir -p ./output xorriso \ -as mkisofs \ -iso-level 3 \ - -V "$ISO_IMAGE" \ + -V "$ISO_LABEL" \ -partition_offset 16 \ -appended_part_as_gpt \ -no-pad \ diff --git a/info.sh b/info.sh index 7592a49..58ef482 100755 --- a/info.sh +++ b/info.sh @@ -11,5 +11,6 @@ export ISO_ARCH="#ARCH#" export ISO_RELEASE="4.0" export ISO_DESKTOP="Hyprland" export ISO_PATCH="2" +export ISO_LABEL="Pika GN $(date '+%y.%m.%d') $ISO_PATCH" export ISO_IMAGE="$ISO_DISTNAME-$ISO_DESKTOP-$ISO_RELEASE-$ISO_ARCH-$(date '+%y.%m.%d')-$ISO_PATCH" export LIVE_BOOT_VOLUME_NAME="$ISO_DISTNAME-$ISO_DESKTOP-$ISO_RELEASE-$ISO_ARCH-$ISO_PATCH"