grub2: modify kernel location to /boot/zImage
authorAlvaro G. M <alvaro.gamez@hazent.com>
Fri, 10 Oct 2014 09:05:29 +0000 (11:05 +0200)
committerPeter Korsgaard <peter@korsgaard.com>
Sat, 11 Oct 2014 12:55:20 +0000 (14:55 +0200)
This is the location where buildroot install the image if requested,
so this should be the default search path for the bootloader.

Signed-off-by: Alvaro G. M <alvaro.gamez@hazent.com>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
boot/grub2/grub.cfg

index 9ea5281a4236a462ca4a1ec573121f6ca799142e..c8abbd3447b1291648d05bd0621d49b1f7754f43 100644 (file)
@@ -2,5 +2,5 @@ set default="0"
 set timeout="5"
 
 menuentry "Buildroot" {
-       linux /bzImage root=/dev/sda1 console=tty1
+       linux /boot/bzImage root=/dev/sda1 console=tty1
 }