Config.in.misc 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. config ADK_KERNEL_FIRMWARE_IN_KERNEL
  2. boolean
  3. default n
  4. config ADK_KERNEL_FW_LOADER_USER_HELPER
  5. boolean
  6. default n
  7. config ADK_KERNEL_KEYS
  8. boolean
  9. config ADK_KERNEL_SBUS
  10. boolean
  11. menu "Miscellaneous devices support"
  12. source "target/linux/config/Config.in.rtc"
  13. source "target/linux/config/Config.in.leds"
  14. source "target/linux/config/Config.in.watchdog"
  15. source "target/linux/config/Config.in.i2c"
  16. source "target/linux/config/Config.in.spi"
  17. source "target/linux/config/Config.in.regulator"
  18. source "target/linux/config/Config.in.gpio"
  19. source "target/linux/config/Config.in.dma"
  20. source "target/linux/config/Config.in.lib"
  21. config ADK_KERNEL_KEXEC
  22. prompt "Add KEXEC syscall"
  23. boolean
  24. help
  25. You need also kexec-tools to benefit from it.
  26. config ADK_KERNEL_PARPORT
  27. prompt "Generic parallel port support"
  28. tristate
  29. default n
  30. depends on ADK_TARGET_WITH_PP
  31. help
  32. Kernel module for generic parallel port support.
  33. config ADK_KERNEL_PARPORT_PC
  34. prompt "PC style parallel port support"
  35. tristate
  36. default n
  37. depends on ADK_KERNEL_PARPORT
  38. help
  39. Kernel module for PC style parallel port support.
  40. config ADK_KERNEL_PLIP
  41. prompt "PLIP (internet over parallel port)"
  42. tristate
  43. default n
  44. depends on ADK_KERNEL_PARPORT
  45. select ADK_KERNEL_PARPORT_PC
  46. help
  47. PLIP: IPv4 over parallel port, using a Turbo Laplink
  48. (crossed null-printer) cable. Drivers exist for DOS
  49. (from Crynwr), Linux 2.x (protocol changed and is no
  50. longer compatible with Linux 1.x), FreeBSD and MirBSD.
  51. This will enlarge your kernel by about 8 KiB.
  52. config ADK_KERNEL_PRINTER
  53. prompt "Line printer support"
  54. tristate
  55. default n
  56. depends on ADK_KERNEL_PARPORT
  57. select ADK_KERNEL_PARPORT_PC
  58. help
  59. Kernel module for line printer support
  60. config ADK_KERNEL_PPDEV
  61. prompt "Userland parallel port driver"
  62. tristate
  63. default n
  64. depends on ADK_KERNEL_PARPORT
  65. select ADK_KERNEL_PARPORT_PC
  66. help
  67. Kernel module for userland parallel port access
  68. config ADK_KERNEL_FW_LOADER
  69. prompt "Userspace firmware loading support"
  70. tristate
  71. depends on !ADK_TARGET_SYSTEM_SHARP_ZAURUS
  72. default n
  73. help
  74. This may be necessary when using drivers which require
  75. loading of external firmware files.
  76. config ADK_KERNEL_EEPROM_93CX6
  77. prompt "93cx6 eeprom support"
  78. tristate
  79. depends on ADK_KERNEL_MAC80211
  80. select ADK_KERNEL_MISC_DEVICES
  81. default n
  82. help
  83. endmenu