Config.avr32 665 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. source "extra/Configs/Config.in.arches"
  9. menu "Target Architecture Features and Options"
  10. source "extra/Configs/Config.in.arch"
  11. config FORCE_OPTIONS_FOR_ARCH
  12. bool
  13. default y
  14. select ARCH_BIG_ENDIAN
  15. select FORCE_SHAREABLE_TEXT_SEGMENTS
  16. config ARCH_CFLAGS
  17. string
  18. choice
  19. prompt "Target CPU Type"
  20. default CONFIG_AVR32_AP7
  21. config CONFIG_AVR32_AP7
  22. bool "AVR32 AP7"
  23. select ARCH_HAS_MMU
  24. endchoice
  25. config LINKRELAX
  26. bool "Enable linker optimizations"
  27. default y
  28. endmenu
  29. source "extra/Configs/Config.in.common"