summaryrefslogtreecommitdiffstats
path: root/meta-ti-bsp/conf/machine/include/am62xx.inc
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@konsulko.com>2022-05-05 17:44:20 +0000
committerRyan Eatmon <reatmon@ti.com>2022-05-05 14:22:22 -0500
commitfa2639b3a6a1cbff78a9eba16e1aee6ac9d06df7 (patch)
treef3de8911eba646819dfcc6f1821780ac568820dc /meta-ti-bsp/conf/machine/include/am62xx.inc
parent50c81f868c6c7046ca203f2d7cc5f2d4053b4fdc (diff)
downloadmeta-ti-fa2639b3a6a1cbff78a9eba16e1aee6ac9d06df7.tar.gz
conf/machine: make default PREFERRED_PROVIDERs easy to override
Use weak assignment for default PREFERRED_PROVIDER values to allow user to easily overwrite them from local.conf. Signed-off-by: Denys Dmytriyenko <denys@konsulko.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Diffstat (limited to 'meta-ti-bsp/conf/machine/include/am62xx.inc')
-rw-r--r--meta-ti-bsp/conf/machine/include/am62xx.inc10
1 files changed, 5 insertions, 5 deletions
diff --git a/meta-ti-bsp/conf/machine/include/am62xx.inc b/meta-ti-bsp/conf/machine/include/am62xx.inc
index ce768895..bcf435f5 100644
--- a/meta-ti-bsp/conf/machine/include/am62xx.inc
+++ b/meta-ti-bsp/conf/machine/include/am62xx.inc
@@ -6,11 +6,11 @@ MACHINE_FEATURES += "screen touchscreen gpu"
6SERIAL_CONSOLES = "115200;ttyS2" 6SERIAL_CONSOLES = "115200;ttyS2"
7SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}" 7SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}"
8 8
9PREFERRED_PROVIDER_virtual/egl = "ti-img-rogue-umlibs" 9PREFERRED_PROVIDER_virtual/egl ?= "ti-img-rogue-umlibs"
10PREFERRED_PROVIDER_virtual/libgles1 = "ti-img-rogue-umlibs" 10PREFERRED_PROVIDER_virtual/libgles1 ?= "ti-img-rogue-umlibs"
11PREFERRED_PROVIDER_virtual/libgles2 = "ti-img-rogue-umlibs" 11PREFERRED_PROVIDER_virtual/libgles2 ?= "ti-img-rogue-umlibs"
12PREFERRED_PROVIDER_virtual/libgbm = "ti-img-rogue-umlibs" 12PREFERRED_PROVIDER_virtual/libgbm ?= "ti-img-rogue-umlibs"
13PREFERRED_PROVIDER_virtual/gpudriver = "ti-img-rogue-driver" 13PREFERRED_PROVIDER_virtual/gpudriver ?= "ti-img-rogue-driver"
14 14
15# AM62 supports multi-certificate images, use the same 15# AM62 supports multi-certificate images, use the same
16IMAGE_BOOT_FILES = "${IMAGE_BOOT_FILES_MULTI_CERT}" 16IMAGE_BOOT_FILES = "${IMAGE_BOOT_FILES_MULTI_CERT}"