From af5e74990cb1d5967bb9d51dde964010b0172e1f Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Thu, 7 Apr 2011 22:58:37 +0100 Subject: [PATCH] [efi] Include MdeModulePkg directory in header import list Signed-off-by: Michael Brown --- src/include/ipxe/efi/import.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/include/ipxe/efi/import.pl b/src/include/ipxe/efi/import.pl index 0dc5854d..2b5d3e93 100755 --- a/src/include/ipxe/efi/import.pl +++ b/src/include/ipxe/efi/import.pl @@ -112,7 +112,8 @@ pod2usage ( 1 ) unless @ARGV == 1; my $edktop = shift; # Identify edk import directories -my $edkdirs = [ "MdePkg/Include", "IntelFrameworkPkg/Include" ]; +my $edkdirs = [ "MdePkg/Include", "IntelFrameworkPkg/Include", + "MdeModulePkg/Include" ]; foreach my $edkdir ( @$edkdirs ) { die "Directory \"$edktop\" does not appear to contain the EFI EDK2 " ."(missing \"$edkdir\")\n" unless -d catdir ( $edktop, $edkdir );