edk2-basetools-tegra-native_35.3.1.bb: new recipe to

publish the python tools from edk2 source which is required
for generating uefi capsules.

Signed-off-by: Chad McQuillen <chad.mcquillen@lexmark.com>
This commit is contained in:
Chad McQuillen
2023-07-17 14:36:06 -04:00
committed by Matt Madison
parent 951374db24
commit ba71ce69ba

View File

@@ -0,0 +1,18 @@
# Install EDK2 Base Tools in native sysroot. Currently the BaseTools are not
# built, they are just copied to native sysroot. This is sufficient for
# generating UEFI capsules as it only depends on some python scripts. Other
# tools need to be built first before adding to sysroot.
SUMMARY = "EDK2 Base Tools"
LICENSE = "BSD-2-Clause-Patent"
require edk2-firmware-core-tegra-35.3.1.inc
inherit native
RDEPENDS:${PN} += "python3-core"
do_install () {
mkdir -p ${D}${bindir}/edk2-BaseTools
cp -r ${S}/BaseTools/* ${D}${bindir}/edk2-BaseTools/
}