commit e8cee6d72022ab48bab210fce2cb68fc4808f73e parent c335d2ed857a80d22049c5cb3a884ff8013f60e6 Author: awy <awy@awy.one> Date: Wed, 30 Oct 2024 03:19:47 +0300 fix Diffstat:
M | install.sh | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/install.sh b/install.sh @@ -99,9 +99,9 @@ case $cpuVendorID in GenuineIntel) basestrap /mnt intel-ucode pacman -S iucode-tool - CPUFAM=$(printf '%02x\n' $(lscpu | grep -E 'CPU family:' | awk '{print $3}')) - MODEL=$(printf '%02x\n' $(lscpu | grep -E 'Model:' | awk '{print $2}')) - STEPPING=$(printf '%02x\n' $(lscpu | grep -E 'Stepping:' | awk '{print $2}')) + CPUFAM=$(printf '%02x\n' $(lscpu | grep -E '^CPU family:' | awk '{print $3}')) + MODEL=$(printf '%02x\n' $(lscpu | grep -E '^Model:' | awk '{print $2}')) + STEPPING=$(printf '%02x\n' $(lscpu | grep -E '^Stepping:' | awk '{print $2}')) MICROCODE_PATH="intel-ucode/$CPUFAM-$MODEL-$STEPPING" sed -i "s#CONFIG_EXTRA_FIRMWARE=.*#CONFIG_EXTRA_FIRMWARE=\"$MICROCODE_PATH\"#g" /mnt/usr/src/.config ;; AuthenticAMD)