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