6 lines
159 B
Bash
6 lines
159 B
Bash
|
#/bin/sh
|
||
|
#TODO source config
|
||
|
grub-install
|
||
|
[ "$arch_boot_verbose" = 'true' ] && sed -i '6s/ quiet//' /etc/default/grub
|
||
|
grub-mkconfig -o /boot/grub/grub.cfg
|