diff options
| author | Alexander Graf <[email protected]> | 2016-03-15 18:38:21 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2016-03-27 09:12:12 -0400 |
| commit | be8d324191f3cd2f4861629ccf69106d58aaa70f (patch) | |
| tree | 440530288dbfb18f9bdd4d7b1294e37a7a00112e /lib/efi_loader/Makefile | |
| parent | 705c506e4faa7c22b492a1c560f7de86fcbcc913 (diff) | |
efi_loader: Add GOP support
The EFI standard defines a simple boot protocol that an EFI payload can use
to access video output.
This patch adds support to expose exactly that one (and the mode already in
use) as possible graphical configuration to an EFI payload.
With this, I can successfully run grub2 with graphical output.
Signed-off-by: Alexander Graf <[email protected]>
Diffstat (limited to 'lib/efi_loader/Makefile')
| -rw-r--r-- | lib/efi_loader/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/efi_loader/Makefile b/lib/efi_loader/Makefile index 28725a27c78..83e31f6d1f6 100644 --- a/lib/efi_loader/Makefile +++ b/lib/efi_loader/Makefile @@ -9,4 +9,5 @@ obj-y += efi_image_loader.o efi_boottime.o efi_runtime.o efi_console.o obj-y += efi_memory.o +obj-$(CONFIG_LCD) += efi_gop.o obj-$(CONFIG_PARTITIONS) += efi_disk.o |
