diff options
author | Mark Hatle <mark.hatle@xilinx.com> | 2021-12-20 09:02:38 -0800 |
---|---|---|
committer | Mark Hatle <mark.hatle@xilinx.com> | 2021-12-20 10:28:42 -0800 |
commit | 890b91fa31a819e804feb6b8bef37c16b6fba75f (patch) | |
tree | 6eea81201d899ddf83e67f9074ea8d725dcfaec4 | |
parent | 6a1c662f40c11fcd26bafb53aaf190c0791d8ce2 (diff) | |
download | meta-xilinx-890b91fa31a819e804feb6b8bef37c16b6fba75f.tar.gz |
meta-xilinx-standalone: Move from cortexr5f to cortexr5
After moving from Xilinx specific cortex r5 turning file, the 5f is no
longer defined. Move to the now standard 'cortexr5' definition.
Signed-off-by: Mark Hatle <mark.hatle@xilinx.com>
4 files changed, 5 insertions, 5 deletions
diff --git a/meta-xilinx-standalone-experimental/classes/esw.bbclass b/meta-xilinx-standalone-experimental/classes/esw.bbclass index 5de88bc8..df1c28a4 100644 --- a/meta-xilinx-standalone-experimental/classes/esw.bbclass +++ b/meta-xilinx-standalone-experimental/classes/esw.bbclass | |||
@@ -53,7 +53,7 @@ def get_xlnx_cmake_processor(tune, machine, d): | |||
53 | cmake_processor = 'plm_microblaze' | 53 | cmake_processor = 'plm_microblaze' |
54 | else: | 54 | else: |
55 | cmake_processor = 'microblaze' | 55 | cmake_processor = 'microblaze' |
56 | elif (tune in [ 'cortexr5', 'cortexr5f' ]): | 56 | elif tune == 'cortexr5': |
57 | cmake_processor = 'cortexr5' | 57 | cmake_processor = 'cortexr5' |
58 | elif tune.startswith('cortexa9'): | 58 | elif tune.startswith('cortexa9'): |
59 | cmake_processor = 'cortexa9' | 59 | cmake_processor = 'cortexa9' |
diff --git a/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh b/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh index d47ebe52..96054979 100755 --- a/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh +++ b/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh | |||
@@ -477,7 +477,7 @@ cortex_r5_baremetal() { | |||
477 | cat <<EOF >"${conf_file}" | 477 | cat <<EOF >"${conf_file}" |
478 | CONFIG_DTFILE = "\${TOPDIR}/conf/dtb/${dtb_file}" | 478 | CONFIG_DTFILE = "\${TOPDIR}/conf/dtb/${dtb_file}" |
479 | ESW_MACHINE = "cortexr5-${machine}" | 479 | ESW_MACHINE = "cortexr5-${machine}" |
480 | DEFAULTTUNE = "cortexr5f" | 480 | DEFAULTTUNE = "cortexr5" |
481 | 481 | ||
482 | TMPDIR = "\${BASE_TMPDIR}/tmp-${dtb_file%%.dtb}" | 482 | TMPDIR = "\${BASE_TMPDIR}/tmp-${dtb_file%%.dtb}" |
483 | 483 | ||
@@ -529,7 +529,7 @@ cortex_r5_freertos() { | |||
529 | cat <<EOF >"${conf_file}" | 529 | cat <<EOF >"${conf_file}" |
530 | CONFIG_DTFILE = "\${TOPDIR}/conf/dtb/${dtb_file}" | 530 | CONFIG_DTFILE = "\${TOPDIR}/conf/dtb/${dtb_file}" |
531 | ESW_MACHINE = "cortexr5-${machine}" | 531 | ESW_MACHINE = "cortexr5-${machine}" |
532 | DEFAULTTUNE = "cortexr5f" | 532 | DEFAULTTUNE = "cortexr5" |
533 | 533 | ||
534 | TMPDIR = "\${BASE_TMPDIR}/tmp-${dtb_file%%.dtb}" | 534 | TMPDIR = "\${BASE_TMPDIR}/tmp-${dtb_file%%.dtb}" |
535 | 535 | ||
diff --git a/meta-xilinx-standalone/conf/machine/cortexr5-versal.conf b/meta-xilinx-standalone/conf/machine/cortexr5-versal.conf index fa58dc00..193070bc 100644 --- a/meta-xilinx-standalone/conf/machine/cortexr5-versal.conf +++ b/meta-xilinx-standalone/conf/machine/cortexr5-versal.conf | |||
@@ -1,3 +1,3 @@ | |||
1 | DEFAULTTUNE ?= "cortexr5f" | 1 | DEFAULTTUNE ?= "cortexr5" |
2 | 2 | ||
3 | require conf/machine/include/soc-versal.inc | 3 | require conf/machine/include/soc-versal.inc |
diff --git a/meta-xilinx-standalone/conf/machine/cortexr5-zynqmp.conf b/meta-xilinx-standalone/conf/machine/cortexr5-zynqmp.conf index 817150f8..1cbdfc7c 100644 --- a/meta-xilinx-standalone/conf/machine/cortexr5-zynqmp.conf +++ b/meta-xilinx-standalone/conf/machine/cortexr5-zynqmp.conf | |||
@@ -1,3 +1,3 @@ | |||
1 | DEFAULTTUNE ?= "cortexr5f" | 1 | DEFAULTTUNE ?= "cortexr5" |
2 | 2 | ||
3 | require conf/machine/include/soc-zynqmp.inc | 3 | require conf/machine/include/soc-zynqmp.inc |