blob: c310d4f5e0c9b70285ec3b424be6d3683178ab5b (
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 # --removable
grub-mkconfig -o /boot/grub/grub.cfg
|