Kconfig 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. config DTC
  2. bool
  3. config OF
  4. bool
  5. menu "Device Tree and Open Firmware support"
  6. depends on OF
  7. config PROC_DEVICETREE
  8. bool "Support for device tree in /proc"
  9. depends on PROC_FS && !SPARC
  10. help
  11. This option adds a device-tree directory under /proc which contains
  12. an image of the device tree that the kernel copies from Open
  13. Firmware or other boot firmware. If unsure, say Y here.
  14. config OF_SELFTEST
  15. bool "Device Tree Runtime self tests"
  16. depends on OF_IRQ
  17. help
  18. This option builds in test cases for the device tree infrastructure
  19. that are executed one at boot time, and the results dumped to the
  20. console.
  21. If unsure, say N here, but this option is safe to enable.
  22. config OF_FLATTREE
  23. bool
  24. select DTC
  25. config OF_EARLY_FLATTREE
  26. bool
  27. select OF_FLATTREE
  28. config OF_PROMTREE
  29. bool
  30. # Hardly any platforms need this. It is safe to select, but only do so if you
  31. # need it.
  32. config OF_DYNAMIC
  33. bool
  34. config OF_ADDRESS
  35. def_bool y
  36. depends on !SPARC
  37. config OF_IRQ
  38. def_bool y
  39. depends on !SPARC
  40. config OF_NET
  41. depends on NETDEVICES
  42. def_bool y
  43. config OF_MDIO
  44. def_tristate PHYLIB
  45. depends on PHYLIB
  46. help
  47. OpenFirmware MDIO bus (Ethernet PHY) accessors
  48. config OF_PCI
  49. def_tristate PCI
  50. depends on PCI
  51. help
  52. OpenFirmware PCI bus accessors
  53. config OF_PCI_IRQ
  54. def_tristate PCI
  55. depends on OF_PCI && OF_IRQ
  56. help
  57. OpenFirmware PCI IRQ routing helpers
  58. config OF_MTD
  59. depends on MTD
  60. def_bool y
  61. endmenu # OF