Browse Source

scripts: hwm_v2: add full_name property for archs

Allow to specify a human readable full name for archs that can then be
leveraged e.g. in the documentation.

Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
pull/69594/merge
Benjamin Cabé 2 months ago committed by Benjamin Cabé
parent
commit
a89c79275f
  1. 10
      arch/archs.yml
  2. 4
      scripts/schemas/arch-schema.yml

10
arch/archs.yml

@ -1,21 +1,31 @@ @@ -1,21 +1,31 @@
archs:
- name: arc
path: arc
full_name: Synopsys DesignWare ARC
- name: arm
path: arm
full_name: ARM
- name: arm64
path: arm64
full_name: ARM 64
- name: mips
path: mips
full_name: MIPS
- name: posix
path: posix
full_name: POSIX
- name: riscv
path: riscv
full_name: RISC-V
- name: sparc
path: sparc
full_name: SPARC
- name: xtensa
path: xtensa
full_name: Xtensa
- name: x86
path: x86
full_name: x86
- name: rx
path: rx
full_name: Renesas RX

4
scripts/schemas/arch-schema.yml

@ -23,6 +23,10 @@ mapping: @@ -23,6 +23,10 @@ mapping:
required: true
type: str
desc: Location of the arch implementation relative to the archs.yml file.
full_name:
required: false
type: str
desc: Full display name of the architecture
comment:
required: false
type: str

Loading…
Cancel
Save