Config.in.manual 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. config ADK_COMPILE_BUSYBOX
  2. tristate
  3. depends on ADK_PACKAGE_BUSYBOX
  4. config ADK_PACKAGE_BUSYBOX
  5. bool "busybox.............. core utilities for embedded systems"
  6. select ADK_COMPILE_BUSYBOX
  7. default y if !ADK_TOOLCHAIN_ONLY && !ADK_TARGET_WITHOUT_MMU
  8. help
  9. Core utilities for embedded Linux systems
  10. WWW: http://www.busybox.net
  11. config ADK_PACKAGE_BUSYBOX_HIDE
  12. bool "hide packages provided by busybox applets"
  13. depends on ADK_PACKAGE_BUSYBOX
  14. default n
  15. help
  16. Do not show packages which are provided as busybox applets
  17. menu "Busybox Configuration"
  18. depends on ADK_PACKAGE_BUSYBOX
  19. source "package/busybox/config/Config.in"
  20. endmenu
  21. config ADK_PACKAGE_UDHCPD
  22. bool
  23. default BUSYBOX_APP_UDHCPD
  24. # disable busybox applets, when full programs are choosen
  25. config BUSYBOX_DISABLE_MOUNT
  26. bool
  27. default y if ADK_PACKAGE_MOUNT
  28. depends on ADK_PACKAGE_MOUNT
  29. default n
  30. config BUSYBOX_DISABLE_UMOUNT
  31. bool
  32. default y if ADK_PACKAGE_MOUNT
  33. depends on ADK_PACKAGE_MOUNT
  34. default n
  35. config BUSYBOX_DISABLE_TAR
  36. bool
  37. default y if ADK_PACKAGE_TAR
  38. depends on ADK_PACKAGE_TAR
  39. default n
  40. config BUSYBOX_DISABLE_BZIP2
  41. bool
  42. default y if ADK_PACKAGE_BZIP2
  43. depends on ADK_PACKAGE_BZIP2
  44. default n
  45. config BUSYBOX_DISABLE_IP
  46. bool
  47. default y if ADK_PACKAGE_IP
  48. depends on ADK_PACKAGE_IP
  49. default n
  50. config BUSYBOX_DISABLE_PATCH
  51. bool
  52. default y if ADK_PACKAGE_PATCH
  53. depends on ADK_PACKAGE_PATCH
  54. default n
  55. config BUSYBOX_DISABLE_DIFF
  56. bool
  57. default y if ADK_PACKAGE_DIFFUTILS
  58. depends on ADK_PACKAGE_DIFFUTILS
  59. default n
  60. config BUSYBOX_DISABLE_ED
  61. bool
  62. default y if ADK_PACKAGE_ED
  63. depends on ADK_PACKAGE_ED
  64. default n
  65. config BUSYBOX_DISABLE_SED
  66. bool
  67. default y if ADK_PACKAGE_SED
  68. depends on ADK_PACKAGE_SED
  69. default n
  70. config BUSYBOX_DISABLE_LESS
  71. bool
  72. default y if ADK_PACKAGE_LESS
  73. depends on ADK_PACKAGE_LESS
  74. default n
  75. config BUSYBOX_DISABLE_HDPARM
  76. bool
  77. default y if ADK_PACKAGE_HDPARM
  78. depends on ADK_PACKAGE_HDPARM
  79. default n
  80. config BUSYBOX_DISABLE_WATCHDOG
  81. bool
  82. default y if ADK_PACKAGE_WATCHDOG
  83. depends on ADK_PACKAGE_WATCHDOG
  84. default n
  85. config BUSYBOX_DISABLE_PAM
  86. bool
  87. default y if ADK_PACKAGE_PAM
  88. depends on ADK_PACKAGE_PAM
  89. default n
  90. config BUSYBOX_DISABLE_BRCTL
  91. bool
  92. default y if ADK_PACKAGE_BRIDGE_UTILS
  93. depends on ADK_PACKAGE_BRIDGE_UTILS
  94. default n
  95. config BUSYBOX_DISABLE_ETHER_WAKE
  96. bool
  97. default y if ADK_PACKAGE_ETHER_WAKE
  98. depends on ADK_PACKAGE_ETHER_WAKE
  99. default n
  100. config BUSYBOX_DISABLE_NTPD
  101. bool
  102. default y if ADK_PACKAGE_OPENNTPD
  103. depends on ADK_PACKAGE_OPENNTPD
  104. default n
  105. config BUSYBOX_DISABLE_WGET
  106. bool
  107. default y if ADK_PACKAGE_WGET
  108. depends on ADK_PACKAGE_WGET
  109. default n
  110. config BUSYBOX_DISABLE_AR
  111. bool
  112. default y if ADK_PACKAGE_BINUTILS
  113. depends on ADK_PACKAGE_BINUTILS
  114. default n
  115. config BUSYBOX_DISABLE_CPIO
  116. bool
  117. default y if ADK_PACKAGE_CPIO
  118. depends on ADK_PACKAGE_CPIO
  119. default n
  120. config BUSYBOX_DISABLE_XZ
  121. bool
  122. default y if ADK_PACKAGE_XZ
  123. depends on ADK_PACKAGE_XZ
  124. default n
  125. config BUSYBOX_DISABLE_UNXZ
  126. bool
  127. default y if ADK_PACKAGE_XZ
  128. depends on ADK_PACKAGE_XZ
  129. default n
  130. config BUSYBOX_DISABLE_FBSET
  131. bool
  132. default y if ADK_PACKAGE_FBSET
  133. depends on ADK_PACKAGE_FBSET
  134. default n
  135. config BUSYBOX_DISABLE_LSPCI
  136. bool
  137. default y if ADK_PACKAGE_PCIUTILS
  138. depends on ADK_PACKAGE_PCIUTILS
  139. default n
  140. config BUSYBOX_DISABLE_LSUSB
  141. bool
  142. default y if ADK_PACKAGE_LSUSB
  143. depends on ADK_PACKAGE_LSUSB
  144. default n
  145. config BUSYBOX_DISABLE_GREP
  146. bool
  147. default y if ADK_PACKAGE_GREP
  148. depends on ADK_PACKAGE_GREP
  149. default n
  150. config BUSYBOX_DISABLE_FIND
  151. bool
  152. default y if ADK_PACKAGE_FINDUTILS
  153. depends on ADK_PACKAGE_FINDUTILS
  154. default n
  155. config BUSYBOX_DISABLE_RDATE
  156. bool
  157. default y if ADK_PACKAGE_RDATE
  158. depends on ADK_PACKAGE_RDATE
  159. default n
  160. config BUSYBOX_DISABLE_RFKILL
  161. bool
  162. default y if ADK_PACKAGE_RFKILL
  163. depends on ADK_PACKAGE_RFKILL
  164. default n
  165. config BUSYBOX_DISABLE_KMOD
  166. bool
  167. default y if ADK_PACKAGE_KMOD
  168. depends on ADK_PACKAGE_KMOD
  169. default n