diff options
| author | Michael Brown | 2014-07-16 15:15:40 +0200 |
|---|---|---|
| committer | Michael Brown | 2014-07-16 15:53:03 +0200 |
| commit | eb55c6871a23e61aaa10095c98eb3abc59b8e902 (patch) | |
| tree | c4781a914ca30a030d7d23e561f567f780f6be21 /src/include/ipxe/efi/import.pl | |
| parent | [efi] Print well-known GUIDs by name in debug messages (diff) | |
| download | ipxe-eb55c6871a23e61aaa10095c98eb3abc59b8e902.tar.gz ipxe-eb55c6871a23e61aaa10095c98eb3abc59b8e902.tar.xz ipxe-eb55c6871a23e61aaa10095c98eb3abc59b8e902.zip | |
[efi] Include EFI_CONSOLE_CONTROL_PROTOCOL header
The EFI_CONSOLE_CONTROL_PROTOCOL does not exist in the current UEFI
specification, but is required to enable text output on some older EFI
1.10 implementations (observed on an old iMac).
The header is not present in any of the standard include directories,
but can still be found in the EDK2 codebase as part of
EdkCompatibilityPkg.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/efi/import.pl')
| -rwxr-xr-x | src/include/ipxe/efi/import.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/ipxe/efi/import.pl b/src/include/ipxe/efi/import.pl index 995514681..62ee750b2 100755 --- a/src/include/ipxe/efi/import.pl +++ b/src/include/ipxe/efi/import.pl @@ -120,7 +120,7 @@ my $edktop = shift; # Identify edk import directories my $edkdirs = [ "MdePkg/Include", "IntelFrameworkPkg/Include", - "MdeModulePkg/Include" ]; + "MdeModulePkg/Include", "EdkCompatibilityPkg/Foundation" ]; foreach my $edkdir ( @$edkdirs ) { die "Directory \"$edktop\" does not appear to contain the EFI EDK2 " ."(missing \"$edkdir\")\n" unless -d catdir ( $edktop, $edkdir ); |
