Kconfig 446 B

12345678910111213141516171819202122232425262728293031
  1. menu "Platform support"
  2. depends on PPC_85xx
  3. choice
  4. prompt "Machine Type"
  5. default MPC8540_ADS
  6. config MPC8540_ADS
  7. bool "Freescale MPC8540 ADS"
  8. select DEFAULT_UIMAGE
  9. help
  10. This option enables support for the MPC 8540 ADS board
  11. endchoice
  12. config MPC8540
  13. bool
  14. select PPC_UDBG_16550
  15. select PPC_INDIRECT_PCI
  16. default y if MPC8540_ADS
  17. config PPC_INDIRECT_PCI_BE
  18. bool
  19. depends on PPC_85xx
  20. default y
  21. config MPIC
  22. bool
  23. default y
  24. endmenu