diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2022-07-23 13:27:52 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2022-07-29 13:23:06 -0300 |
commit | 896b5adc3fb85bd2817174d7aa2a07b64409f422 (patch) | |
tree | 7b1a2f52097cbf3b825890a63494f03d5bd631ae | |
parent | 63d73925950aa35ec1378696c0f5dcfd2fef9e83 (diff) | |
download | meta-freescale-896b5adc3fb85bd2817174d7aa2a07b64409f422.tar.gz |
imx-atf: avoid default dependencies addition
We can use `INHIBIT_DEFAULT_DEPS` to avoid extra dependencies
declaration and instead we can explicitly add the
`virtual/${HOST_PREFIX}gcc` requirement.
This is equivalent to previous code but in a easier to undertand
implementation.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r-- | recipes-bsp/imx-atf/imx-atf_2.6.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes-bsp/imx-atf/imx-atf_2.6.bb b/recipes-bsp/imx-atf/imx-atf_2.6.bb index d491361b..9047fd09 100644 --- a/recipes-bsp/imx-atf/imx-atf_2.6.bb +++ b/recipes-bsp/imx-atf/imx-atf_2.6.bb | |||
@@ -32,7 +32,8 @@ AS[unexport] = "1" | |||
32 | LD[unexport] = "1" | 32 | LD[unexport] = "1" |
33 | 33 | ||
34 | # Baremetal, just need a compiler | 34 | # Baremetal, just need a compiler |
35 | DEPENDS:remove = "virtual/${TARGET_PREFIX}compilerlibs virtual/libc" | 35 | INHIBIT_DEFAULT_DEPS = "1" |
36 | DEPENDS = "virtual/${HOST_PREFIX}gcc" | ||
36 | 37 | ||
37 | BUILD_OPTEE = "${@bb.utils.contains('MACHINE_FEATURES', 'optee', 'true', 'false', d)}" | 38 | BUILD_OPTEE = "${@bb.utils.contains('MACHINE_FEATURES', 'optee', 'true', 'false', d)}" |
38 | 39 | ||