Config.in.misc 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. config ADK_KERNEL_MISC_DEVICES
  4. bool
  5. config ADK_KERNEL_MFD_SYSCON
  6. bool
  7. config ADK_KERNEL_OF
  8. bool
  9. config ADK_KERNEL_FIRMWARE_IN_KERNEL
  10. bool
  11. default y if ADK_KERNEL_R8169 && ADK_KERNEL_ROOT_NFS
  12. default n
  13. config ADK_KERNEL_EXTRA_FIRMWARE
  14. string
  15. default "rtl8168e-2.fw" if ADK_KERNEL_R8169 && ADK_KERNEL_ROOT_NFS
  16. default ""
  17. config ADK_KERNEL_FW_LOADER_USER_HELPER
  18. bool
  19. config ADK_KERNEL_KEYS
  20. bool
  21. config ADK_KERNEL_SBUS
  22. bool
  23. config ADK_KERNEL_FSL_OTP
  24. bool
  25. depends on ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  26. default y if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  27. default n
  28. config ADK_KERNEL_IMX_WEIM
  29. bool
  30. depends on ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  31. default y if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  32. default n
  33. config ADK_KERNEL_INTEL_IOMMU
  34. bool
  35. config ADK_KERNEL_IOMMU_API
  36. bool
  37. config ADK_KERNEL_IOMMU_IOVA
  38. bool
  39. config ADK_KERNEL_DMAR_TABLE
  40. bool
  41. menu "Miscellaneous devices support"
  42. source "target/linux/config/Config.in.rtc"
  43. source "target/linux/config/Config.in.leds"
  44. source "target/linux/config/Config.in.watchdog"
  45. source "target/linux/config/Config.in.thermal"
  46. source "target/linux/config/Config.in.i2c"
  47. source "target/linux/config/Config.in.spi"
  48. source "target/linux/config/Config.in.regmap"
  49. source "target/linux/config/Config.in.regulator"
  50. source "target/linux/config/Config.in.gpio"
  51. source "target/linux/config/Config.in.dma"
  52. source "target/linux/config/Config.in.lib"
  53. config ADK_KERNEL_KEXEC
  54. bool "Add KEXEC syscall"
  55. help
  56. You need also kexec-tools to benefit from it.
  57. config ADK_KERNEL_PARPORT
  58. tristate "Generic parallel port support"
  59. depends on ADK_TARGET_WITH_PP
  60. help
  61. Kernel module for generic parallel port support.
  62. config ADK_KERNEL_PARPORT_PC
  63. tristate "PC style parallel port support"
  64. depends on ADK_KERNEL_PARPORT
  65. help
  66. Kernel module for PC style parallel port support.
  67. config ADK_KERNEL_PLIP
  68. tristate "PLIP (internet over parallel port)"
  69. depends on ADK_KERNEL_PARPORT
  70. select ADK_KERNEL_PARPORT_PC
  71. help
  72. PLIP: IPv4 over parallel port, using a Turbo Laplink
  73. (crossed null-printer) cable. Drivers exist for DOS
  74. (from Crynwr), Linux 2.x (protocol changed and is no
  75. longer compatible with Linux 1.x), FreeBSD and MirBSD.
  76. This will enlarge your kernel by about 8 KiB.
  77. config ADK_KERNEL_PRINTER
  78. tristate "Line printer support"
  79. depends on ADK_KERNEL_PARPORT
  80. select ADK_KERNEL_PARPORT_PC
  81. help
  82. Kernel module for line printer support
  83. config ADK_KERNEL_PPDEV
  84. tristate "Userland parallel port driver"
  85. depends on ADK_KERNEL_PARPORT
  86. select ADK_KERNEL_PARPORT_PC
  87. help
  88. Kernel module for userland parallel port access
  89. config ADK_KERNEL_FW_LOADER
  90. tristate "Userspace firmware loading support"
  91. depends on !ADK_TARGET_SYSTEM_SHARP_ZAURUS
  92. help
  93. This may be necessary when using drivers which require
  94. loading of external firmware files.
  95. config ADK_KERNEL_EEPROM_93CX6
  96. tristate "93cx6 eeprom support"
  97. depends on ADK_KERNEL_MAC80211
  98. select ADK_KERNEL_MISC_DEVICES
  99. config ADK_KERNEL_IOMMU_SUPPORT
  100. bool "IOMMU support for Intel"
  101. select ADK_KERNEL_PCI_MSI
  102. select ADK_KERNEL_INTEL_IOMMU
  103. select ADK_KERNEL_IOMMU_API
  104. select ADK_KERNEL_IOMMU_IOVA
  105. select ADK_KERNEL_DMAR_TABLE
  106. depends on ADK_TARGET_WITH_IOMMU
  107. default y
  108. endmenu