Kconfig 829 B

123456789101112131415161718192021222324252627282930313233343536
  1. menu "Platform support"
  2. depends on PPC_83xx
  3. choice
  4. prompt "Machine Type"
  5. default MPC834x_SYS
  6. config MPC834x_SYS
  7. bool "Freescale MPC834x SYS"
  8. select DEFAULT_UIMAGE
  9. help
  10. This option enables support for the MPC 834x SYS evaluation board.
  11. Be aware that PCI buses can only function when SYS board is plugged
  12. into the PIB (Platform IO Board) board from Freescale which provide
  13. 3 PCI slots. The PIBs PCI initialization is the bootloader's
  14. responsiblilty.
  15. config MPC834x_ITX
  16. bool "Freescale MPC834x ITX"
  17. select DEFAULT_UIMAGE
  18. help
  19. This option enables support for the MPC 834x ITX evaluation board.
  20. Be aware that PCI initialization is the bootloader's
  21. responsiblilty.
  22. endchoice
  23. config MPC834x
  24. bool
  25. select PPC_UDBG_16550
  26. select PPC_INDIRECT_PCI
  27. default y if MPC834x_SYS || MPC834x_ITX
  28. endmenu