1
0
mirror of https://github.com/tommytran732/Arch-Setup-Script synced 2024-11-09 20:21:34 -05:00

Adding option for kernel flavors

Not everyone wants to use the vanilla kernel, so why not give them a choice :)
This commit is contained in:
TommyTran732 2021-04-09 16:53:33 -04:00 committed by tommytran732
parent 4aa3efd44e
commit de0c27fae4
No known key found for this signature in database
GPG Key ID: 060B29EB996BD9F2

View File

@ -6,6 +6,36 @@ clear
# Exit on STDERR.
set -e
kernel_options() {
echo "Which kernel flavor would you want?"
echo "[1] Stable — Vanilla Linux kernel and modules, with a few patches applied."
echo "[2] Hardened — A security-focused Linux kernel applying a set of hardening patches to mitigate kernel and userspace exploits. It also enables more upstream kernel hardening features than Stable."
echo "[3] Longterm — Long-term support (LTS) Linux kernel and modules."
echo "[4] Zen Kernel — Result of a collaborative effort of kernel hackers to provide the best Linux kernel possible for everyday systems. Some more details can be found on https://liquorix.net (which provides kernel binaries based on Zen for Debian)."
output ""
read choice
case $choice in
1 ) KERNEL=linux
output "You have selected to install the vanilla Linux kernel."
output ""
;;
2 ) KERNEL=linux-hardened
output "You have selected to install the hardened kernel."
output ""
;;
3 ) KERNEL=linux-lts
output "You have selected to install the long term kernel."
output ""
;;
4 ) KERNEL=linux-zen
output "You have selected to install the Zen kernel."
output ""
;;
* ) output "You did not enter a valid selection."
theme_options
esac
}
# Selecting the target for the installation.
PS3="Select the disk where Arch Linux is going to be installed: "
select ENTRY in $(lsblk -dpnoNAME|grep -P "/dev/sd|nvme");
@ -78,7 +108,7 @@ mount $ESP /mnt/boot
# Pacstrap (setting up a base sytem onto the new root).
echo "Installing the base system (it may take a while)."
pacstrap /mnt base linux linux-firmware btrfs-progs grub grub-btrfs efibootmgr snapper sudo neovim networkmanager &>/dev/null
pacstrap /mnt base ${KERNEL} linux-firmware btrfs-progs grub grub-btrfs efibootmgr snapper sudo neovim networkmanager &>/dev/null
# Generating /etc/fstab.
echo "Generating a new fstab."