From b5bd127857a786c63d133de8991d6ba11bb19df2 Mon Sep 17 00:00:00 2001 From: "Alvaro G. M" Date: Fri, 10 Oct 2014 11:05:29 +0200 Subject: [PATCH] grub2: modify kernel location to /boot/zImage 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 Acked-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- boot/grub2/grub.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot/grub2/grub.cfg b/boot/grub2/grub.cfg index 9ea5281a42..c8abbd3447 100644 --- a/boot/grub2/grub.cfg +++ b/boot/grub2/grub.cfg @@ -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 }