Config.sparc 971 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. 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. config ARCH_CFLAGS
  16. string
  17. choice
  18. prompt "Target Processor Type"
  19. default CONFIG_SPARC_V8
  20. help
  21. This is the processor type of your CPU. This information is used for
  22. optimizing purposes. Building for a v8 SPARC is pretty safe nowadays.
  23. Warning: shared library support requires v8 or better, so building for
  24. SPARC v7 will give you only static support.
  25. config CONFIG_SPARC_V7
  26. select ARCH_HAS_NO_SHARED
  27. bool "SPARC v7"
  28. config CONFIG_SPARC_V8
  29. bool "SPARC v8"
  30. config CONFIG_SPARC_V9
  31. bool "SPARC v9"
  32. config CONFIG_SPARC_V9B
  33. bool "SPARC v9b"
  34. endchoice
  35. endmenu
  36. source "extra/Configs/Config.in.common"