Config.in.misc 2.2 KB

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