Kconfig 447 B

1234567891011121314151617181920212223242526272829303132
  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. endmenu