diff options
author | Manuel Bessler <manuel.bessler@gmail.com> | 2020-01-14 13:48:34 -0500 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2020-01-14 23:03:37 -0300 |
commit | 7b49a35b976bc76ff9de66191ad09558639e000b (patch) | |
tree | 9c221e6e28508ea0c9f93a0fc73a6c693667cef1 /conf/machine | |
parent | 967a9715b36b7170c28ce9a40be979c3d4b5f221 (diff) | |
download | meta-freescale-7b49a35b976bc76ff9de66191ad09558639e000b.tar.gz |
imx-base: non-overriding append for WKS_FILE_DEPENDS
On mx8,
`WKS_FILE_DEPENDS_mx8 += "imx-boot"`
overrides the content of `WKS_FILE_DEPENDS` instead
of appending, causing `do_image_wic` to complain about
missing dependencies for `wic-tools`.
Diffstat (limited to 'conf/machine')
-rw-r--r-- | conf/machine/include/imx-base.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/machine/include/imx-base.inc b/conf/machine/include/imx-base.inc index 9d238af8..18473d29 100644 --- a/conf/machine/include/imx-base.inc +++ b/conf/machine/include/imx-base.inc | |||
@@ -325,7 +325,7 @@ WKS_FILE_DEPENDS ?= " \ | |||
325 | ${@bb.utils.contains('MACHINE_FEATURES', 'optee', '${OPTEE_WKS_FILE_DEPENDS}', '', d)} \ | 325 | ${@bb.utils.contains('MACHINE_FEATURES', 'optee', '${OPTEE_WKS_FILE_DEPENDS}', '', d)} \ |
326 | " | 326 | " |
327 | 327 | ||
328 | WKS_FILE_DEPENDS_mx8 += "imx-boot" | 328 | WKS_FILE_DEPENDS_append_mx8 = " imx-boot " |
329 | 329 | ||
330 | SOC_DEFAULT_WKS_FILE ?= "imx-uboot-bootpart.wks.in" | 330 | SOC_DEFAULT_WKS_FILE ?= "imx-uboot-bootpart.wks.in" |
331 | SOC_DEFAULT_WKS_FILE_mx8 ?= "imx-imx-boot-bootpart.wks.in" | 331 | SOC_DEFAULT_WKS_FILE_mx8 ?= "imx-imx-boot-bootpart.wks.in" |