Config.powerpc 699 B

123456789101112131415161718192021222324252627282930313233343536
  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 "powerpc"
  8. config FORCE_OPTIONS_FOR_ARCH
  9. bool
  10. default y
  11. select ARCH_BIG_ENDIAN
  12. select ARCH_HAS_MMU
  13. select ARCH_HAS_DEPRECATED_SYSCALLS
  14. choice
  15. prompt "Target Processor Type"
  16. default CONFIG_CLASSIC
  17. help
  18. This is the processor core of your CPU. This information is used for
  19. determining the correct assembler instructions to use for the core.
  20. The default is to build for a classic powerpc.
  21. config CONFIG_CLASSIC
  22. bool "CLASSIC"
  23. help
  24. Classic powerpc architecture.
  25. config CONFIG_E500
  26. bool "E500"
  27. help
  28. e500 v1 and v2 core.
  29. endchoice