diff options
author | Ronan Le Martret <ronan.lemartret@iot.bzh> | 2018-06-19 15:03:19 +0200 |
---|---|---|
committer | Ronan Le Martret <ronan.lemartret@iot.bzh> | 2018-06-26 10:09:12 +0200 |
commit | cc0c3d8b03e0fac419631fcaf2e0d8ae4d56b2a8 (patch) | |
tree | 60ffa1f4ea3314c1b250ee8cf326babbea9cdf23 /meta-rcar-gen3/recipes-bsp/optee/optee-client_git.bb | |
parent | 97f2485f19aa93033d04574154cb0b8e1ed5e23a (diff) |
[COMMUNITY] Update optee-client versionflounder_5.99.1flounder/5.99.15.99.1
* Fix optee-client build. We need to update optee-client
due to a newer version of GCC.
* using :
EXTRA_OEMAKE = "... CFLAGS='${CFLAGS}'"
will fix the FORTIFY build issue:
```
...
# warning _FORTIFY_SOURCE requires compiling with optimization (-O)
...
```
but will replace CFLAGS from file flags.mk
Change-Id: Ia3cfd16ec3e3c8b82bf8b364b04f164aa66009eb
Signed-off-by: Ronan Le Martret <ronan.lemartret@iot.bzh>
Diffstat (limited to 'meta-rcar-gen3/recipes-bsp/optee/optee-client_git.bb')
-rw-r--r-- | meta-rcar-gen3/recipes-bsp/optee/optee-client_git.bb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/meta-rcar-gen3/recipes-bsp/optee/optee-client_git.bb b/meta-rcar-gen3/recipes-bsp/optee/optee-client_git.bb index 4075532..3ed3239 100644 --- a/meta-rcar-gen3/recipes-bsp/optee/optee-client_git.bb +++ b/meta-rcar-gen3/recipes-bsp/optee/optee-client_git.bb @@ -6,10 +6,9 @@ PR = "r0" PV = "2.6.0+renesas+git${SRCPV}" BRANCH = "master" SRC_URI = "git://github.com/OP-TEE/optee_client.git;branch=${BRANCH}" -SRCREV = "73b4e490a8ed0b4a7714818e80998b9d8a7da958" +SRCREV = "2d542f2074223fde918e68efa4a9ff37f927e604" SRC_URI += " \ - file://0001-Add-LDFLAGS-option.patch \ file://optee.service \ " @@ -22,7 +21,7 @@ PACKAGE_ARCH = "${MACHINE_ARCH}" S = "${WORKDIR}/git" -EXTRA_OEMAKE = "RPMB_EMU=0" +EXTRA_OEMAKE = "RPMB_EMU=0 CFLAGS='${CFLAGS}'" do_install () { # Create destination directories |