artix

desc
git clone https://git.awy.one/artix.git
Log | Files | Refs | README | LICENSE

commit 66c6cbe10792b8cc1e327ee938f6bfbd37a25ef6
parent e4013b0dc75b79611e6ae65140a33974f2c9fe96
Author: awy <awy@awy.one>
Date:   Wed, 30 Oct 2024 02:35:37 +0300

fix

Diffstat:
Minstall.sh | 11++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/install.sh b/install.sh @@ -50,7 +50,7 @@ binKernel(){ customKernel(){ mount /dev/$boot_drive /mnt/boot pacman -Sy --confirm - basestrap /mnt base dinit seatd-dinit udev intel-ucode + basestrap /mnt base dinit seatd-dinit udev cp .config /mnt/usr/src } @@ -95,6 +95,15 @@ case $choosenKernel in 3) customKernel ;; esac +case $cpuVendorID in + GenuineIntel) + basestrap /mnt intel-ucode ;; + AuthenticAMD) + basestrap /mnt amd-ucode ;; + *) + printf ${red}"Unsupported CPU Vendor. Possibly there is error in detection script.${normal}\n" && exit 1 ;; +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