Config.in.misc 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. menu "Miscellaneous devices support"
  34. source "target/linux/config/Config.in.rtc"
  35. source "target/linux/config/Config.in.leds"
  36. source "target/linux/config/Config.in.watchdog"
  37. source "target/linux/config/Config.in.thermal"
  38. source "target/linux/config/Config.in.i2c"
  39. source "target/linux/config/Config.in.spi"
  40. source "target/linux/config/Config.in.regmap"
  41. source "target/linux/config/Config.in.regulator"
  42. source "target/linux/config/Config.in.gpio"
  43. source "target/linux/config/Config.in.dma"
  44. source "target/linux/config/Config.in.lib"
  45. config ADK_KERNEL_KEXEC
  46. bool "Add KEXEC syscall"
  47. help
  48. You need also kexec-tools to benefit from it.
  49. config ADK_KERNEL_PARPORT
  50. tristate "Generic parallel port support"
  51. depends on ADK_TARGET_WITH_PP
  52. help
  53. Kernel module for generic parallel port support.
  54. config ADK_KERNEL_PARPORT_PC
  55. tristate "PC style parallel port support"
  56. depends on ADK_KERNEL_PARPORT
  57. help
  58. Kernel module for PC style parallel port support.
  59. config ADK_KERNEL_PLIP
  60. tristate "PLIP (internet over parallel port)"
  61. depends on ADK_KERNEL_PARPORT
  62. select ADK_KERNEL_PARPORT_PC
  63. help
  64. PLIP: IPv4 over parallel port, using a Turbo Laplink
  65. (crossed null-printer) cable. Drivers exist for DOS
  66. (from Crynwr), Linux 2.x (protocol changed and is no
  67. longer compatible with Linux 1.x), FreeBSD and MirBSD.
  68. This will enlarge your kernel by about 8 KiB.
  69. config ADK_KERNEL_PRINTER
  70. tristate "Line printer support"
  71. depends on ADK_KERNEL_PARPORT
  72. select ADK_KERNEL_PARPORT_PC
  73. help
  74. Kernel module for line printer support
  75. config ADK_KERNEL_PPDEV
  76. tristate "Userland parallel port driver"
  77. depends on ADK_KERNEL_PARPORT
  78. select ADK_KERNEL_PARPORT_PC
  79. help
  80. Kernel module for userland parallel port access
  81. config ADK_KERNEL_FW_LOADER
  82. tristate "Userspace firmware loading support"
  83. depends on !ADK_TARGET_SYSTEM_SHARP_ZAURUS
  84. help
  85. This may be necessary when using drivers which require
  86. loading of external firmware files.
  87. config ADK_KERNEL_EEPROM_93CX6
  88. tristate "93cx6 eeprom support"
  89. depends on ADK_KERNEL_MAC80211
  90. select ADK_KERNEL_MISC_DEVICES
  91. endmenu