소스 검색

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>
Alvaro G. M 10 년 전
부모
커밋
b5bd127857
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      boot/grub2/grub.cfg

+ 1 - 1
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
 }