Kconfig 505 B

12345678910111213141516171819202122232425262728293031323334353637
  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. select PPC_I8259
  9. help
  10. This option enables support for the MPC8641 HPCN board.
  11. endchoice
  12. config MPC8641
  13. bool
  14. select PPC_INDIRECT_PCI
  15. select PPC_UDBG_16550
  16. default y if MPC8641_HPCN
  17. config MPIC
  18. bool
  19. default y
  20. config PPC_INDIRECT_PCI_BE
  21. bool
  22. depends on PPC_86xx
  23. default y
  24. config PPC_STD_MMU
  25. bool
  26. depends on PPC_86xx
  27. default y
  28. endmenu