Kconfig 470 B

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