Module: meta-ti Branch: krogoth Commit: 6ec5e0dab202accc4b313bbf7923c220ff62b43e URL: http://arago-project.org/git/meta-ti.git?a=commit;h=6ec5e0dab202accc4b313bbf7923c220ff62b43e
Author: Denys Dmytriyenko <[email protected]> Date: Tue Aug 16 08:05:13 2016 +0000 machines: move TI_SECURE_DEV_PKG and add UBOOT_* vars for fitimage support Signed-off-by: Denys Dmytriyenko <[email protected]> --- conf/machine/am437x-hs-evm.conf | 7 +++++++ conf/machine/am57xx-hs-evm.conf | 7 +++++++ conf/machine/dra7xx-hs-evm.conf | 7 +++++++ recipes-bsp/u-boot/u-boot-ti-staging_2016.05.bb | 3 --- 4 files changed, 21 insertions(+), 3 deletions(-) diff --git a/conf/machine/am437x-hs-evm.conf b/conf/machine/am437x-hs-evm.conf index e8d88a4..4fb277d 100644 --- a/conf/machine/am437x-hs-evm.conf +++ b/conf/machine/am437x-hs-evm.conf @@ -5,3 +5,10 @@ require conf/machine/am437x-evm.conf UBOOT_MACHINE = "am43xx_hs_evm_config" + +UBOOT_ENTRYPOINT = "0x82000000" +UBOOT_LOADADDRESS = "0x82000000" +UBOOT_RD_LOADADDRESS = "0x84000000" +UBOOT_RD_ENTRYPOINT = "0x84000000" + +TI_SECURE_DEV_PKG = "${TI_SECURE_DEV_PKG_AM4}" diff --git a/conf/machine/am57xx-hs-evm.conf b/conf/machine/am57xx-hs-evm.conf index a375017..bd5a145 100644 --- a/conf/machine/am57xx-hs-evm.conf +++ b/conf/machine/am57xx-hs-evm.conf @@ -5,3 +5,10 @@ require conf/machine/am57xx-evm.conf UBOOT_MACHINE = "am57xx_hs_evm_config" + +UBOOT_ENTRYPOINT = "0x82000000" +UBOOT_LOADADDRESS = "0x82000000" +UBOOT_RD_LOADADDRESS = "0x84000000" +UBOOT_RD_ENTRYPOINT = "0x84000000" + +TI_SECURE_DEV_PKG = "${TI_SECURE_DEV_PKG_DRA7}" diff --git a/conf/machine/dra7xx-hs-evm.conf b/conf/machine/dra7xx-hs-evm.conf index a898716..537152b 100644 --- a/conf/machine/dra7xx-hs-evm.conf +++ b/conf/machine/dra7xx-hs-evm.conf @@ -5,3 +5,10 @@ require conf/machine/dra7xx-evm.conf UBOOT_MACHINE = "dra7xx_hs_evm_config" + +UBOOT_ENTRYPOINT = "0x82000000" +UBOOT_LOADADDRESS = "0x82000000" +UBOOT_RD_LOADADDRESS = "0x84000000" +UBOOT_RD_ENTRYPOINT = "0x84000000" + +TI_SECURE_DEV_PKG = "${TI_SECURE_DEV_PKG_DRA7}" 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 699c221..c5a374a 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 @@ -18,9 +18,6 @@ SRCREV = "052f3bfd39e212e43fd141a49331107409e4f993" # Support for secure devices - detailed info is in doc/README.ti-secure TI_SECURE_DEV_PKG ?= "" -TI_SECURE_DEV_PKG_dra7xx-hs-evm = "${TI_SECURE_DEV_PKG_DRA7}" -TI_SECURE_DEV_PKG_am57xx-hs-evm = "${TI_SECURE_DEV_PKG_DRA7}" -TI_SECURE_DEV_PKG_am437x-hs-evm = "${TI_SECURE_DEV_PKG_AM4}" export TI_SECURE_DEV_PKG SPL_BINARY = "MLO" -- _______________________________________________ meta-ti mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-ti
