mirror of
https://github.com/linux-sunxi/meta-sunxi.git
synced 2024-11-08 14:28:22 +01:00
7ab8fb6211
Instead of using and maintaining a unique recipe for trusted-firmware-a (formerly known as ARM trusted firmware, or ATF), use the recipe located in meta-arm. It is well maintained and in use in multiple other layers. Tested with pine64-plus Signed-off-by: Jon Mason <jdmason@kudzu.us>
31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
FILESEXTRAPATHS:prepend:sunxi := "${THISDIR}/files:"
|
|
|
|
DEPENDS:append:sunxi = " bc-native dtc-native swig-native python3-native flex-native bison-native "
|
|
DEPENDS:append:sun50i = " trusted-firmware-a"
|
|
|
|
COMPATIBLE_MACHINE:sunxi = "(sun4i|sun5i|sun7i|sun8i|sun50i)"
|
|
|
|
DEFAULT_PREFERENCE:sun4i = "1"
|
|
DEFAULT_PREFERENCE:sun5i = "1"
|
|
DEFAULT_PREFERENCE:sun7i = "1"
|
|
DEFAULT_PREFERENCE:sun8i = "1"
|
|
DEFAULT_PREFERENCE:sun50i = "1"
|
|
|
|
SRC_URI:append:sunxi = " \
|
|
file://0001-nanopi_neo_air_defconfig-Enable-eMMC-support.patch \
|
|
file://0002-Added-nanopi-r1-board-support.patch \
|
|
file://boot.cmd \
|
|
"
|
|
|
|
UBOOT_ENV_SUFFIX:sunxi = "scr"
|
|
UBOOT_ENV:sunxi = "boot"
|
|
|
|
EXTRA_OEMAKE:append:sunxi = ' HOSTLDSHARED="${BUILD_CC} -shared ${BUILD_LDFLAGS} ${BUILD_CFLAGS}" '
|
|
EXTRA_OEMAKE:append:sun50i = " BL31=${DEPLOY_DIR_IMAGE}/bl31.bin SCP=/dev/null"
|
|
|
|
do_compile:sun50i[depends] += "trusted-firmware-a:do_deploy"
|
|
|
|
do_compile:append:sunxi() {
|
|
${B}/tools/mkimage -C none -A arm -T script -d ${WORKDIR}/boot.cmd ${WORKDIR}/${UBOOT_ENV_BINARY}
|
|
}
|