Kconfig 423 B

123456789101112131415161718192021222324252627282930
  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. help
  9. This option enables support for the MPC 8540 ADS board
  10. endchoice
  11. config MPC8540
  12. bool
  13. select PPC_UDBG_16550
  14. select PPC_INDIRECT_PCI
  15. default y if MPC8540_ADS
  16. config PPC_INDIRECT_PCI_BE
  17. bool
  18. depends on PPC_85xx
  19. default y
  20. config MPIC
  21. bool
  22. default y
  23. endmenu