blob: 73063cffaad8d00b3d379dfe4f572685edde82dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/env 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 # --removable
grub-mkconfig -o /boot/grub/grub.cfg
|