From: Alvaro G. M Date: Fri, 10 Oct 2014 09:05:29 +0000 (+0200) Subject: grub2: modify kernel location to /boot/zImage X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b5bd127857a786c63d133de8991d6ba11bb19df2;p=buildroot.git 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 --- 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 }