]> Git Repo - buildroot-mgba.git/blame - arch/Config.in.xtensa
MIPS: add mips32r5 generic architecture variant
[buildroot-mgba.git] / arch / Config.in.xtensa
CommitLineData
d8792a04
CZ
1choice
2 prompt "Target Architecture Variant"
3 depends on BR2_xtensa
4 default BR2_xtensa_fsf
fdd5bc94 5config BR2_XTENSA_CUSTOM
29563047 6 select BR2_ARCH_HAS_MMU_OPTIONAL
d8792a04
CZ
7 bool "Custom Xtensa processor configuration"
8config BR2_xtensa_fsf
29563047 9 select BR2_ARCH_HAS_MMU_MANDATORY
d8792a04
CZ
10 bool "fsf - Default configuration"
11endchoice
12
fdd5bc94
CZ
13config BR2_XTENSA_CUSTOM_NAME
14 string "Custom Xtensa processor configuration name"
15 depends on BR2_XTENSA_CUSTOM
d8792a04
CZ
16 default ""
17 help
18 Name given to a custom Xtensa processor configuration.
19
fdd5bc94 20config BR2_XTENSA_CORE_NAME
d8792a04 21 string
fdd5bc94 22 default BR2_XTENSA_CUSTOM_NAME if BR2_XTENSA_CUSTOM
d8792a04
CZ
23 default "" if BR2_xtensa_fsf
24
fdd5bc94 25config BR2_XTENSA_OVERLAY_DIR
d8792a04 26 string "Overlay directory for custom configuration"
fdd5bc94 27 depends on BR2_XTENSA_CUSTOM
d8792a04
CZ
28 default ""
29 help
fdd5bc94
CZ
30 Provide the directory path that contains the overlay file
31 for a custom processor configuration. The path is relative
32 to the top directory of buildroot.
33 These overlay files are tar packages with updated configuration
34 files for various toolchain packages and Xtensa processor
35 configurations. They are provided by the processor vendor or
36 directly from Tensilica.
d8792a04 37
083ec2df
MF
38choice
39 prompt "Target Architecture Endianness"
40 depends on BR2_XTENSA_CUSTOM
41 default BR2_XTENSA_LITTLE_ENDIAN
42
43config BR2_XTENSA_LITTLE_ENDIAN
44 bool "Little endian"
45
46config BR2_XTENSA_BIG_ENDIAN
47 bool "Big endian"
48
49endchoice
50
51config BR2_ENDIAN
52 default "LITTLE" if BR2_XTENSA_LITTLE_ENDIAN
53 default "BIG" if BR2_xtensa_fsf || BR2_XTENSA_BIG_ENDIAN
54
75720db3
CZ
55config BR2_ARCH
56 default "xtensa" if BR2_xtensa
This page took 0.331902 seconds and 4 git commands to generate.