Config.sparc 596 B

123456789101112131415161718192021222324252627282930
  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 "sparc"
  8. config FORCE_OPTIONS_FOR_ARCH
  9. bool
  10. default y
  11. select ARCH_BIG_ENDIAN
  12. select ARCH_HAS_UCONTEXT
  13. select ARCH_HAS_DEPRECATED_SYSCALLS
  14. choice
  15. prompt "Target Processor Type"
  16. default CONFIG_SPARC_V8
  17. help
  18. This is the processor type of your CPU. This information is used for
  19. optimizing purposes. Building for a v8 SPARC is pretty safe nowadays.
  20. config CONFIG_SPARC_V7
  21. bool "SPARC v7"
  22. config CONFIG_SPARC_V8
  23. bool "SPARC v8"
  24. endchoice