]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[efi] Remove deleted directories from EDK2 header import script
authorMichael Brown <mcb30@ipxe.org>
Sat, 28 Jan 2023 15:24:54 +0000 (15:24 +0000)
committerMichael Brown <mcb30@ipxe.org>
Sat, 28 Jan 2023 17:22:25 +0000 (17:22 +0000)
The IntelFrameworkPkg and EdkCompatibilityPkg directories have been
removed from the EDK2 codebase.  Remove these directories from the
EDK2 header import script.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
src/include/ipxe/efi/import.pl

index ec986025d67d6829905c2825c949b59e7c82a087..cbc320514760b8cbdfb8b6eb3f82a10a249e9432 100755 (executable)
@@ -118,8 +118,7 @@ pod2usage ( 1 ) unless @ARGV == 1;
 my $edktop = shift;
 
 # Identify edk import directories
-my $edkdirs = [ "MdePkg/Include", "IntelFrameworkPkg/Include",
-               "MdeModulePkg/Include", "EdkCompatibilityPkg/Foundation" ];
+my $edkdirs = [ "MdePkg/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 );