blob: f6f6917cb3831abf61198e2c04397e5d3f7866ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
bye () {
echo "run me as root!"
exit 1
}
[ $(id -g) -ne 0 ] && bye
mount /boot
pacman --noconfirm -S linux
grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=GRUB
grub-mkconfig -o /boot/grub/grub.cfg
|