Config.powerpc 866 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. 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. select ARCH_HAS_MMU
  16. config ARCH_CFLAGS
  17. string
  18. choice
  19. prompt "Target Processor Type"
  20. default CONFIG_CLASSIC
  21. help
  22. This is the processor core of your CPU. This information is used for
  23. determining the correct assembler instructions to use for the core.
  24. The default is to build for a classic powerpc.
  25. config CONFIG_CLASSIC
  26. bool "CLASSIC"
  27. help
  28. Classic powerpc architecture.
  29. config CONFIG_E500
  30. bool "E500"
  31. help
  32. e500 v1 and v2 core.
  33. endchoice
  34. endmenu
  35. source "extra/Configs/Config.in.common"