commit 151d642900284bd2ab7ac92921e4dff028a4e15e parent 65214ee217dadcbdd1f53b74c1d58a61b2a807d3 Author: awy <awy@awy.one> Date: Sat, 2 Nov 2024 10:38:40 +0300 fstab on default kernel fix Diffstat:
M | install.sh | | | 6 | +++++- |
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/install.sh b/install.sh @@ -117,7 +117,11 @@ esac UUID_ROOT=$(blkid -s UUID -o value /dev/$root_drive) UUID_BOOT=$(blkid -s UUID -o value /dev/$boot_drive) -echo "UUID=$UUID_BOOT /boot vfat defaults,noatime 0 2" > /mnt/etc/fstab +if [ "choosenKernel" -eq 3 ]; then + echo "UUID=$UUID_BOOT /boot vfat defaults,noatime 0 2" > /mnt/etc/fstab +else + echo "UUID=$UUID_BOOT /boot/efi vfat defaults,noatime 0 2" > /mnt/etc/fstab +fi echo "UUID=$UUID_ROOT / ext4 defaults,noatime 0 1" >> /mnt/etc/fstab _numBoot="${partition_array[0]}"