Kconfig 621 B

12345678910111213141516171819202122232425262728293031323334
  1. choice
  2. prompt "86xx Board Type"
  3. depends on PPC_86xx
  4. default MPC8641_HPCN
  5. config MPC8641_HPCN
  6. bool "Freescale MPC8641 HPCN"
  7. select PPC_I8259
  8. select DEFAULT_UIMAGE
  9. select FSL_ULI1575
  10. help
  11. This option enables support for the MPC8641 HPCN board.
  12. config MPC8610_HPCD
  13. bool "Freescale MPC8610 HPCD"
  14. select DEFAULT_UIMAGE
  15. help
  16. This option enables support for the MPC8610 HPCD board.
  17. endchoice
  18. config MPC8641
  19. bool
  20. select FSL_PCI if PCI
  21. select PPC_UDBG_16550
  22. select MPIC
  23. default y if MPC8641_HPCN
  24. config MPC8610
  25. bool
  26. select FSL_PCI if PCI
  27. select PPC_UDBG_16550
  28. select MPIC
  29. default y if MPC8610_HPCD