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 13:57:59 +0200
commitf0fa173ce114b7e492eb3b23fa45209622471017 (patch)
tree84fd2cd0b01f1066a3fa3ed605b00a22c9d94d35
parent48d3512f9eeab2df4c06e3a2d48a6b447c1893cb (diff)
downloadmeta-freescale-f0fa173ce114b7e492eb3b23fa45209622471017.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> (cherry picked from commit 14389dcee0f79495e688413881c5713a3abdfdc1)
-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 0a42160f..16142bd8 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"