diff options
author | Alvaro G. M <alvaro.gamez@hazent.com> | 2014-10-10 11:05:29 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-10-11 14:55:20 +0200 |
commit | b5bd127857a786c63d133de8991d6ba11bb19df2 (patch) | |
tree | 27b07993c55cceca1f5dc6302a5b9418ef48ef3c | |
parent | ae2c1f889883081e687e1b2cd59c08417232c0a8 (diff) | |
download | buildroot-b5bd127857a786c63d133de8991d6ba11bb19df2.tar.gz buildroot-b5bd127857a786c63d133de8991d6ba11bb19df2.zip |
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 <alvaro.gamez@hazent.com>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | boot/grub2/grub.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |