Config.powerpc 750 B

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