Config.avr32 498 B

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