summaryrefslogtreecommitdiffstats
path: root/meta-ti-bsp
diff options
context:
space:
mode:
authorRyan Eatmon <reatmon@ti.com>2024-06-20 10:32:08 -0500
committerRyan Eatmon <reatmon@ti.com>2024-06-20 10:32:08 -0500
commit1a2b4ab0096faa727b4f5c1282a99d78ba262c0c (patch)
tree2af98443bd7cdb2a953d077858e97b0f2e6dd1b3 /meta-ti-bsp
parentf3d8b7314167d6b3d7f682634e4af83f3cc5c4ed (diff)
downloadmeta-ti-HEAD.tar.gz
conf/machine, ti-bsp: Add support for next BSP providerHEADcicd.master.202406210100master-nextmasterHEAD
For our upstream testing flow we have the need to have a "next" BSP for configuring various settings based on building the latest kernel/uboot. Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Diffstat (limited to 'meta-ti-bsp')
-rw-r--r--meta-ti-bsp/conf/machine/include/ti-bsp.inc15
1 files changed, 14 insertions, 1 deletions
diff --git a/meta-ti-bsp/conf/machine/include/ti-bsp.inc b/meta-ti-bsp/conf/machine/include/ti-bsp.inc
index 953737a0..33611689 100644
--- a/meta-ti-bsp/conf/machine/include/ti-bsp.inc
+++ b/meta-ti-bsp/conf/machine/include/ti-bsp.inc
@@ -3,7 +3,7 @@
3# preferences for kernel, bootloader and graphics components, as 3# preferences for kernel, bootloader and graphics components, as
4# well as a dedicated machine override. 4# well as a dedicated machine override.
5 5
6# Supported options are: mainline, ti-6_6, ti-6_1, bb_org 6# Supported options are: mainline, next, ti-6_6, ti-6_1, bb_org
7TI_PREFERRED_BSP ??= "ti-6_6" 7TI_PREFERRED_BSP ??= "ti-6_6"
8 8
9# Use bsp-* namespace for overrides 9# Use bsp-* namespace for overrides
@@ -23,6 +23,19 @@ BSP_BOOTLOADER_VERSION:bsp-mainline = "%"
23MACHINE_FEATURES:remove:bsp-mainline = "gpu" 23MACHINE_FEATURES:remove:bsp-mainline = "gpu"
24 24
25# ========== 25# ==========
26# next
27# upcoming upstream/mainline kernel, u-boot
28# ==========
29BSP_KERNEL_PROVIDER:bsp-next = "linux-ti-next"
30BSP_KERNEL_VERSION:bsp-next = "%"
31BSP_BOOTLOADER_PROVIDER:bsp-next = "u-boot-ti-mainline"
32BSP_BOOTLOADER_VERSION:bsp-next = "%"
33
34# GPU support requires out-of-tree SGX and Rogue drivers not available
35# in next, usually present in TI staging or derivative like BB.org
36MACHINE_FEATURES:remove:bsp-next = "gpu"
37
38# ==========
26# ti-6_6 39# ti-6_6
27# TI staging kernel 6.6, u-boot 2024.04 40# TI staging kernel 6.6, u-boot 2024.04
28# ========== 41# ==========