mirror of
https://github.com/lingble/meta-tegra.git
synced 2025-10-28 19:12:39 +00:00
19 lines
562 B
BlitzBasic
19 lines
562 B
BlitzBasic
# 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-36.4.3.inc
|
|
|
|
inherit_defer native
|
|
|
|
RDEPENDS:${PN} += "python3-core"
|
|
|
|
do_install () {
|
|
mkdir -p ${D}${bindir}/edk2-BaseTools
|
|
cp -r ${S}/BaseTools/* ${D}${bindir}/edk2-BaseTools/
|
|
}
|