Config.powerpc 720 B

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