diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2021-08-13 13:34:42 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-13 13:34:42 -0300 |
commit | 7a928a20d1629fea8814a27442a1817c17296417 (patch) | |
tree | 7b18e1bf1401cb9ebd0ceb5f36767be935229d53 /recipes-extended/secure-obj/secure-obj_git.bb | |
parent | 72f59d35816cd2be6159013e4d96d03abf7f1c4b (diff) | |
parent | 229b84b66aa2eebd3947505a49f5711e5ea96466 (diff) | |
download | meta-freescale-7a928a20d1629fea8814a27442a1817c17296417.tar.gz |
Merge pull request #837 from YoeDistro/yoe/mut
Convert to new override syntax
Diffstat (limited to 'recipes-extended/secure-obj/secure-obj_git.bb')
-rw-r--r-- | recipes-extended/secure-obj/secure-obj_git.bb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/recipes-extended/secure-obj/secure-obj_git.bb b/recipes-extended/secure-obj/secure-obj_git.bb index 2d723738..1fd1fea3 100644 --- a/recipes-extended/secure-obj/secure-obj_git.bb +++ b/recipes-extended/secure-obj/secure-obj_git.bb | |||
@@ -4,15 +4,15 @@ LIC_FILES_CHKSUM = "file://README;md5=82b72e88f23cded9dd23f0fb1790b8d2" | |||
4 | 4 | ||
5 | S = "${WORKDIR}/git" | 5 | S = "${WORKDIR}/git" |
6 | 6 | ||
7 | RDEPENDS_{PN} += "secure-obj-module" | 7 | RDEPENDS:{PN} += "secure-obj-module" |
8 | 8 | ||
9 | WRAP_TARGET_PREFIX ?= "${TARGET_PREFIX}" | 9 | WRAP_TARGET_PREFIX ?= "${TARGET_PREFIX}" |
10 | export SECURE_STORAGE_PATH = "${S}/secure_storage_ta/ta/" | 10 | export SECURE_STORAGE_PATH = "${S}/secure_storage_ta/ta/" |
11 | export OPTEE_CLIENT_EXPORT = "${RECIPE_SYSROOT}/usr" | 11 | export OPTEE_CLIENT_EXPORT = "${RECIPE_SYSROOT}/usr" |
12 | export CROSS_COMPILE_HOST = "${CROSS_COMPILE}" | 12 | export CROSS_COMPILE_HOST = "${CROSS_COMPILE}" |
13 | export CROSS_COMPILE_TA = "${CROSS_COMPILE}" | 13 | export CROSS_COMPILE_TA = "${CROSS_COMPILE}" |
14 | ARCH_qoriq-arm64 = "aarch64" | 14 | ARCH:qoriq-arm64 = "aarch64" |
15 | ARCH_qoriq-arm = "arm" | 15 | ARCH:qoriq-arm = "arm" |
16 | 16 | ||
17 | do_compile() { | 17 | do_compile() { |
18 | unset LDFLAGS | 18 | unset LDFLAGS |
@@ -41,6 +41,6 @@ do_install() { | |||
41 | rm -rf ${D}${bindir}/test | 41 | rm -rf ${D}${bindir}/test |
42 | } | 42 | } |
43 | 43 | ||
44 | FILES_${PN} += "${base_libdir}/optee_armtz ${libdir}/${ARCH}-linux-gnu/openssl-1.0.0/engines" | 44 | FILES:${PN} += "${base_libdir}/optee_armtz ${libdir}/${ARCH}-linux-gnu/openssl-1.0.0/engines" |
45 | INSANE_SKIP_${PN} = "dev-deps ldflags" | 45 | INSANE_SKIP:${PN} = "dev-deps ldflags" |
46 | INSANE_SKIP_${PN}-dev = "ldflags dev-elf" | 46 | INSANE_SKIP:${PN}-dev = "ldflags dev-elf" |