mirror of
https://github.com/linux-sunxi/meta-sunxi.git
synced 2024-11-08 14:28:22 +01:00
6b536f1083
Bump u-boot version. Notes: - pylibfdt fix is not needed anymore - add bison and flex as depenedencies - update license info Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
42 lines
1.2 KiB
BlitzBasic
42 lines
1.2 KiB
BlitzBasic
DESCRIPTION="Upstream's U-boot configured for sunxi devices"
|
|
|
|
require recipes-bsp/u-boot/u-boot.inc
|
|
|
|
DEPENDS += " bc-native dtc-native swig-native python3-native flex-native bison-native "
|
|
DEPENDS_append_sun50i = " atf-sunxi "
|
|
|
|
LICENSE = "GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://Licenses/README;md5=30503fd321432fc713238f582193b78e"
|
|
|
|
COMPATIBLE_MACHINE = "(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 = "git://git.denx.de/u-boot.git;branch=master \
|
|
file://0001-nanopi_neo_air_defconfig-Enable-eMMC-support.patch \
|
|
file://boot.cmd \
|
|
"
|
|
|
|
SRCREV = "f88b6facb87dc4a52f1630eb9d858c0f54c6628e"
|
|
|
|
PV = "v2018.09+git${SRCPV}"
|
|
PE = "2"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
UBOOT_ENV_SUFFIX = "scr"
|
|
UBOOT_ENV = "boot"
|
|
|
|
EXTRA_OEMAKE += ' HOSTLDSHARED="${BUILD_CC} -shared ${BUILD_LDFLAGS} ${BUILD_CFLAGS}" '
|
|
EXTRA_OEMAKE_append_sun50i = " BL31=${DEPLOY_DIR_IMAGE}/bl31.bin "
|
|
|
|
do_compile_sun50i[depends] += "atf-sunxi:do_deploy"
|
|
|
|
do_compile_append() {
|
|
${B}/tools/mkimage -C none -A arm -T script -d ${WORKDIR}/boot.cmd ${WORKDIR}/${UBOOT_ENV_BINARY}
|
|
}
|