Merge pull request #435 from Googulator/grub

Fix typo in make_bootable.sh causing failure to reboot
This commit is contained in:
fosslinux 2024-02-07 22:11:47 +00:00 committed by GitHub
commit 61cb7edf91
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ set timeout=5
set default=0
menuentry 'Linux live-bootstrap (4.9.10)' {
insmod part_msdos
set root='grub-probe -d /dev/${DISK} -t bios_hints | sed -e 's/ //g')'
set root='$(grub-probe -d /dev/${DISK} -t bios_hints | sed -e 's/ //g')'
linux /boot/linux-4.9.10 root=/dev/${DISK} rw $(cat /proc/cmdline)
}
EOF