lfs-scripts/scripts/chapter10/10.4-grub.sh

19 lines
295 B
Bash
Raw Permalink Normal View History

2023-01-14 16:44:19 +00:00
#!/bin/bash
# Exit this line
# grub-install /dev/sda
cat > /boot/grub/grub.cfg << "EOF"
# Begin /boot/grub/grub.cfg
set default=0
set timeout=5
insmod ext2
set root=(hd0,2)
menuentry "GNU/Linux, Linux 5.19.2-lfs-11.2" {
linux /boot/vmlinuz-5.19.2-lfs-11.2 root=/dev/sda2 ro
}
EOF