blob: 2c4c3d227aa57c8b4319bdf1a82890955c20eb67 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#!/usr/bin/env sh
set -e
lsblk
printf "Boot disk [sda]: " && read -r boot_disk
if [ -z "$boot_disk" ]; then
boot_disk='sda'
fi
printf "Boot partition number [1]: " && read -r boot_partition_number
if [ -z "$boot_partition_number" ]; then
boot_partition_number='1'
fi
printf "Root partition [sda2]: " && read -r root_partition
if [ -z "$root_partition" ]; then
root_partition='sda2'
fi
root_uuid=$(blkid /dev/"$root_partition" | cut -f 2 -d " ")
printf "Kernel name [linux]: " && read -r kernel_name
if [ -z "$kernel_name" ]; then
kernel_name='linux'
fi
printf "CPU vendor (intel/amd) [intel]: " && read -r cpu_vendor
if [ -z "$cpu_vendor" ]; then
cpu_vendor='intel'
fi
printf "ESP (boot/efi) [boot]: " && read -r esp
if [ -z "$esp" ]; then
esp='boot'
fi
printf "extra kernel parameters (e.g. mitigations=off): " && read -r extra_kernel_params
printf "label [archlinux]: " && read -r label
if [ -z "$label" ]; then
label='archlinux'
fi
rel_path=""
rel_path2=""
if [ "$esp" = "efi" ]; then
rel_path="\\EFI\\arch"
rel_path2="/EFI/arch"
fi
unicode_arg="cryptdevice=$root_uuid:root root=/dev/mapper/root rw initrd=$rel_path\\$cpu_vendor-ucode.img initrd=$rel_path\\initramfs-$kernel_name.img quiet $extra_kernel_params"
set -x
pacman -S --needed "$cpu_vendor"-ucode
pacman -S --asdeps --needed efibootmgr
efibootmgr --disk /dev/"$boot_disk" --part "$boot_partition_number" --create --label "$label" --loader "$rel_path2"/vmlinuz-"$kernel_name" --unicode "$unicode_arg"
|