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-24 12:50:06 -0600
commita46edd771af72adf2453b436419088eca2546094 (patch)
tree0e8daed119eff3a3415d63ebc5bb60cc2aea05ad /meta-ti-bsp/conf
parent54087fb0eaa9cd3086d07c21b30439fee7aa8410 (diff)
downloadmeta-ti-a46edd771af72adf2453b436419088eca2546094.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"