Config.avr32 489 B

12345678910111213141516171819202122232425262728293031
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see extra/config/Kconfig-language.txt
  4. #
  5. config TARGET_ARCH
  6. string
  7. default "avr32"
  8. config FORCE_OPTIONS_FOR_ARCH
  9. bool
  10. default y
  11. select ARCH_BIG_ENDIAN
  12. select FORCE_SHAREABLE_TEXT_SEGMENTS
  13. config ARCH_CFLAGS
  14. string
  15. choice
  16. prompt "Target CPU Type"
  17. default CONFIG_AVR32_AP7
  18. config CONFIG_AVR32_AP7
  19. bool "AVR32 AP7"
  20. select ARCH_HAS_MMU
  21. endchoice
  22. config LINKRELAX
  23. bool "Enable linker optimizations"
  24. default y