1
0

Something.

This commit is contained in:
cronyakatsuki 2022-10-19 19:08:31 +02:00
parent e642488f4a
commit 66a1bf84d1

View File

@ -83,13 +83,13 @@ if [[ ! -z ${swappartition+x} ]]; then
fi
echo "Installing basic system packages"
echo "Do you have an intel or amd cpu? [intel/amd]"
echo "Do you have an intel or amd cpu, or none? [intel/amd/none]: "
read intelamd
if [ $intelamd = "intel" ]; then
pacstrap /mnt base linux-firmware linux-lts btrfs-progs intel-ucode
elif [ $intelamd = "amd" ]; then
pacstrap /mnt base linux-firmware linux-lts btrfs-progs amd-ucode
else
elif [ $intelamd = "none" ]; then
pacstrap /mnt base linux-firmware linux-lts btrfs-progs
fi