summaryrefslogtreecommitdiffstats
path: root/meta-ti-bsp/conf
diff options
context:
space:
mode:
authorAndrew Davis <afd@ti.com>2023-01-03 13:00:11 -0600
committerRyan Eatmon <reatmon@ti.com>2023-01-20 15:54:26 -0600
commitea99bb3a10a6ec098ddbbfec21ab67d0a4925929 (patch)
tree1c1ef52c100abcd6841d181b768dc8f62f076040 /meta-ti-bsp/conf
parent2a5a0339d5bd28d6f6aedaf02a6aaa9b73a248e4 (diff)
downloadmeta-ti-ea99bb3a10a6ec098ddbbfec21ab67d0a4925929.tar.gz
meta-ti-bsp: Add am57xx.inc allowing use of SoC name over full EVM name
In many spots we have to use the full EVM name for each EVM using the AM57x SoC leading to missed features on some EVMs. Add the am57xx name so we can generically add for AM57x. Signed-off-by: Andrew Davis <afd@ti.com> Reviewed-by: Denys Dmytriyenko <denys@konsulko.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Diffstat (limited to 'meta-ti-bsp/conf')
-rw-r--r--meta-ti-bsp/conf/machine/am57xx-evm.conf2
-rw-r--r--meta-ti-bsp/conf/machine/beagle-x15.conf2
-rw-r--r--meta-ti-bsp/conf/machine/include/am57xx.inc5
3 files changed, 7 insertions, 2 deletions
diff --git a/meta-ti-bsp/conf/machine/am57xx-evm.conf b/meta-ti-bsp/conf/machine/am57xx-evm.conf
index ca635f43..b3525a0b 100644
--- a/meta-ti-bsp/conf/machine/am57xx-evm.conf
+++ b/meta-ti-bsp/conf/machine/am57xx-evm.conf
@@ -2,7 +2,7 @@
2#@NAME: AM57xx EVM 2#@NAME: AM57xx EVM
3#@DESCRIPTION: Machine configuration for the TI AM57xx EVM 3#@DESCRIPTION: Machine configuration for the TI AM57xx EVM
4 4
5require conf/machine/include/dra7xx.inc 5require conf/machine/include/am57xx.inc
6 6
7MACHINE_FEATURES += "touchscreen" 7MACHINE_FEATURES += "touchscreen"
8 8
diff --git a/meta-ti-bsp/conf/machine/beagle-x15.conf b/meta-ti-bsp/conf/machine/beagle-x15.conf
index c7503266..b4279ae4 100644
--- a/meta-ti-bsp/conf/machine/beagle-x15.conf
+++ b/meta-ti-bsp/conf/machine/beagle-x15.conf
@@ -2,7 +2,7 @@
2#@NAME: BeagleBoard X15 2#@NAME: BeagleBoard X15
3#@DESCRIPTION: Machine configuration for the BeagleBoard X15 3#@DESCRIPTION: Machine configuration for the BeagleBoard X15
4 4
5require conf/machine/include/dra7xx.inc 5require conf/machine/include/am57xx.inc
6 6
7KERNEL_DEVICETREE = "am57xx-beagle-x15.dtb am57xx-beagle-x15-revb1.dtb am57xx-beagle-x15-revc.dtb" 7KERNEL_DEVICETREE = "am57xx-beagle-x15.dtb am57xx-beagle-x15-revb1.dtb am57xx-beagle-x15-revc.dtb"
8 8
diff --git a/meta-ti-bsp/conf/machine/include/am57xx.inc b/meta-ti-bsp/conf/machine/include/am57xx.inc
new file mode 100644
index 00000000..6c52883b
--- /dev/null
+++ b/meta-ti-bsp/conf/machine/include/am57xx.inc
@@ -0,0 +1,5 @@
1require conf/machine/include/omap-a15.inc
2SOC_FAMILY:append = ":dra7xx"
3SOC_FAMILY:append = ":am57xx"
4
5MACHINE_FEATURES += "pci"