diff options
author | Mark Hatle <mark.hatle@xilinx.com> | 2021-12-20 09:02:38 -0800 |
---|---|---|
committer | Mark Hatle <mark.hatle@xilinx.com> | 2022-01-14 11:23:13 -0800 |
commit | ee019dc46fde00a2f7eeba9a98a01d7b93203e08 (patch) | |
tree | c9908c42bd57df9f568a56736de844ca09323228 | |
parent | 3d23cd2ec09f9950fc36ebf6797cd82968d61568 (diff) | |
download | meta-xilinx-ee019dc46fde00a2f7eeba9a98a01d7b93203e08.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 6c560ac1..243a2cfd 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 | |||
@@ -466,7 +466,7 @@ cortex_r5_baremetal() { | |||
466 | cat <<EOF >"${conf_file}" | 466 | cat <<EOF >"${conf_file}" |
467 | CONFIG_DTFILE = "\${TOPDIR}/conf/dtb/${dtb_file}" | 467 | CONFIG_DTFILE = "\${TOPDIR}/conf/dtb/${dtb_file}" |
468 | ESW_MACHINE = "cortexr5-${machine}" | 468 | ESW_MACHINE = "cortexr5-${machine}" |
469 | DEFAULTTUNE = "cortexr5f" | 469 | DEFAULTTUNE = "cortexr5" |
470 | 470 | ||
471 | TMPDIR = "\${BASE_TMPDIR}/tmp-${dtb_file%%.dtb}" | 471 | TMPDIR = "\${BASE_TMPDIR}/tmp-${dtb_file%%.dtb}" |
472 | 472 | ||
@@ -518,7 +518,7 @@ cortex_r5_freertos() { | |||
518 | cat <<EOF >"${conf_file}" | 518 | cat <<EOF >"${conf_file}" |
519 | CONFIG_DTFILE = "\${TOPDIR}/conf/dtb/${dtb_file}" | 519 | CONFIG_DTFILE = "\${TOPDIR}/conf/dtb/${dtb_file}" |
520 | ESW_MACHINE = "cortexr5-${machine}" | 520 | ESW_MACHINE = "cortexr5-${machine}" |
521 | DEFAULTTUNE = "cortexr5f" | 521 | DEFAULTTUNE = "cortexr5" |
522 | 522 | ||
523 | TMPDIR = "\${BASE_TMPDIR}/tmp-${dtb_file%%.dtb}" | 523 | TMPDIR = "\${BASE_TMPDIR}/tmp-${dtb_file%%.dtb}" |
524 | 524 | ||
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 |