diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2020-04-12 18:15:05 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2020-04-12 18:30:33 -0300 |
commit | eea6957b7cebeca0acfa49386c7d6b5413e9d873 (patch) | |
tree | 8cbfbfc5f010d8e6f19ac4335f57b9248875f767 | |
parent | dc8b1367b87ec2694197e1e7013f7e8391cb10b2 (diff) | |
download | meta-freescale-eea6957b7cebeca0acfa49386c7d6b5413e9d873.tar.gz |
imx-base.inc: The BSP override must be stronger then SoC family
The `use-mainline-bsp` must have higher priority over SoC one so it can
override settings when need.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r-- | conf/machine/include/imx-base.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/conf/machine/include/imx-base.inc b/conf/machine/include/imx-base.inc index 2ebf2d91..f0e39243 100644 --- a/conf/machine/include/imx-base.inc +++ b/conf/machine/include/imx-base.inc | |||
@@ -15,7 +15,8 @@ IMX_DEFAULT_BOOTLOADER_mx8 = "u-boot-imx" | |||
15 | # | 15 | # |
16 | # Two values are considered valid: mainline, nxp | 16 | # Two values are considered valid: mainline, nxp |
17 | IMX_DEFAULT_BSP ??= "mainline" | 17 | IMX_DEFAULT_BSP ??= "mainline" |
18 | MACHINEOVERRIDES =. "use-${IMX_DEFAULT_BSP}-bsp:" | 18 | MACHINEOVERRIDES .= ":use-${IMX_DEFAULT_BSP}-bsp" |
19 | |||
19 | 20 | ||
20 | PREFERRED_PROVIDER_u-boot ??= "${IMX_DEFAULT_BOOTLOADER}" | 21 | PREFERRED_PROVIDER_u-boot ??= "${IMX_DEFAULT_BOOTLOADER}" |
21 | PREFERRED_PROVIDER_u-boot-tools-native ??= "${IMX_DEFAULT_BOOTLOADER}-tools-native" | 22 | PREFERRED_PROVIDER_u-boot-tools-native ??= "${IMX_DEFAULT_BOOTLOADER}-tools-native" |