Kconfig 589 B

123456789101112131415161718192021222324252627
  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. endchoice
  16. config MPC834x
  17. bool
  18. select PPC_UDBG_16550
  19. select PPC_INDIRECT_PCI
  20. default y if MPC834x_SYS
  21. endmenu