From: Thomas Petazzoni Date: Mon, 11 Nov 2013 16:47:30 +0000 (+0100) Subject: grub: sample menu.lst file improvements X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=97362f571cd877274cfd9bef30c6a4b99723135c;p=buildroot.git grub: sample menu.lst file improvements Two improvements to the menu.lst file: * Do not enforce any video mode, let the kernel use whatever it wants as the default, or let the user customize it when needed. * Use /dev/sda1 instead of /dev/hda1. Nowadays, most hard disk controllers are handled using libata, and therefore the disks are visible as /dev/sd. Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- diff --git a/boot/grub/menu.lst b/boot/grub/menu.lst index d76bf63233..41e9b62b00 100644 --- a/boot/grub/menu.lst +++ b/boot/grub/menu.lst @@ -4,4 +4,4 @@ splashimage=(hd0,0)/boot/grub/splash.xpm.gz hiddenmenu title Buildroot root (hd0,0) - kernel /boot/bzImage rw root=/dev/hda1 vga=791 + kernel /boot/bzImage rw root=/dev/sda1