Config.avr32 461 B

12345678910111213141516171819202122232425262728
  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. choice
  14. prompt "Target CPU Type"
  15. default CONFIG_AVR32_AP7
  16. config CONFIG_AVR32_AP7
  17. bool "AVR32 AP7"
  18. select ARCH_HAS_MMU
  19. endchoice
  20. config LINKRELAX
  21. bool "Enable linker optimizations"
  22. default y