Kconfig 487 B

123456789101112131415161718192021222324252627282930313233343536
  1. menu "Platform Support"
  2. depends on PPC_86xx
  3. choice
  4. prompt "Machine Type"
  5. default MPC8641_HPCN
  6. config MPC8641_HPCN
  7. bool "Freescale MPC8641 HPCN"
  8. help
  9. This option enables support for the MPC8641 HPCN board.
  10. endchoice
  11. config MPC8641
  12. bool
  13. select PPC_INDIRECT_PCI
  14. select PPC_UDBG_16550
  15. default y if MPC8641_HPCN
  16. config MPIC
  17. bool
  18. default y
  19. config PPC_INDIRECT_PCI_BE
  20. bool
  21. depends on PPC_86xx
  22. default y
  23. config PPC_STD_MMU
  24. bool
  25. depends on PPC_86xx
  26. default y
  27. endmenu