Skip to content

Commit f334afc

Browse files
committed
16395 loader.efi: update UEFI headers and clean up duplicated GUIDs
Reviewed by: Jason King <[email protected]> Approved by: Patrick Mooney <[email protected]>
1 parent ef008a5 commit f334afc

File tree

231 files changed

+78918
-8689
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

231 files changed

+78918
-8689
lines changed

exception_lists/cstyle

+12
Original file line numberDiff line numberDiff line change
@@ -1260,3 +1260,15 @@ usr/src/uts/intel/io/vmm/amd/ivrs_*.c
12601260
usr/src/uts/intel/sys/vmm.h
12611261
usr/src/uts/intel/sys/vmm_dev.h
12621262
usr/src/lib/lib9p/common/*
1263+
1264+
# loader UEFI headers
1265+
usr/src/boot/efi/include/Base.h
1266+
usr/src/boot/efi/include/amd64/*.h
1267+
usr/src/boot/efi/include/arm/*.h
1268+
usr/src/boot/efi/include/arm64/*.h
1269+
usr/src/boot/efi/include/i386/*.h
1270+
usr/src/boot/efi/include/Guid/*.h
1271+
usr/src/boot/efi/include/IndustryStandard/*.h
1272+
usr/src/boot/efi/include/Pi/*.h
1273+
usr/src/boot/efi/include/Protocol/*.h
1274+
usr/src/boot/efi/include/Uefi/*.h

exception_lists/hdrchk

+11
Original file line numberDiff line numberDiff line change
@@ -439,3 +439,14 @@ usr/src/uts/intel/io/vmm/x86.h
439439
usr/src/uts/intel/sys/vmm.h
440440
usr/src/uts/intel/sys/vmm_dev.h
441441
usr/src/lib/lib9p/common/*
442+
443+
# loader UEFI headers
444+
usr/src/boot/efi/include/amd64/*.h
445+
usr/src/boot/efi/include/arm/*.h
446+
usr/src/boot/efi/include/arm64/*.h
447+
usr/src/boot/efi/include/i386/*.h
448+
usr/src/boot/efi/include/Guid/*.h
449+
usr/src/boot/efi/include/IndustryStandard/*.h
450+
usr/src/boot/efi/include/Pi/*.h
451+
usr/src/boot/efi/include/Protocol/*.h
452+
usr/src/boot/efi/include/Uefi/*.h

usr/src/boot/Makefile.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ LOADER_VERSION = 1.1
3434
# Use date like formatting here, YYYY.MM.DD.XX, without leading zeroes.
3535
# The version is processed from left to right, the version number can only
3636
# be increased.
37-
BOOT_VERSION = $(LOADER_VERSION)-2024.03.03.1
37+
BOOT_VERSION = $(LOADER_VERSION)-2024.03.12.1

usr/src/boot/common/gfx_fb.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676
#if defined(EFI)
7777
#include <efi.h>
7878
#include <efilib.h>
79+
#include <Protocol/GraphicsOutput.h>
7980
#else
8081
#include <btxv86.h>
8182
#include <vbe.h>
@@ -865,7 +866,7 @@ gfxfb_blt(void *BltBuffer, GFXFB_BLT_OPERATION BltOperation,
865866
#if defined(EFI)
866867
EFI_STATUS status;
867868
EFI_TPL tpl;
868-
extern EFI_GRAPHICS_OUTPUT *gop;
869+
extern EFI_GRAPHICS_OUTPUT_PROTOCOL *gop;
869870

870871
/*
871872
* We assume Blt() does work, if not, we will need to build

0 commit comments

Comments
 (0)