Config.in.misc 2.7 KB

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