blob: cbadb4cf5669a0c18d1ad7c006257df05f81188e [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001#
2# For a description of the syntax of this configuration file,
3# see extra/config/Kconfig-language.txt
4#
5
6config TARGET_ARCH
7 string
8 default "avr32"
9
10config FORCE_OPTIONS_FOR_ARCH
11 bool
12 default y
13 select ARCH_BIG_ENDIAN
14 select FORCE_SHAREABLE_TEXT_SEGMENTS
15
16choice
17 prompt "Target CPU Type"
18 default CONFIG_AVR32_AP7
19
20config CONFIG_AVR32_AP7
21 bool "AVR32 AP7"
22 select ARCH_HAS_MMU
23
24endchoice
25
26config LINKRELAX
27 bool "Enable linker optimizations"
28 default y