Config.in 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178
  1. # DO NOT EDIT. This file is generated from Config.src
  2. #
  3. # For a description of the syntax of this configuration file,
  4. # see scripts/kbuild/config-language.txt.
  5. #
  6. menu "Networking Utilities"
  7. config BUSYBOX_NAMEIF
  8. bool "nameif"
  9. default n
  10. select BUSYBOX_PLATFORM_LINUX
  11. select BUSYBOX_FEATURE_SYSLOG
  12. help
  13. nameif is used to rename network interface by its MAC address.
  14. Renamed interfaces MUST be in the down state.
  15. It is possible to use a file (default: /etc/mactab)
  16. with list of new interface names and MACs.
  17. Maximum interface name length: IFNAMSIZ = 16
  18. File fields are separated by space or tab.
  19. File format:
  20. # Comment
  21. new_interface_name XX:XX:XX:XX:XX:XX
  22. config BUSYBOX_FEATURE_NAMEIF_EXTENDED
  23. bool "Extended nameif"
  24. default y
  25. depends on BUSYBOX_NAMEIF
  26. help
  27. This extends the nameif syntax to support the bus_info, driver,
  28. phyaddr selectors. The syntax is compatible to the normal nameif.
  29. File format:
  30. new_interface_name driver=asix bus=usb-0000:00:08.2-3
  31. new_interface_name bus=usb-0000:00:08.2-3 00:80:C8:38:91:B5
  32. new_interface_name phy_address=2 00:80:C8:38:91:B5
  33. new_interface_name mac=00:80:C8:38:91:B5
  34. new_interface_name 00:80:C8:38:91:B5
  35. config BUSYBOX_NBDCLIENT
  36. bool "nbd-client"
  37. default n
  38. help
  39. Network block device client
  40. config BUSYBOX_NC
  41. bool "nc"
  42. default n
  43. help
  44. A simple Unix utility which reads and writes data across network
  45. connections.
  46. config BUSYBOX_NC_SERVER
  47. bool "Netcat server options (-l)"
  48. default y
  49. depends on BUSYBOX_NC
  50. help
  51. Allow netcat to act as a server.
  52. config BUSYBOX_NC_EXTRA
  53. bool "Netcat extensions (-eiw and filename)"
  54. default y
  55. depends on BUSYBOX_NC
  56. help
  57. Add -e (support for executing the rest of the command line after
  58. making or receiving a successful connection), -i (delay interval for
  59. lines sent), -w (timeout for initial connection).
  60. config BUSYBOX_NC_110_COMPAT
  61. bool "Netcat 1.10 compatibility (+2.5k)"
  62. default n # off specially for Rob
  63. depends on BUSYBOX_NC
  64. help
  65. This option makes nc closely follow original nc-1.10.
  66. The code is about 2.5k bigger. It enables
  67. -s ADDR, -n, -u, -v, -o FILE, -z options, but loses
  68. busybox-specific extensions: -f FILE and -ll.
  69. config BUSYBOX_PING
  70. bool "ping"
  71. default y if ADK_TARGET_WITH_NET
  72. select BUSYBOX_PLATFORM_LINUX
  73. help
  74. ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
  75. elicit an ICMP ECHO_RESPONSE from a host or gateway.
  76. config BUSYBOX_PING6
  77. bool "ping6"
  78. default y if ADK_TARGET_WITH_NET
  79. depends on BUSYBOX_FEATURE_IPV6 && BUSYBOX_PING
  80. help
  81. This will give you a ping that can talk IPv6.
  82. config BUSYBOX_FEATURE_FANCY_PING
  83. bool "Enable fancy ping output"
  84. default y
  85. depends on BUSYBOX_PING
  86. help
  87. Make the output from the ping applet include statistics, and at the
  88. same time provide full support for ICMP packets.
  89. config BUSYBOX_WHOIS
  90. bool "whois"
  91. default n
  92. help
  93. whois is a client for the whois directory service
  94. config BUSYBOX_FEATURE_IPV6
  95. bool "Enable IPv6 support"
  96. default n
  97. help
  98. Enable IPv6 support in busybox.
  99. This adds IPv6 support in the networking applets.
  100. config BUSYBOX_FEATURE_UNIX_LOCAL
  101. bool "Enable Unix domain socket support (usually not needed)"
  102. default n
  103. help
  104. Enable Unix domain socket support in all busybox networking
  105. applets. Address of the form local:/path/to/unix/socket
  106. will be recognized.
  107. This extension is almost never used in real world usage.
  108. You most likely want to say N.
  109. config BUSYBOX_FEATURE_PREFER_IPV4_ADDRESS
  110. bool "Prefer IPv4 addresses from DNS queries"
  111. default y
  112. depends on BUSYBOX_FEATURE_IPV6
  113. help
  114. Use IPv4 address of network host if it has one.
  115. If this option is off, the first returned address will be used.
  116. This may cause problems when your DNS server is IPv6-capable and
  117. is returning IPv6 host addresses too. If IPv6 address
  118. precedes IPv4 one in DNS reply, busybox network applets
  119. (e.g. wget) will use IPv6 address. On an IPv6-incapable host
  120. or network applets will fail to connect to the host
  121. using IPv6 address.
  122. config BUSYBOX_VERBOSE_RESOLUTION_ERRORS
  123. bool "Verbose resolution errors"
  124. default n
  125. help
  126. Enable if you are not satisfied with simplistic
  127. "can't resolve 'hostname.com'" and want to know more.
  128. This may increase size of your executable a bit.
  129. config BUSYBOX_ARP
  130. bool "arp"
  131. default n
  132. select BUSYBOX_PLATFORM_LINUX
  133. help
  134. Manipulate the system ARP cache.
  135. config BUSYBOX_ARPING
  136. bool "arping"
  137. default n
  138. select BUSYBOX_PLATFORM_LINUX
  139. help
  140. Ping hosts by ARP packets.
  141. config BUSYBOX_BRCTL
  142. bool "brctl"
  143. depends on !BUSYBOX_DISABLE_BRCTL
  144. default n
  145. select BUSYBOX_PLATFORM_LINUX
  146. help
  147. Manage ethernet bridges.
  148. Supports addbr/delbr and addif/delif.
  149. config BUSYBOX_FEATURE_BRCTL_FANCY
  150. bool "Fancy options"
  151. default y
  152. depends on BUSYBOX_BRCTL
  153. help
  154. Add support for extended option like:
  155. setageing, setfd, sethello, setmaxage,
  156. setpathcost, setportprio, setbridgeprio,
  157. stp
  158. This adds about 600 bytes.
  159. config BUSYBOX_FEATURE_BRCTL_SHOW
  160. bool "Support show, showmac and showstp"
  161. default y
  162. depends on BUSYBOX_BRCTL && BUSYBOX_FEATURE_BRCTL_FANCY
  163. help
  164. Add support for option which prints the current config:
  165. showmacs, showstp, show
  166. config BUSYBOX_DNSD
  167. bool "dnsd"
  168. default n
  169. help
  170. Small and static DNS server daemon.
  171. config BUSYBOX_ETHER_WAKE
  172. bool "ether-wake"
  173. depends on !BUSYBOX_DISABLE_ETHER_WAKE
  174. default n
  175. select BUSYBOX_PLATFORM_LINUX
  176. help
  177. Send a magic packet to wake up sleeping machines.
  178. config BUSYBOX_FAKEIDENTD
  179. bool "fakeidentd"
  180. default n
  181. select BUSYBOX_FEATURE_SYSLOG
  182. help
  183. fakeidentd listens on the ident port and returns a predefined
  184. fake value on any query.
  185. config BUSYBOX_FTPD
  186. bool "ftpd"
  187. default n
  188. help
  189. simple FTP daemon. You have to run it via inetd.
  190. config BUSYBOX_FEATURE_FTP_WRITE
  191. bool "Enable upload commands"
  192. default y
  193. depends on BUSYBOX_FTPD
  194. help
  195. Enable all kinds of FTP upload commands (-w option)
  196. config BUSYBOX_FEATURE_FTPD_ACCEPT_BROKEN_LIST
  197. bool "Enable workaround for RFC-violating clients"
  198. default y
  199. depends on BUSYBOX_FTPD
  200. help
  201. Some ftp clients (among them KDE's Konqueror) issue illegal
  202. "LIST -l" requests. This option works around such problems.
  203. It might prevent you from listing files starting with "-" and
  204. it increases the code size by ~40 bytes.
  205. Most other ftp servers seem to behave similar to this.
  206. config BUSYBOX_FTPGET
  207. bool "ftpget"
  208. default n
  209. help
  210. Retrieve a remote file via FTP.
  211. config BUSYBOX_FTPPUT
  212. bool "ftpput"
  213. default n
  214. help
  215. Store a remote file via FTP.
  216. config BUSYBOX_FEATURE_FTPGETPUT_LONG_OPTIONS
  217. bool "Enable long options in ftpget/ftpput"
  218. default y
  219. depends on BUSYBOX_LONG_OPTS && (BUSYBOX_FTPGET || BUSYBOX_FTPPUT)
  220. help
  221. Support long options for the ftpget/ftpput applet.
  222. config BUSYBOX_HOSTNAME
  223. bool "hostname"
  224. default y
  225. help
  226. Show or set the system's host name.
  227. config BUSYBOX_DNSDOMAINNAME
  228. bool "dnsdomainname"
  229. default n
  230. help
  231. Alias to "hostname -d".
  232. config BUSYBOX_HTTPD
  233. bool "httpd"
  234. default n
  235. help
  236. Serve web pages via an HTTP server.
  237. config BUSYBOX_FEATURE_HTTPD_RANGES
  238. bool "Support 'Ranges:' header"
  239. default y
  240. depends on BUSYBOX_HTTPD
  241. help
  242. Makes httpd emit "Accept-Ranges: bytes" header and understand
  243. "Range: bytes=NNN-[MMM]" header. Allows for resuming interrupted
  244. downloads, seeking in multimedia players etc.
  245. config BUSYBOX_FEATURE_HTTPD_USE_SENDFILE
  246. bool "Use sendfile system call"
  247. default y
  248. depends on BUSYBOX_HTTPD
  249. help
  250. When enabled, httpd will use the kernel sendfile() function
  251. instead of read/write loop.
  252. config BUSYBOX_FEATURE_HTTPD_SETUID
  253. bool "Enable -u <user> option"
  254. default y
  255. depends on BUSYBOX_HTTPD
  256. help
  257. This option allows the server to run as a specific user
  258. rather than defaulting to the user that starts the server.
  259. Use of this option requires special privileges to change to a
  260. different user.
  261. config BUSYBOX_FEATURE_HTTPD_BASIC_AUTH
  262. bool "Enable Basic http Authentication"
  263. default y
  264. depends on BUSYBOX_HTTPD
  265. help
  266. Utilizes password settings from /etc/httpd.conf for basic
  267. authentication on a per url basis.
  268. Example for httpd.conf file:
  269. /adm:toor:PaSsWd
  270. config BUSYBOX_FEATURE_HTTPD_AUTH_MD5
  271. bool "Support MD5 crypted passwords for http Authentication"
  272. default y
  273. depends on BUSYBOX_FEATURE_HTTPD_BASIC_AUTH
  274. help
  275. Enables encrypted passwords, and wildcard user/passwords
  276. in httpd.conf file.
  277. User '*' means 'any system user name is ok',
  278. password of '*' means 'use system password for this user'
  279. Examples:
  280. /adm:toor:$1$P/eKnWXS$aI1aPGxT.dJD5SzqAKWrF0
  281. /adm:root:*
  282. /wiki:*:*
  283. config BUSYBOX_FEATURE_HTTPD_CGI
  284. bool "Support Common Gateway Interface (CGI)"
  285. default y
  286. depends on BUSYBOX_HTTPD
  287. help
  288. This option allows scripts and executables to be invoked
  289. when specific URLs are requested.
  290. config BUSYBOX_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
  291. bool "Support for running scripts through an interpreter"
  292. default y
  293. depends on BUSYBOX_FEATURE_HTTPD_CGI
  294. help
  295. This option enables support for running scripts through an
  296. interpreter. Turn this on if you want PHP scripts to work
  297. properly. You need to supply an additional line in your
  298. httpd.conf file:
  299. *.php:/path/to/your/php
  300. config BUSYBOX_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
  301. bool "Set REMOTE_PORT environment variable for CGI"
  302. default y
  303. depends on BUSYBOX_FEATURE_HTTPD_CGI
  304. help
  305. Use of this option can assist scripts in generating
  306. references that contain a unique port number.
  307. config BUSYBOX_FEATURE_HTTPD_ENCODE_URL_STR
  308. bool "Enable -e option (useful for CGIs written as shell scripts)"
  309. default y
  310. depends on BUSYBOX_HTTPD
  311. help
  312. This option allows html encoding of arbitrary strings for display
  313. by the browser. Output goes to stdout.
  314. For example, httpd -e "<Hello World>" produces
  315. "&#60Hello&#32World&#62".
  316. config BUSYBOX_FEATURE_HTTPD_ERROR_PAGES
  317. bool "Support for custom error pages"
  318. default y
  319. depends on BUSYBOX_HTTPD
  320. help
  321. This option allows you to define custom error pages in
  322. the configuration file instead of the default HTTP status
  323. error pages. For instance, if you add the line:
  324. E404:/path/e404.html
  325. in the config file, the server will respond the specified
  326. '/path/e404.html' file instead of the terse '404 NOT FOUND'
  327. message.
  328. config BUSYBOX_FEATURE_HTTPD_PROXY
  329. bool "Support for reverse proxy"
  330. default y
  331. depends on BUSYBOX_HTTPD
  332. help
  333. This option allows you to define URLs that will be forwarded
  334. to another HTTP server. To setup add the following line to the
  335. configuration file
  336. P:/url/:http://hostname[:port]/new/path/
  337. Then a request to /url/myfile will be forwarded to
  338. http://hostname[:port]/new/path/myfile.
  339. config BUSYBOX_FEATURE_HTTPD_GZIP
  340. bool "Support for GZIP content encoding"
  341. default y
  342. depends on BUSYBOX_HTTPD
  343. help
  344. Makes httpd send files using GZIP content encoding if the
  345. client supports it and a pre-compressed <file>.gz exists.
  346. config BUSYBOX_IFCONFIG
  347. bool "ifconfig"
  348. default y if ADK_TARGET_WITH_NET
  349. select BUSYBOX_PLATFORM_LINUX
  350. help
  351. Ifconfig is used to configure the kernel-resident network interfaces.
  352. config BUSYBOX_FEATURE_IFCONFIG_STATUS
  353. bool "Enable status reporting output (+7k)"
  354. default y
  355. depends on BUSYBOX_IFCONFIG
  356. help
  357. If ifconfig is called with no arguments it will display the status
  358. of the currently active interfaces.
  359. config BUSYBOX_FEATURE_IFCONFIG_SLIP
  360. bool "Enable slip-specific options \"keepalive\" and \"outfill\""
  361. default n
  362. depends on BUSYBOX_IFCONFIG
  363. help
  364. Allow "keepalive" and "outfill" support for SLIP. If you're not
  365. planning on using serial lines, leave this unchecked.
  366. config BUSYBOX_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
  367. bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
  368. default n
  369. depends on BUSYBOX_IFCONFIG
  370. help
  371. Allow the start address for shared memory, start address for I/O,
  372. and/or the interrupt line used by the specified device.
  373. config BUSYBOX_FEATURE_IFCONFIG_HW
  374. bool "Enable option \"hw\" (ether only)"
  375. default y
  376. depends on BUSYBOX_IFCONFIG
  377. help
  378. Set the hardware address of this interface, if the device driver
  379. supports this operation. Currently, we only support the 'ether'
  380. class.
  381. config BUSYBOX_FEATURE_IFCONFIG_BROADCAST_PLUS
  382. bool "Set the broadcast automatically"
  383. default y
  384. depends on BUSYBOX_IFCONFIG
  385. help
  386. Setting this will make ifconfig attempt to find the broadcast
  387. automatically if the value '+' is used.
  388. config BUSYBOX_IFENSLAVE
  389. bool "ifenslave"
  390. select ADK_KERNEL_BONDING m
  391. default n
  392. select BUSYBOX_PLATFORM_LINUX
  393. help
  394. Userspace application to bind several interfaces
  395. to a logical interface (use with kernel bonding driver).
  396. config BUSYBOX_IFPLUGD
  397. bool "ifplugd"
  398. default n
  399. select BUSYBOX_PLATFORM_LINUX
  400. help
  401. Network interface plug detection daemon.
  402. config BUSYBOX_IFUP
  403. bool "ifup"
  404. default y if ADK_TARGET_WITH_NET
  405. help
  406. Activate the specified interfaces. This applet makes use
  407. of either "ifconfig" and "route" or the "ip" command to actually
  408. configure network interfaces. Therefore, you will probably also want
  409. to enable either IFCONFIG and ROUTE, or enable
  410. FEATURE_IFUPDOWN_IP and the various IP options. Of
  411. course you could use non-busybox versions of these programs, so
  412. against my better judgement (since this will surely result in plenty
  413. of support questions on the mailing list), I do not force you to
  414. enable these additional options. It is up to you to supply either
  415. "ifconfig", "route" and "run-parts" or the "ip" command, either
  416. via busybox or via standalone utilities.
  417. config BUSYBOX_IFDOWN
  418. bool "ifdown"
  419. default y if ADK_TARGET_WITH_NET
  420. help
  421. Deactivate the specified interfaces.
  422. config BUSYBOX_IFUPDOWN_IFSTATE_PATH
  423. string "Absolute path to ifstate file"
  424. default "/var/run/ifstate"
  425. depends on BUSYBOX_IFUP
  426. help
  427. ifupdown keeps state information in a file called ifstate.
  428. Typically it is located in /var/run/ifstate, however
  429. some distributions tend to put it in other places
  430. (debian, for example, uses /etc/network/run/ifstate).
  431. This config option defines location of ifstate.
  432. config BUSYBOX_FEATURE_IFUPDOWN_IP
  433. bool "Use ip applet"
  434. default y
  435. depends on BUSYBOX_IFUP
  436. help
  437. Use the iproute "ip" command to implement "ifup" and "ifdown", rather
  438. than the default of using the older 'ifconfig' and 'route' utilities.
  439. config BUSYBOX_FEATURE_IFUPDOWN_IP_BUILTIN
  440. bool "Use busybox ip applet"
  441. default y if !BUSYBOX_DISABLE_IP
  442. depends on BUSYBOX_FEATURE_IFUPDOWN_IP
  443. select BUSYBOX_PLATFORM_LINUX
  444. select BUSYBOX_IP
  445. select BUSYBOX_FEATURE_IP_ADDRESS
  446. select BUSYBOX_FEATURE_IP_LINK
  447. select BUSYBOX_FEATURE_IP_ROUTE
  448. help
  449. Use the busybox iproute "ip" applet to implement "ifupdown".
  450. If left disabled, you must install the full-blown iproute2
  451. utility or the "ifup" and "ifdown" applets will not work.
  452. config BUSYBOX_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
  453. bool "Use busybox ifconfig and route applets"
  454. default n
  455. depends on BUSYBOX_IFUP && !BUSYBOX_FEATURE_IFUPDOWN_IP
  456. select BUSYBOX_IFCONFIG
  457. select BUSYBOX_ROUTE
  458. help
  459. Use the busybox iproute "ifconfig" and "route" applets to
  460. implement the "ifup" and "ifdown" utilities.
  461. If left disabled, you must install the full-blown ifconfig
  462. and route utilities, or the "ifup" and "ifdown" applets will not
  463. work.
  464. config BUSYBOX_FEATURE_IFUPDOWN_IPV4
  465. bool "Support for IPv4"
  466. default y
  467. depends on BUSYBOX_IFUP
  468. help
  469. If you want ifup/ifdown to talk IPv4, leave this on.
  470. config BUSYBOX_FEATURE_IFUPDOWN_IPV6
  471. bool "Support for IPv6"
  472. default y
  473. depends on BUSYBOX_IFUP && BUSYBOX_FEATURE_IPV6
  474. help
  475. If you need support for IPv6, turn this option on.
  476. ### UNUSED
  477. ###config FEATURE_IFUPDOWN_IPX
  478. ### bool "Support for IPX"
  479. ### default y
  480. ### depends on BUSYBOX_IFUPDOWN
  481. ### help
  482. ### If this option is selected you can use busybox to work with IPX
  483. ### networks.
  484. config BUSYBOX_FEATURE_IFUPDOWN_MAPPING
  485. bool "Enable mapping support"
  486. default n
  487. depends on BUSYBOX_IFUP
  488. help
  489. This enables support for the "mapping" stanza, unless you have
  490. a weird network setup you don't need it.
  491. config BUSYBOX_FEATURE_IFUPDOWN_EXTERNAL_DHCP
  492. bool "Support for external dhcp clients"
  493. default n
  494. depends on BUSYBOX_IFUP
  495. help
  496. This enables support for the external dhcp clients. Clients are
  497. tried in the following order: dhcpcd, dhclient, pump and udhcpc.
  498. Otherwise, if udhcpc applet is enabled, it is used.
  499. Otherwise, ifup/ifdown will have no support for DHCP.
  500. config BUSYBOX_INETD
  501. bool "inetd"
  502. default n
  503. select BUSYBOX_FEATURE_SYSLOG
  504. help
  505. Internet superserver daemon
  506. config BUSYBOX_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
  507. bool "Support echo service"
  508. default y
  509. depends on BUSYBOX_INETD
  510. help
  511. Echo received data internal inetd service
  512. config BUSYBOX_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
  513. bool "Support discard service"
  514. default y
  515. depends on BUSYBOX_INETD
  516. help
  517. Internet /dev/null internal inetd service
  518. config BUSYBOX_FEATURE_INETD_SUPPORT_BUILTIN_TIME
  519. bool "Support time service"
  520. default y
  521. depends on BUSYBOX_INETD
  522. help
  523. Return 32 bit time since 1900 internal inetd service
  524. config BUSYBOX_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
  525. bool "Support daytime service"
  526. default y
  527. depends on BUSYBOX_INETD
  528. help
  529. Return human-readable time internal inetd service
  530. config BUSYBOX_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
  531. bool "Support chargen service"
  532. default y
  533. depends on BUSYBOX_INETD
  534. help
  535. Familiar character generator internal inetd service
  536. config BUSYBOX_FEATURE_INETD_RPC
  537. bool "Support RPC services"
  538. default n
  539. depends on BUSYBOX_INETD
  540. select BUSYBOX_FEATURE_HAVE_RPC
  541. help
  542. Support Sun-RPC based services
  543. config BUSYBOX_IP
  544. bool "ip"
  545. depends on !BUSYBOX_DISABLE_IP
  546. default y if ADK_TARGET_WITH_NET
  547. select BUSYBOX_PLATFORM_LINUX
  548. help
  549. The "ip" applet is a TCP/IP interface configuration and routing
  550. utility. You generally don't need "ip" to use busybox with
  551. TCP/IP.
  552. config BUSYBOX_FEATURE_IP_ADDRESS
  553. bool "ip address"
  554. default y
  555. depends on BUSYBOX_IP
  556. help
  557. Address manipulation support for the "ip" applet.
  558. config BUSYBOX_FEATURE_IP_LINK
  559. bool "ip link"
  560. default y
  561. depends on BUSYBOX_IP
  562. help
  563. Configure network devices with "ip".
  564. config BUSYBOX_FEATURE_IP_ROUTE
  565. bool "ip route"
  566. default y
  567. depends on BUSYBOX_IP
  568. help
  569. Add support for routing table management to "ip".
  570. config BUSYBOX_FEATURE_IP_ROUTE_DIR
  571. string "ip route configuration directory"
  572. default "/etc/iproute2"
  573. depends on BUSYBOX_FEATURE_IP_ROUTE
  574. help
  575. Location of the "ip" applet routing configuration.
  576. config BUSYBOX_FEATURE_IP_TUNNEL
  577. bool "ip tunnel"
  578. default n
  579. depends on BUSYBOX_IP
  580. help
  581. Add support for tunneling commands to "ip".
  582. config BUSYBOX_FEATURE_IP_RULE
  583. bool "ip rule"
  584. default n
  585. depends on BUSYBOX_IP
  586. help
  587. Add support for rule commands to "ip".
  588. config BUSYBOX_FEATURE_IP_NEIGH
  589. bool "ip neighbor"
  590. default n
  591. depends on BUSYBOX_IP
  592. help
  593. Add support for neighbor commands to "ip".
  594. config BUSYBOX_FEATURE_IP_SHORT_FORMS
  595. bool "Support short forms of ip commands"
  596. default n
  597. depends on BUSYBOX_IP
  598. help
  599. Also support short-form of ip <OBJECT> commands:
  600. ip addr -> ipaddr
  601. ip link -> iplink
  602. ip route -> iproute
  603. ip tunnel -> iptunnel
  604. ip rule -> iprule
  605. Say N unless you desparately need the short form of the ip
  606. object commands.
  607. config BUSYBOX_FEATURE_IP_RARE_PROTOCOLS
  608. bool "Support displaying rarely used link types"
  609. default n
  610. depends on BUSYBOX_IP
  611. help
  612. If you are not going to use links of type "frad", "econet",
  613. "bif" etc, you probably don't need to enable this.
  614. Ethernet, wireless, infrared, ppp/slip, ip tunnelling
  615. link types are supported without this option selected.
  616. config BUSYBOX_IPADDR
  617. bool
  618. default n
  619. depends on BUSYBOX_FEATURE_IP_SHORT_FORMS && BUSYBOX_FEATURE_IP_ADDRESS
  620. config BUSYBOX_IPLINK
  621. bool
  622. default n
  623. depends on BUSYBOX_FEATURE_IP_SHORT_FORMS && BUSYBOX_FEATURE_IP_LINK
  624. config BUSYBOX_IPROUTE
  625. bool
  626. default n
  627. depends on BUSYBOX_FEATURE_IP_SHORT_FORMS && BUSYBOX_FEATURE_IP_ROUTE
  628. config BUSYBOX_IPTUNNEL
  629. bool
  630. default n
  631. depends on BUSYBOX_FEATURE_IP_SHORT_FORMS && BUSYBOX_FEATURE_IP_TUNNEL
  632. config BUSYBOX_IPRULE
  633. bool
  634. default n
  635. depends on BUSYBOX_FEATURE_IP_SHORT_FORMS && BUSYBOX_FEATURE_IP_RULE
  636. config BUSYBOX_IPCALC
  637. bool "ipcalc"
  638. default n
  639. help
  640. ipcalc takes an IP address and netmask and calculates the
  641. resulting broadcast, network, and host range.
  642. config BUSYBOX_FEATURE_IPCALC_FANCY
  643. bool "Fancy IPCALC, more options, adds 1 kbyte"
  644. default y
  645. depends on BUSYBOX_IPCALC
  646. help
  647. Adds the options hostname, prefix and silent to the output of
  648. "ipcalc".
  649. config BUSYBOX_FEATURE_IPCALC_LONG_OPTIONS
  650. bool "Enable long options"
  651. default y
  652. depends on BUSYBOX_IPCALC && BUSYBOX_LONG_OPTS
  653. help
  654. Support long options for the ipcalc applet.
  655. config BUSYBOX_NETSTAT
  656. bool "netstat"
  657. default y if ADK_TARGET_WITH_NET
  658. select BUSYBOX_PLATFORM_LINUX
  659. help
  660. netstat prints information about the Linux networking subsystem.
  661. config BUSYBOX_FEATURE_NETSTAT_WIDE
  662. bool "Enable wide netstat output"
  663. default n
  664. depends on BUSYBOX_NETSTAT
  665. help
  666. Add support for wide columns. Useful when displaying IPv6 addresses
  667. (-W option).
  668. config BUSYBOX_FEATURE_NETSTAT_PRG
  669. bool "Enable PID/Program name output"
  670. default y
  671. depends on BUSYBOX_NETSTAT
  672. help
  673. Add support for -p flag to print out PID and program name.
  674. +700 bytes of code.
  675. config BUSYBOX_NSLOOKUP
  676. bool "nslookup"
  677. default y if ADK_TARGET_WITH_NET
  678. help
  679. nslookup is a tool to query Internet name servers.
  680. config BUSYBOX_NTPD
  681. bool "ntpd"
  682. depends on !BUSYBOX_DISABLE_NTPD
  683. default n
  684. select BUSYBOX_PLATFORM_LINUX
  685. help
  686. The NTP client/server daemon.
  687. config BUSYBOX_FEATURE_NTPD_SERVER
  688. bool "Make ntpd usable as a NTP server"
  689. default n
  690. depends on !BUSYBOX_DISABLE_NTPD
  691. depends on BUSYBOX_NTPD
  692. help
  693. Make ntpd usable as a NTP server. If you disable this option
  694. ntpd will be usable only as a NTP client.
  695. config BUSYBOX_FEATURE_NTPD_CONF
  696. bool "Make ntpd understand /etc/ntp.conf"
  697. default n
  698. depends on BUSYBOX_NTPD
  699. help
  700. Make ntpd look in /etc/ntp.conf for peers. Only "server address"
  701. is supported.
  702. config BUSYBOX_PSCAN
  703. bool "pscan"
  704. default n
  705. help
  706. Simple network port scanner.
  707. config BUSYBOX_ROUTE
  708. bool "route"
  709. default y if ADK_TARGET_WITH_NET
  710. select BUSYBOX_PLATFORM_LINUX
  711. help
  712. Route displays or manipulates the kernel's IP routing tables.
  713. config BUSYBOX_SLATTACH
  714. bool "slattach"
  715. default n
  716. select BUSYBOX_PLATFORM_LINUX
  717. help
  718. slattach is a small utility to attach network interfaces to serial
  719. lines.
  720. #config TC
  721. # bool "tc"
  722. # default y
  723. # help
  724. # show / manipulate traffic control settings
  725. #
  726. #config FEATURE_TC_INGRESS
  727. # def_bool n
  728. # depends on BUSYBOX_TC
  729. config BUSYBOX_TCPSVD
  730. bool "tcpsvd"
  731. default n
  732. help
  733. tcpsvd listens on a TCP port and runs a program for each new
  734. connection.
  735. config BUSYBOX_TELNET
  736. bool "telnet"
  737. default y if ADK_TARGET_WITH_NET
  738. help
  739. Telnet is an interface to the TELNET protocol, but is also commonly
  740. used to test other simple protocols.
  741. config BUSYBOX_FEATURE_TELNET_TTYPE
  742. bool "Pass TERM type to remote host"
  743. default y
  744. depends on BUSYBOX_TELNET
  745. help
  746. Setting this option will forward the TERM environment variable to the
  747. remote host you are connecting to. This is useful to make sure that
  748. things like ANSI colors and other control sequences behave.
  749. config BUSYBOX_FEATURE_TELNET_AUTOLOGIN
  750. bool "Pass USER type to remote host"
  751. default y
  752. depends on BUSYBOX_TELNET
  753. help
  754. Setting this option will forward the USER environment variable to the
  755. remote host you are connecting to. This is useful when you need to
  756. log into a machine without telling the username (autologin). This
  757. option enables `-a' and `-l USER' arguments.
  758. config BUSYBOX_TELNETD
  759. bool "telnetd"
  760. default n
  761. select BUSYBOX_FEATURE_SYSLOG
  762. help
  763. A daemon for the TELNET protocol, allowing you to log onto the host
  764. running the daemon. Please keep in mind that the TELNET protocol
  765. sends passwords in plain text. If you can't afford the space for an
  766. SSH daemon and you trust your network, you may say 'y' here. As a
  767. more secure alternative, you should seriously consider installing the
  768. very small Dropbear SSH daemon instead:
  769. http://matt.ucc.asn.au/dropbear/dropbear.html
  770. Note that for busybox telnetd to work you need several things:
  771. First of all, your kernel needs:
  772. UNIX98_PTYS=y
  773. DEVPTS_FS=y
  774. Next, you need a /dev/pts directory on your root filesystem:
  775. $ ls -ld /dev/pts
  776. drwxr-xr-x 2 root root 0 Sep 23 13:21 /dev/pts/
  777. Next you need the pseudo terminal master multiplexer /dev/ptmx:
  778. $ ls -la /dev/ptmx
  779. crw-rw-rw- 1 root tty 5, 2 Sep 23 13:55 /dev/ptmx
  780. Any /dev/ttyp[0-9]* files you may have can be removed.
  781. Next, you need to mount the devpts filesystem on /dev/pts using:
  782. mount -t devpts devpts /dev/pts
  783. You need to be sure that busybox has LOGIN and
  784. FEATURE_SUID enabled. And finally, you should make
  785. certain that Busybox has been installed setuid root:
  786. chown root.root /bin/busybox
  787. chmod 4755 /bin/busybox
  788. with all that done, telnetd _should_ work....
  789. config BUSYBOX_FEATURE_TELNETD_STANDALONE
  790. bool "Support standalone telnetd (not inetd only)"
  791. default y
  792. depends on BUSYBOX_TELNETD
  793. help
  794. Selecting this will make telnetd able to run standalone.
  795. config BUSYBOX_FEATURE_TELNETD_INETD_WAIT
  796. bool "Support -w SEC option (inetd wait mode)"
  797. default y
  798. depends on BUSYBOX_FEATURE_TELNETD_STANDALONE
  799. help
  800. This option allows you to run telnetd in "inet wait" mode.
  801. Example inetd.conf line (note "wait", not usual "nowait"):
  802. telnet stream tcp wait root /bin/telnetd telnetd -w10
  803. In this example, inetd passes _listening_ socket_ as fd 0
  804. to telnetd when connection appears.
  805. telnetd will wait for connections until all existing
  806. connections are closed, and no new connections
  807. appear during 10 seconds. Then it exits, and inetd continues
  808. to listen for new connections.
  809. This option is rarely used. "tcp nowait" is much more usual
  810. way of running tcp services, including telnetd.
  811. You most probably want to say N here.
  812. config BUSYBOX_TFTP
  813. bool "tftp"
  814. default n
  815. help
  816. This enables the Trivial File Transfer Protocol client program. TFTP
  817. is usually used for simple, small transfers such as a root image
  818. for a network-enabled bootloader.
  819. config BUSYBOX_TFTPD
  820. bool "tftpd"
  821. default n
  822. help
  823. This enables the Trivial File Transfer Protocol server program.
  824. It expects that stdin is a datagram socket and a packet
  825. is already pending on it. It will exit after one transfer.
  826. In other words: it should be run from inetd in nowait mode,
  827. or from udpsvd. Example: "udpsvd -E 0 69 tftpd DIR"
  828. comment "Common options for tftp/tftpd"
  829. depends on BUSYBOX_TFTP || BUSYBOX_TFTPD
  830. config BUSYBOX_FEATURE_TFTP_GET
  831. bool "Enable 'tftp get' and/or tftpd upload code"
  832. default y
  833. depends on BUSYBOX_TFTP || BUSYBOX_TFTPD
  834. help
  835. Add support for the GET command within the TFTP client. This allows
  836. a client to retrieve a file from a TFTP server.
  837. Also enable upload support in tftpd, if tftpd is selected.
  838. Note: this option does _not_ make tftpd capable of download
  839. (the usual operation people need from it)!
  840. config BUSYBOX_FEATURE_TFTP_PUT
  841. bool "Enable 'tftp put' and/or tftpd download code"
  842. default y
  843. depends on BUSYBOX_TFTP || BUSYBOX_TFTPD
  844. help
  845. Add support for the PUT command within the TFTP client. This allows
  846. a client to transfer a file to a TFTP server.
  847. Also enable download support in tftpd, if tftpd is selected.
  848. config BUSYBOX_FEATURE_TFTP_BLOCKSIZE
  849. bool "Enable 'blksize' and 'tsize' protocol options"
  850. default y
  851. depends on BUSYBOX_TFTP || BUSYBOX_TFTPD
  852. help
  853. Allow tftp to specify block size, and tftpd to understand
  854. "blksize" and "tsize" options.
  855. config BUSYBOX_FEATURE_TFTP_PROGRESS_BAR
  856. bool "Enable tftp progress meter"
  857. default y
  858. depends on BUSYBOX_TFTP && BUSYBOX_FEATURE_TFTP_BLOCKSIZE
  859. help
  860. Show progress bar.
  861. config BUSYBOX_TFTP_DEBUG
  862. bool "Enable debug"
  863. default n
  864. depends on BUSYBOX_TFTP || BUSYBOX_TFTPD
  865. help
  866. Make tftp[d] print debugging messages on stderr.
  867. This is useful if you are diagnosing a bug in tftp[d].
  868. config BUSYBOX_TRACEROUTE
  869. bool "traceroute"
  870. default n
  871. select BUSYBOX_PLATFORM_LINUX
  872. help
  873. Utility to trace the route of IP packets.
  874. config BUSYBOX_TRACEROUTE6
  875. bool "traceroute6"
  876. default n
  877. depends on BUSYBOX_FEATURE_IPV6 && BUSYBOX_TRACEROUTE
  878. help
  879. Utility to trace the route of IPv6 packets.
  880. config BUSYBOX_FEATURE_TRACEROUTE_VERBOSE
  881. bool "Enable verbose output"
  882. default y
  883. depends on BUSYBOX_TRACEROUTE
  884. help
  885. Add some verbosity to traceroute. This includes among other things
  886. hostnames and ICMP response types.
  887. config BUSYBOX_FEATURE_TRACEROUTE_SOURCE_ROUTE
  888. bool "Enable loose source route"
  889. default n
  890. depends on BUSYBOX_TRACEROUTE
  891. help
  892. Add option to specify a loose source route gateway
  893. (8 maximum).
  894. config BUSYBOX_FEATURE_TRACEROUTE_USE_ICMP
  895. bool "Use ICMP instead of UDP"
  896. default n
  897. depends on BUSYBOX_TRACEROUTE
  898. help
  899. Add option -I to use ICMP ECHO instead of UDP datagrams.
  900. config BUSYBOX_TUNCTL
  901. bool "tunctl"
  902. default n
  903. select BUSYBOX_PLATFORM_LINUX
  904. help
  905. tunctl creates or deletes tun devices.
  906. config BUSYBOX_FEATURE_TUNCTL_UG
  907. bool "Support owner:group assignment"
  908. default y
  909. depends on BUSYBOX_TUNCTL
  910. help
  911. Allow to specify owner and group of newly created interface.
  912. 340 bytes of pure bloat. Say no here.
  913. source package/busybox/config/networking/udhcp/Config.in
  914. config BUSYBOX_IFUPDOWN_UDHCPC_CMD_OPTIONS
  915. string "ifup udhcpc command line options"
  916. default "-R" if BUSYBOX_NOMMU
  917. default "-R -b"
  918. depends on BUSYBOX_IFUP && BUSYBOX_UDHCPC
  919. help
  920. Command line options to pass to udhcpc from ifup.
  921. Intended to alter options not available in /etc/network/interfaces.
  922. (IE: --syslog --background etc...)
  923. config BUSYBOX_UDPSVD
  924. bool "udpsvd"
  925. default n
  926. help
  927. udpsvd listens on an UDP port and runs a program for each new
  928. connection.
  929. config BUSYBOX_VCONFIG
  930. bool "vconfig"
  931. default n
  932. select BUSYBOX_PLATFORM_LINUX
  933. help
  934. Creates, removes, and configures VLAN interfaces
  935. config BUSYBOX_WGET
  936. bool "wget"
  937. depends on !BUSYBOX_DISABLE_WGET
  938. default n
  939. help
  940. wget is a utility for non-interactive download of files from HTTP,
  941. HTTPS, and FTP servers.
  942. config BUSYBOX_FEATURE_WGET_STATUSBAR
  943. bool "Enable a nifty process meter (+2k)"
  944. default n
  945. depends on BUSYBOX_WGET
  946. help
  947. Enable the transfer progress bar for wget transfers.
  948. config BUSYBOX_FEATURE_WGET_AUTHENTICATION
  949. bool "Enable HTTP authentication"
  950. default y
  951. depends on BUSYBOX_WGET
  952. help
  953. Support authenticated HTTP transfers.
  954. config BUSYBOX_FEATURE_WGET_LONG_OPTIONS
  955. bool "Enable long options"
  956. default y
  957. depends on BUSYBOX_WGET && BUSYBOX_LONG_OPTS
  958. help
  959. Support long options for the wget applet.
  960. config BUSYBOX_FEATURE_WGET_TIMEOUT
  961. bool "Enable read timeout option -T SEC"
  962. default y
  963. depends on BUSYBOX_WGET
  964. help
  965. Supports network read timeout for wget, so that wget will give
  966. up and timeout when reading network data, through the -T command
  967. line option. Currently only network data read timeout is
  968. supported (i.e., timeout is not applied to the DNS nor TCP
  969. connection initialization). When FEATURE_WGET_LONG_OPTIONS is
  970. also enabled, the --timeout option will work in addition to -T.
  971. config BUSYBOX_FEATURE_WGET_OPENSSL
  972. bool "Try to connect to HTTPS using openssl"
  973. default n
  974. depends on BUSYBOX_WGET
  975. help
  976. Choose how wget establishes SSL connection for https:// URLs.
  977. Busybox itself contains no SSL code. wget will spawn
  978. a helper program to talk over HTTPS.
  979. OpenSSL has a simple SSL client for debug purposes.
  980. If you select "openssl" helper, wget will effectively call
  981. "openssl s_client -quiet -connect IP:443 2>/dev/null"
  982. and pipe its data through it.
  983. Note inconvenient API: host resolution is done twice,
  984. and there is no guarantee openssl's idea of IPv6 address
  985. format is the same as ours.
  986. Another problem is that s_client prints debug information
  987. to stderr, and it needs to be suppressed. This means
  988. all error messages get suppressed too.
  989. openssl is also a big binary, often dynamically linked
  990. against ~15 libraries.
  991. config BUSYBOX_FEATURE_WGET_SSL_HELPER
  992. bool "Try to connect to HTTPS using ssl_helper"
  993. default n
  994. depends on BUSYBOX_WGET
  995. help
  996. Choose how wget establishes SSL connection for https:// URLs.
  997. Busybox itself contains no SSL code. wget will spawn
  998. a helper program to talk over HTTPS.
  999. ssl_helper is a tool which can be built statically
  1000. from busybox sources against a small embedded SSL library.
  1001. Please see networking/ssl_helper/README.
  1002. It does not require double host resolution and emits
  1003. error messages to stderr.
  1004. Precompiled static binary may be available at
  1005. http://busybox.net/downloads/binaries/
  1006. config BUSYBOX_ZCIP
  1007. bool "zcip"
  1008. default n
  1009. select BUSYBOX_PLATFORM_LINUX
  1010. select BUSYBOX_FEATURE_SYSLOG
  1011. help
  1012. ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
  1013. It's a daemon that allocates and defends a dynamically assigned
  1014. address on the 169.254/16 network, requiring no system administrator.
  1015. See http://www.zeroconf.org for further details, and "zcip.script"
  1016. in the busybox examples.
  1017. endmenu