Config.powerpc 690 B

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