artix

posix artix installation script
git clone https://git.awy.one/artix.git
Log | Files | Refs | README | LICENSE

commit 22ab518e9d1b1ab3bdf5927049e98d5ba0a7988a
parent b8b395249902370ad432e83183911e58fcc00504
Author: awy <awy@tutamail.com>
Date:   Wed,  7 Aug 2024 21:53:58 +0300

small fixes

Diffstat:
Minstall.sh | 3+++
Mpost_chroot.sh | 2+-
2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/install.sh b/install.sh @@ -56,6 +56,9 @@ else exit 1 fi +_numBoot="${partition_array[0]}" +export _numBoot + export disk_drive export root_drive export boot_drive diff --git a/post_chroot.sh b/post_chroot.sh @@ -46,7 +46,7 @@ elif [ "$_kernelflag" -eq 2 ]; then mkdir -p /boot/EFI/BOOT cp arch/x86/boot/bzImage /boot/EFI/BOOT/BOOTX64.EFI _diskdrivewop="${diskdrive%p}" - efibootmgr -c -d /dev/$_diskdrivewop -p ${partition_array[0]} -L "linux" -l '\EFI\BOOT\BOOTX64.EFI' + efibootmgr -c -d /dev/$_diskdrivewop -p $_numBoot -L "linux" -l '\EFI\BOOT\BOOTX64.EFI' else printf ${LIGHTRED}"Wrong kernelflag value.${NoColor}\n" exit 1