diff options
author | 2016-07-09 05:42:33 +0000 | |
---|---|---|
committer | 2016-07-10 15:40:59 -0400 | |
commit | 6b81203cf37d7e6778989bb0c3744f0d26f24ff8 (patch) | |
tree | d56b18642ecd0c6e557764c9944c8e6db48a3a15 | |
parent | a94384585b8eedcc01cb26de2a85ab2bbbd34dca (diff) | |
download | meta-ti-6b81203cf37d7e6778989bb0c3744f0d26f24ff8.tar.gz meta-ti-6b81203cf37d7e6778989bb0c3744f0d26f24ff8.tar.bz2 meta-ti-6b81203cf37d7e6778989bb0c3744f0d26f24ff8.zip |
u-boot-ti-staging: add HS_X-LOADER images, update to ti2016.02-rc4 tag
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
-rw-r--r-- | recipes-bsp/u-boot/u-boot-ti-staging_2016.05.bb | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/recipes-bsp/u-boot/u-boot-ti-staging_2016.05.bb b/recipes-bsp/u-boot/u-boot-ti-staging_2016.05.bb index 53510c6f..f6377de4 100644 --- a/recipes-bsp/u-boot/u-boot-ti-staging_2016.05.bb +++ b/recipes-bsp/u-boot/u-boot-ti-staging_2016.05.bb @@ -7,14 +7,14 @@ DESCRIPTION = "u-boot bootloader for TI devices" LIC_FILES_CHKSUM = "file://Licenses/README;md5=a2c678cfd4a4d97135585cad908541c6" -PR = "r9" +PR = "r10" PV_append = "+git${SRCPV}" SRC_URI = "git://git.ti.com/ti-u-boot/ti-u-boot.git;protocol=git;branch=${BRANCH}" BRANCH ?= "ti-u-boot-2016.05" -SRCREV = "b43cf45fec75961d196da4563bd32c0215d2fd58" +SRCREV = "a4560200fc597109328a6454094fa77516434880" # Support for secure devices - detailed info is in doc/README.ti-secure TI_SECURE_DEV_PKG ?= "" @@ -43,6 +43,11 @@ UBOOT_SPI_SYMLINK = "u-boot-${MACHINE}.img" UBOOT_SPI_GPH_IMAGE = "u-boot-spi-${MACHINE}-${PV}-${PR}.gph" UBOOT_SPI_GPH_SYMLINK = "u-boot-spi-${MACHINE}.gph" +# HS XLD +UBOOT_HS_XLD_BINARY = "u-boot-spl_HS_X-LOADER" +UBOOT_HS_XLD_IMAGE = "u-boot-spl_HS_X-LOADER-${MACHINE}-${PV}-${PR}" +UBOOT_HS_XLD_SYMLINK = "u-boot-spl_HS_X-LOADER-${MACHINE}" + do_compile_append_am437x-hs-evm () { if [ -f ${S}/u-boot-spl_HS_ISSW ]; then rm -rf ${S}/MLO @@ -50,6 +55,22 @@ do_compile_append_am437x-hs-evm () { fi } +do_install_append () { + if [ -f ${S}/${UBOOT_HS_XLD_BINARY} ]; then + install ${S}/${UBOOT_HS_XLD_BINARY} ${D}/boot/${UBOOT_HS_XLD_IMAGE} + ln -sf ${UBOOT_HS_XLD_IMAGE} ${D}/boot/${UBOOT_HS_XLD_BINARY} + fi +} + +do_deploy_append () { + if [ -f ${S}/${UBOOT_HS_XLD_BINARY} ]; then + install ${S}/${UBOOT_HS_XLD_BINARY} ${DEPLOYDIR}/${UBOOT_HS_XLD_IMAGE} + rm -f ${UBOOT_HS_XLD_BINARY} ${UBOOT_HS_XLD_SYMLINK} + ln -sf ${UBOOT_HS_XLD_IMAGE} ${UBOOT_HS_XLD_SYMLINK} + ln -sf ${UBOOT_HS_XLD_IMAGE} ${UBOOT_HS_XLD_BINARY} + fi +} + do_install_append_keystone () { install ${S}/spl/${UBOOT_SPI_SPL_BINARY} ${D}/boot/${UBOOT_SPI_SPL_IMAGE} ln -sf ${UBOOT_SPI_SPL_IMAGE} ${D}/boot/${UBOOT_SPI_SPL_BINARY} |