diff options
-rwxr-xr-x | meta-agl-bsp/meta-ti/recipes-bsp/u-boot/files/uEnv.txt | 1 | ||||
-rw-r--r-- | meta-agl-bsp/meta-ti/recipes-bsp/u-boot/u-boot-ti-staging_%.bbappend | 17 |
2 files changed, 15 insertions, 3 deletions
diff --git a/meta-agl-bsp/meta-ti/recipes-bsp/u-boot/files/uEnv.txt b/meta-agl-bsp/meta-ti/recipes-bsp/u-boot/files/uEnv.txt new file mode 100755 index 000000000..6ea1abb25 --- /dev/null +++ b/meta-agl-bsp/meta-ti/recipes-bsp/u-boot/files/uEnv.txt @@ -0,0 +1 @@ +fdtfile=dra7-evm-lcd-lg.dtb diff --git a/meta-agl-bsp/meta-ti/recipes-bsp/u-boot/u-boot-ti-staging_%.bbappend b/meta-agl-bsp/meta-ti/recipes-bsp/u-boot/u-boot-ti-staging_%.bbappend index 629667805..77b84f990 100644 --- a/meta-agl-bsp/meta-ti/recipes-bsp/u-boot/u-boot-ti-staging_%.bbappend +++ b/meta-agl-bsp/meta-ti/recipes-bsp/u-boot/u-boot-ti-staging_%.bbappend @@ -1,9 +1,20 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/files:" +SRCREV = "${AUTOREV}" +BRANCH = "p-ti-u-boot-2016.05" + +SRC_URI = "git://git.omapzoom.org/repo/u-boot.git;protocol=git;branch=${BRANCH}" # This applies to the JACINTO 6 vayu board ... essentially it is dra7_evm. SRC_URI_vayu += "file://fix_builderror_gcc5.patch" +SRC_URI += " file://${UBOOT_ENV_BINARY}" -BRANCH = "p-ti-u-boot-2016.05" -SRC_URI = "git://git.omapzoom.org/repo/u-boot.git;protocol=git;branch=${BRANCH}" -SRCREV = "${AUTOREV}" +UBOOT_ENV = "uEnv" + +do_deploy_append () { + if [ "x${UBOOT_ENV}" != "x" ] + then + install ${WORKDIR}/${UBOOT_ENV_BINARY} ${DEPLOYDIR}/${UBOOT_ENV_IMAGE} + ln -sf ${UBOOT_ENV_IMAGE} ${DEPLOYDIR}/${UBOOT_ENV_SYMLINK} + fi +} |