Config.sparc 654 B

1234567891011121314151617181920212223242526272829303132333435
  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_DEPRECATED_SYSCALLS
  13. choice
  14. prompt "Target Processor Type"
  15. default CONFIG_SPARC_V8
  16. help
  17. This is the processor type of your CPU. This information is used for
  18. optimizing purposes. Building for a v8 SPARC is pretty safe nowadays.
  19. config CONFIG_SPARC_V7
  20. bool "SPARC v7"
  21. config CONFIG_SPARC_V8
  22. bool "SPARC v8"
  23. config CONFIG_SPARC_V9
  24. bool "SPARC v9"
  25. config CONFIG_SPARC_V9B
  26. bool "SPARC v9b"
  27. endchoice