summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Niebel <Markus.Niebel@ew.tq-group.com>2022-03-31 12:00:24 +0200
committerMarkus Niebel <Markus.Niebel@ew.tq-group.com>2022-03-31 12:00:24 +0200
commit14389dcee0f79495e688413881c5713a3abdfdc1 (patch)
tree65004ff8fbb268d88a1b9050944c677c00227bc2
parenta8c27bc00728f9602ab0458e71c4a1f3ef74838a (diff)
downloadmeta-freescale-14389dcee0f79495e688413881c5713a3abdfdc1.tar.gz
qoriq-base: weak defaults for u-boot/bootloader/kernel PREFERRED_PROVIDER
When using a kernel/bootloader fork maintained by board vendor and there are somer flavours ist would be good to have only weak assignments here. This enables to override the default by machine config and set final by distro or local.conf. Signed-off-by: Markus Niebel <Markus.Niebel@ew.tq-group.com>
-rw-r--r--conf/machine/include/qoriq-base.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/conf/machine/include/qoriq-base.inc b/conf/machine/include/qoriq-base.inc
index 0d8978e3..35b7d82e 100644
--- a/conf/machine/include/qoriq-base.inc
+++ b/conf/machine/include/qoriq-base.inc
@@ -1,7 +1,7 @@
1# common providers of QorIQ targets 1# common providers of QorIQ targets
2PREFERRED_PROVIDER_u-boot ?= "u-boot-qoriq" 2PREFERRED_PROVIDER_u-boot ??= "u-boot-qoriq"
3PREFERRED_PROVIDER_virtual/bootloader ?= "${PREFERRED_PROVIDER_u-boot}" 3PREFERRED_PROVIDER_virtual/bootloader ??= "${PREFERRED_PROVIDER_u-boot}"
4PREFERRED_PROVIDER_virtual/kernel ?= "linux-qoriq" 4PREFERRED_PROVIDER_virtual/kernel ??= "linux-qoriq"
5PREFERRED_PROVIDER_u-boot-tools-native ??= "u-boot-tools-native" 5PREFERRED_PROVIDER_u-boot-tools-native ??= "u-boot-tools-native"
6PREFERRED_PROVIDER_u-boot-mkimage-native ??= "u-boot-tools-native" 6PREFERRED_PROVIDER_u-boot-mkimage-native ??= "u-boot-tools-native"
7PREFERRED_PROVIDER_u-boot-mkimage ??= "u-boot-tools" 7PREFERRED_PROVIDER_u-boot-mkimage ??= "u-boot-tools"