summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-bsp/conf
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@xilinx.com>2021-12-18 10:20:35 -0800
committerMark Hatle <mark.hatle@xilinx.com>2022-01-14 11:23:13 -0800
commit3d23cd2ec09f9950fc36ebf6797cd82968d61568 (patch)
tree9222bf0cd6d92dd43b58283e3d6ab4a171666e8b /meta-xilinx-bsp/conf
parent84305bdaf64651f5c5f2fd46a807da7d30f9f52c (diff)
downloadmeta-xilinx-3d23cd2ec09f9950fc36ebf6797cd82968d61568.tar.gz
Remove cortexrm tune, as Yocto Project now has cortex-r tunes
armrm override is now replaced by armv7r and armv8r overrides. Adjust recipes to match the new usage. Signed-off-by: Mark Hatle <mark.hatle@xilinx.com>
Diffstat (limited to 'meta-xilinx-bsp/conf')
-rw-r--r--meta-xilinx-bsp/conf/machine/include/soc-tune-include.inc3
-rw-r--r--meta-xilinx-bsp/conf/machine/include/tune-cortexrm.inc21
2 files changed, 1 insertions, 23 deletions
diff --git a/meta-xilinx-bsp/conf/machine/include/soc-tune-include.inc b/meta-xilinx-bsp/conf/machine/include/soc-tune-include.inc
index 66ab6158..810ad9e9 100644
--- a/meta-xilinx-bsp/conf/machine/include/soc-tune-include.inc
+++ b/meta-xilinx-bsp/conf/machine/include/soc-tune-include.inc
@@ -1,7 +1,6 @@
1# Unfortunately various tunefiles don't include each other, so create 1# Unfortunately various tunefiles don't include each other, so create
2# a list of things to require based on the DEFAULTTUNE setting. 2# a list of things to require based on the DEFAULTTUNE setting.
3TUNEFILE[cortexr5] = "conf/machine/include/tune-cortexrm.inc" 3TUNEFILE[cortexr5] = "conf/machine/include/arm/armv7r/tune-cortexr5.inc"
4TUNEFILE[cortexr5f] = "conf/machine/include/tune-cortexrm.inc"
5TUNEFILE[cortexa9thf-neon] = "conf/machine/include/arm/armv7a/tune-cortexa9.inc" 4TUNEFILE[cortexa9thf-neon] = "conf/machine/include/arm/armv7a/tune-cortexa9.inc"
6TUNEFILE[cortexa53] = "conf/machine/include/arm/armv8a/tune-cortexa53.inc" 5TUNEFILE[cortexa53] = "conf/machine/include/arm/armv8a/tune-cortexa53.inc"
7TUNEFILE[cortexa72] = "conf/machine/include/arm/armv8a/tune-cortexa72.inc" 6TUNEFILE[cortexa72] = "conf/machine/include/arm/armv8a/tune-cortexa72.inc"
diff --git a/meta-xilinx-bsp/conf/machine/include/tune-cortexrm.inc b/meta-xilinx-bsp/conf/machine/include/tune-cortexrm.inc
deleted file mode 100644
index e415209b..00000000
--- a/meta-xilinx-bsp/conf/machine/include/tune-cortexrm.inc
+++ /dev/null
@@ -1,21 +0,0 @@
1DEFAULTTUNE ?= "cortexr5"
2
3require conf/machine/include/arm/arch-armv8a.inc
4
5TUNEVALID[armrm] = "Enable ARM Cortex-R/M Family"
6MACHINEOVERRIDES =. "${@bb.utils.contains('TUNE_FEATURES', 'armrm', 'armrm:', '' ,d)}"
7
8TUNEVALID[cortexr5] = "Enable Cortex-r5 specific processor optimizations"
9TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'cortexr5', ' -mcpu=cortex-r5', '', d)}"
10
11AVAILTUNES += "cortexr5"
12ARMPKGARCH:tune-cortexr5 = "cortexr5"
13
14TUNE_FEATURES:tune-cortexr5 = "armrm cortexr5"
15PACKAGE_EXTRA_ARCHS:tune-cortexr5 = "${TUNE_PKGARCH}"
16
17AVAILTUNES += "cortexr5f"
18ARMPKGARCH:tune-cortexr5f = "cortexr5f"
19
20TUNE_FEATURES:tune-cortexr5f = "armrm cortexr5 vfpv3d16 callconvention-hard"
21PACKAGE_EXTRA_ARCHS:tune-cortexr5f = "${TUNE_PKGARCH}"