diff options
| author | Tom Rini <trini@konsulko.com> | 2018-06-22 08:14:49 -0400 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2018-06-22 08:14:49 -0400 |
| commit | d4e5aff8361e2242f4175b98a7ddf370fc2fec39 (patch) | |
| tree | 0640c5bfb9c019cb718849c433dc6d16bdb574f1 /lib | |
| parent | dc7df68f21093039b3ab1a1702f5b7cd3e621431 (diff) | |
| parent | 6fc2c704d40255e418857b60e86cf8d76fbcda4b (diff) | |
Merge tag 'signed-efi-2018.07' of git://github.com/agraf/u-boot
Patch queue for efi - 2018-06-21
A single urgent fix to make sure green and red are not swapped
in OSs that make use of EFI GOP frame buffers to display pictures
(such as efifb in Linux).
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/efi_loader/efi_gop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_gop.c b/lib/efi_loader/efi_gop.c index 1afe8418e1..3a36bbcbfa 100644 --- a/lib/efi_loader/efi_gop.c +++ b/lib/efi_loader/efi_gop.c @@ -472,7 +472,7 @@ efi_status_t efi_gop_register(void) gopobj->info.version = 0; gopobj->info.width = col; gopobj->info.height = row; - gopobj->info.pixel_format = EFI_GOT_RGBA8; + gopobj->info.pixel_format = EFI_GOT_BGRA8; gopobj->info.pixels_per_scanline = col; gopobj->bpix = bpix; |
