Kconfig 566 B

1234567891011121314151617181920212223242526
  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. help
  9. This option enables support for the MPC 834x SYS evaluation board.
  10. Be aware that PCI buses can only function when SYS board is plugged
  11. into the PIB (Platform IO Board) board from Freescale which provide
  12. 3 PCI slots. The PIBs PCI initialization is the bootloader's
  13. responsiblilty.
  14. endchoice
  15. config MPC834x
  16. bool
  17. select PPC_UDBG_16550
  18. select PPC_INDIRECT_PCI
  19. default y if MPC834x_SYS
  20. endmenu