diff options
author | Darren Hart <dvhart@linux.intel.com> | 2011-12-15 22:12:29 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-12-16 16:05:35 +0000 |
commit | 9619f26c92a060735bb3d9b69b8cc26707c1fcda (patch) | |
tree | f42e53bbc3e1658fa4c7a42dfe3ffebad21b9558 | |
parent | 4ea37a8f6b0d671f11f7ec430e40f3111c50e5d6 (diff) | |
download | poky-9619f26c92a060735bb3d9b69b8cc26707c1fcda.tar.gz |
grub-efi: Add efi_gop module to payload for physical console support
Without the efi_gop module, the GRUB menu would work, but the Linux
kernel messages would not be displayed to the physical console. Adding
efi_gop causes grub to pass the proper information in the boot parameters
pointer such that the Linux kernel can detect and use the EFI framebuffer.
(From OE-Core rev: 2c2770f89b3331f635647ba1ef87d8f63cfcdfe2)
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-bsp/grub/grub-efi-native_1.99.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-bsp/grub/grub-efi-native_1.99.bb b/meta/recipes-bsp/grub/grub-efi-native_1.99.bb index 40e618c599..c86cf50082 100644 --- a/meta/recipes-bsp/grub/grub-efi-native_1.99.bb +++ b/meta/recipes-bsp/grub/grub-efi-native_1.99.bb | |||
@@ -60,7 +60,7 @@ EXTRA_OECONF = "--with-platform=efi --disable-grub-mkfont \ | |||
60 | do_mkimage() { | 60 | do_mkimage() { |
61 | ./grub-mkimage -p / -d ./grub-core/ \ | 61 | ./grub-mkimage -p / -d ./grub-core/ \ |
62 | -O ${GRUB_TARGET}-efi -o ./${GRUB_IMAGE} \ | 62 | -O ${GRUB_TARGET}-efi -o ./${GRUB_IMAGE} \ |
63 | boot linux fat serial part_msdos normal | 63 | boot linux fat serial part_msdos normal efi_gop |
64 | } | 64 | } |
65 | addtask mkimage after do_compile before do_install | 65 | addtask mkimage after do_compile before do_install |
66 | 66 | ||