This commit is contained in:
milisbir 2018-03-12 00:38:07 +02:00
parent a842ee0111
commit fa4431b8fd
2 changed files with 12 additions and 4 deletions

View File

@ -1,6 +1,9 @@
#! /bin/sh
mkdir -p /boot/grub
if [ -f /boot/grub/grub.cfg ];then
mv /boot/grub/grub.cfg /boot/grub/grub.cfg.eski
fi
[ ! -f /boot/grub/grub.cfg.new ] && cp /etc/default/grub/grub.cfg /boot/grub/grub.cfg.new
[ ! -d /boot/grub/i386-pc ] && cp -r /usr/lib/grub/i386-pc /boot/grub/
[ ! -f /boot/grub/unicode.pf2 ] && cp /usr/share/grub/unicode.pf2 /boot/grub/
grub-mkconfig -o /boot/grub/grub.cfg

View File

@ -11,9 +11,14 @@ fi
[ -f /usr/bin/dracut ] && dracut -N --force --xz --omit systemd --add-drivers "ahci" -f /boot/initramfs $surum-$sonek
[ -f /usr/bin/os-prober ] && os-prober
if [ -f /usr/bin/grub-mkconfig ];then
[ -f /boot/grub/grub.cfg ] && mv /boot/grub/grub.cfg /boot/grub/grub.cfg.eski
[ ! -f /boot/grub/grub.cfg.new ] && cp /etc/default/grub/grub.cfg /boot/grub/grub.cfg.new
grub-mkconfig -o /boot/grub/grub.cfg
mkdir -p /boot/grub
if [ -f /boot/grub/grub.cfg ];then
mv /boot/grub/grub.cfg /boot/grub/grub.cfg.eski
fi
[ ! -f /boot/grub/grub.cfg.new ] && cp /etc/default/grub/grub.cfg /boot/grub/grub.cfg.new
[ ! -d /boot/grub/i386-pc ] && cp -r /usr/lib/grub/i386-pc /boot/grub/
[ ! -f /boot/grub/unicode.pf2 ] && cp /usr/share/grub/unicode.pf2 /boot/grub/
grub-mkconfig -o /boot/grub/grub.cfg
cd -