Преглед изворни кода

fs/iso9660: put the Buildroot boot entry first in Grub menu.lst

The ISO9660-specific Grub menu.lst contains two entries: one entry to
chainload the bootloader available in the first hard drive, and
another entry to boot the Buildroot system.

However, it defaults to booting the first entry, i.e chainloading
what's on the first hard drive. For a Buildroot generated system, this
is quite odd: we're not even booting the system built by Buildroot.

So, switch the two entries, and put the Buildroot boot entry first.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Thomas Petazzoni пре 11 година
родитељ
комит
b49c231cab
1 измењених фајлова са 4 додато и 4 уклоњено
  1. 4 4
      fs/iso9660/menu.lst

+ 4 - 4
fs/iso9660/menu.lst

@@ -2,10 +2,10 @@ default		0
 timeout		10
 timeout		10
 color cyan/blue white/blue
 color cyan/blue white/blue
 
 
+title		Buildroot ISO9660 image
+kernel		/kernel
+initrd		/initrd
+
 title		Hard Drive (first partition)
 title		Hard Drive (first partition)
 rootnoverify	(hd0)
 rootnoverify	(hd0)
 chainloader	+1
 chainloader	+1
-
-title		BuildRoot ISO9660 image
-kernel		/kernel
-initrd		/initrd