Config.in 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147
  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_LINUX_KERNEL_BONDING m if ADK_TARGET_OS_LINUX
  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_IFCONFIG_BUILTIN
  440. bool "Use busybox ifconfig and route applets"
  441. default n
  442. depends on BUSYBOX_IFUP && !BUSYBOX_FEATURE_IFUPDOWN_IP
  443. select BUSYBOX_IFCONFIG
  444. select BUSYBOX_ROUTE
  445. help
  446. Use the busybox iproute "ifconfig" and "route" applets to
  447. implement the "ifup" and "ifdown" utilities.
  448. If left disabled, you must install the full-blown ifconfig
  449. and route utilities, or the "ifup" and "ifdown" applets will not
  450. work.
  451. config BUSYBOX_FEATURE_IFUPDOWN_IPV4
  452. bool "Support for IPv4"
  453. default y
  454. depends on BUSYBOX_IFUP
  455. help
  456. If you want ifup/ifdown to talk IPv4, leave this on.
  457. config BUSYBOX_FEATURE_IFUPDOWN_IPV6
  458. bool "Support for IPv6"
  459. default y
  460. depends on BUSYBOX_IFUP && BUSYBOX_FEATURE_IPV6
  461. help
  462. If you need support for IPv6, turn this option on.
  463. ### UNUSED
  464. ###config FEATURE_IFUPDOWN_IPX
  465. ### bool "Support for IPX"
  466. ### default y
  467. ### depends on BUSYBOX_IFUPDOWN
  468. ### help
  469. ### If this option is selected you can use busybox to work with IPX
  470. ### networks.
  471. config BUSYBOX_FEATURE_IFUPDOWN_MAPPING
  472. bool "Enable mapping support"
  473. default n
  474. depends on BUSYBOX_IFUP
  475. help
  476. This enables support for the "mapping" stanza, unless you have
  477. a weird network setup you don't need it.
  478. config BUSYBOX_FEATURE_IFUPDOWN_EXTERNAL_DHCP
  479. bool "Support for external dhcp clients"
  480. default n
  481. depends on BUSYBOX_IFUP
  482. help
  483. This enables support for the external dhcp clients. Clients are
  484. tried in the following order: dhcpcd, dhclient, pump and udhcpc.
  485. Otherwise, if udhcpc applet is enabled, it is used.
  486. Otherwise, ifup/ifdown will have no support for DHCP.
  487. config BUSYBOX_INETD
  488. bool "inetd"
  489. default n
  490. select BUSYBOX_FEATURE_SYSLOG
  491. help
  492. Internet superserver daemon
  493. config BUSYBOX_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
  494. bool "Support echo service"
  495. default y
  496. depends on BUSYBOX_INETD
  497. help
  498. Echo received data internal inetd service
  499. config BUSYBOX_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
  500. bool "Support discard service"
  501. default y
  502. depends on BUSYBOX_INETD
  503. help
  504. Internet /dev/null internal inetd service
  505. config BUSYBOX_FEATURE_INETD_SUPPORT_BUILTIN_TIME
  506. bool "Support time service"
  507. default y
  508. depends on BUSYBOX_INETD
  509. help
  510. Return 32 bit time since 1900 internal inetd service
  511. config BUSYBOX_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
  512. bool "Support daytime service"
  513. default y
  514. depends on BUSYBOX_INETD
  515. help
  516. Return human-readable time internal inetd service
  517. config BUSYBOX_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
  518. bool "Support chargen service"
  519. default y
  520. depends on BUSYBOX_INETD
  521. help
  522. Familiar character generator internal inetd service
  523. config BUSYBOX_FEATURE_INETD_RPC
  524. bool "Support RPC services"
  525. default n
  526. depends on BUSYBOX_INETD
  527. select BUSYBOX_FEATURE_HAVE_RPC
  528. help
  529. Support Sun-RPC based services
  530. config BUSYBOX_IP
  531. bool "ip"
  532. depends on !BUSYBOX_DISABLE_IP
  533. default y if ADK_TARGET_WITH_NET
  534. select BUSYBOX_PLATFORM_LINUX
  535. help
  536. The "ip" applet is a TCP/IP interface configuration and routing
  537. utility. You generally don't need "ip" to use busybox with
  538. TCP/IP.
  539. config BUSYBOX_FEATURE_IP_ADDRESS
  540. bool "ip address"
  541. default y
  542. depends on BUSYBOX_IP
  543. help
  544. Address manipulation support for the "ip" applet.
  545. config BUSYBOX_FEATURE_IP_LINK
  546. bool "ip link"
  547. default y
  548. depends on BUSYBOX_IP
  549. help
  550. Configure network devices with "ip".
  551. config BUSYBOX_FEATURE_IP_ROUTE
  552. bool "ip route"
  553. default y
  554. depends on BUSYBOX_IP
  555. help
  556. Add support for routing table management to "ip".
  557. config BUSYBOX_FEATURE_IP_ROUTE_DIR
  558. string "ip route configuration directory"
  559. default "/etc/iproute2"
  560. depends on BUSYBOX_FEATURE_IP_ROUTE
  561. help
  562. Location of the "ip" applet routing configuration.
  563. config BUSYBOX_FEATURE_IP_TUNNEL
  564. bool "ip tunnel"
  565. default n
  566. depends on BUSYBOX_IP
  567. help
  568. Add support for tunneling commands to "ip".
  569. config BUSYBOX_FEATURE_IP_RULE
  570. bool "ip rule"
  571. default n
  572. depends on BUSYBOX_IP
  573. help
  574. Add support for rule commands to "ip".
  575. config BUSYBOX_FEATURE_IP_NEIGH
  576. bool "ip neighbor"
  577. default n
  578. depends on BUSYBOX_IP
  579. help
  580. Add support for neighbor commands to "ip".
  581. config BUSYBOX_FEATURE_IP_RARE_PROTOCOLS
  582. bool "Support displaying rarely used link types"
  583. default n
  584. depends on BUSYBOX_IP
  585. help
  586. If you are not going to use links of type "frad", "econet",
  587. "bif" etc, you probably don't need to enable this.
  588. Ethernet, wireless, infrared, ppp/slip, ip tunnelling
  589. link types are supported without this option selected.
  590. config BUSYBOX_IPADDR
  591. bool
  592. default n
  593. config BUSYBOX_IPLINK
  594. bool
  595. default n
  596. config BUSYBOX_IPROUTE
  597. bool
  598. default n
  599. config BUSYBOX_IPTUNNEL
  600. bool
  601. default n
  602. config BUSYBOX_IPRULE
  603. bool
  604. default n
  605. config BUSYBOX_IPNEIGH
  606. bool
  607. default n
  608. config BUSYBOX_IPCALC
  609. bool "ipcalc"
  610. default n
  611. help
  612. ipcalc takes an IP address and netmask and calculates the
  613. resulting broadcast, network, and host range.
  614. config BUSYBOX_FEATURE_IPCALC_FANCY
  615. bool "Fancy IPCALC, more options, adds 1 kbyte"
  616. default y
  617. depends on BUSYBOX_IPCALC
  618. help
  619. Adds the options hostname, prefix and silent to the output of
  620. "ipcalc".
  621. config BUSYBOX_FEATURE_IPCALC_LONG_OPTIONS
  622. bool "Enable long options"
  623. default y
  624. depends on BUSYBOX_IPCALC && BUSYBOX_LONG_OPTS
  625. help
  626. Support long options for the ipcalc applet.
  627. config BUSYBOX_NETSTAT
  628. bool "netstat"
  629. default y if ADK_TARGET_WITH_NET
  630. select BUSYBOX_PLATFORM_LINUX
  631. help
  632. netstat prints information about the Linux networking subsystem.
  633. config BUSYBOX_FEATURE_NETSTAT_WIDE
  634. bool "Enable wide netstat output"
  635. default n
  636. depends on BUSYBOX_NETSTAT
  637. help
  638. Add support for wide columns. Useful when displaying IPv6 addresses
  639. (-W option).
  640. config BUSYBOX_FEATURE_NETSTAT_PRG
  641. bool "Enable PID/Program name output"
  642. default y
  643. depends on BUSYBOX_NETSTAT
  644. help
  645. Add support for -p flag to print out PID and program name.
  646. +700 bytes of code.
  647. config BUSYBOX_NSLOOKUP
  648. bool "nslookup"
  649. default y if ADK_TARGET_WITH_NET
  650. help
  651. nslookup is a tool to query Internet name servers.
  652. config BUSYBOX_NTPD
  653. bool "ntpd"
  654. depends on !BUSYBOX_DISABLE_NTPD
  655. default n
  656. select BUSYBOX_PLATFORM_LINUX
  657. help
  658. The NTP client/server daemon.
  659. config BUSYBOX_FEATURE_NTPD_SERVER
  660. bool "Make ntpd usable as a NTP server"
  661. default n
  662. depends on !BUSYBOX_DISABLE_NTPD
  663. depends on BUSYBOX_NTPD
  664. help
  665. Make ntpd usable as a NTP server. If you disable this option
  666. ntpd will be usable only as a NTP client.
  667. config BUSYBOX_FEATURE_NTPD_CONF
  668. bool "Make ntpd understand /etc/ntp.conf"
  669. default n
  670. depends on BUSYBOX_NTPD
  671. help
  672. Make ntpd look in /etc/ntp.conf for peers. Only "server address"
  673. is supported.
  674. config BUSYBOX_PSCAN
  675. bool "pscan"
  676. default n
  677. help
  678. Simple network port scanner.
  679. config BUSYBOX_ROUTE
  680. bool "route"
  681. default y if ADK_TARGET_WITH_NET
  682. select BUSYBOX_PLATFORM_LINUX
  683. help
  684. Route displays or manipulates the kernel's IP routing tables.
  685. config BUSYBOX_SLATTACH
  686. bool "slattach"
  687. default n
  688. select BUSYBOX_PLATFORM_LINUX
  689. help
  690. slattach is a small utility to attach network interfaces to serial
  691. lines.
  692. #config TC
  693. # bool "tc"
  694. # default y
  695. # help
  696. # show / manipulate traffic control settings
  697. #
  698. #config FEATURE_TC_INGRESS
  699. # def_bool n
  700. # depends on BUSYBOX_TC
  701. config BUSYBOX_TCPSVD
  702. bool "tcpsvd"
  703. default n
  704. help
  705. tcpsvd listens on a TCP port and runs a program for each new
  706. connection.
  707. config BUSYBOX_TELNET
  708. bool "telnet"
  709. default y if ADK_TARGET_WITH_NET
  710. help
  711. Telnet is an interface to the TELNET protocol, but is also commonly
  712. used to test other simple protocols.
  713. config BUSYBOX_FEATURE_TELNET_TTYPE
  714. bool "Pass TERM type to remote host"
  715. default y
  716. depends on BUSYBOX_TELNET
  717. help
  718. Setting this option will forward the TERM environment variable to the
  719. remote host you are connecting to. This is useful to make sure that
  720. things like ANSI colors and other control sequences behave.
  721. config BUSYBOX_FEATURE_TELNET_AUTOLOGIN
  722. bool "Pass USER type to remote host"
  723. default y
  724. depends on BUSYBOX_TELNET
  725. help
  726. Setting this option will forward the USER environment variable to the
  727. remote host you are connecting to. This is useful when you need to
  728. log into a machine without telling the username (autologin). This
  729. option enables `-a' and `-l USER' arguments.
  730. config BUSYBOX_TELNETD
  731. bool "telnetd"
  732. default n
  733. select BUSYBOX_FEATURE_SYSLOG
  734. help
  735. A daemon for the TELNET protocol, allowing you to log onto the host
  736. running the daemon. Please keep in mind that the TELNET protocol
  737. sends passwords in plain text. If you can't afford the space for an
  738. SSH daemon and you trust your network, you may say 'y' here. As a
  739. more secure alternative, you should seriously consider installing the
  740. very small Dropbear SSH daemon instead:
  741. http://matt.ucc.asn.au/dropbear/dropbear.html
  742. Note that for busybox telnetd to work you need several things:
  743. First of all, your kernel needs:
  744. UNIX98_PTYS=y
  745. DEVPTS_FS=y
  746. Next, you need a /dev/pts directory on your root filesystem:
  747. $ ls -ld /dev/pts
  748. drwxr-xr-x 2 root root 0 Sep 23 13:21 /dev/pts/
  749. Next you need the pseudo terminal master multiplexer /dev/ptmx:
  750. $ ls -la /dev/ptmx
  751. crw-rw-rw- 1 root tty 5, 2 Sep 23 13:55 /dev/ptmx
  752. Any /dev/ttyp[0-9]* files you may have can be removed.
  753. Next, you need to mount the devpts filesystem on /dev/pts using:
  754. mount -t devpts devpts /dev/pts
  755. You need to be sure that busybox has LOGIN and
  756. FEATURE_SUID enabled. And finally, you should make
  757. certain that Busybox has been installed setuid root:
  758. chown root.root /bin/busybox
  759. chmod 4755 /bin/busybox
  760. with all that done, telnetd _should_ work....
  761. config BUSYBOX_FEATURE_TELNETD_STANDALONE
  762. bool "Support standalone telnetd (not inetd only)"
  763. default y
  764. depends on BUSYBOX_TELNETD
  765. help
  766. Selecting this will make telnetd able to run standalone.
  767. config BUSYBOX_FEATURE_TELNETD_INETD_WAIT
  768. bool "Support -w SEC option (inetd wait mode)"
  769. default y
  770. depends on BUSYBOX_FEATURE_TELNETD_STANDALONE
  771. help
  772. This option allows you to run telnetd in "inet wait" mode.
  773. Example inetd.conf line (note "wait", not usual "nowait"):
  774. telnet stream tcp wait root /bin/telnetd telnetd -w10
  775. In this example, inetd passes _listening_ socket_ as fd 0
  776. to telnetd when connection appears.
  777. telnetd will wait for connections until all existing
  778. connections are closed, and no new connections
  779. appear during 10 seconds. Then it exits, and inetd continues
  780. to listen for new connections.
  781. This option is rarely used. "tcp nowait" is much more usual
  782. way of running tcp services, including telnetd.
  783. You most probably want to say N here.
  784. config BUSYBOX_TFTP
  785. bool "tftp"
  786. default n
  787. help
  788. This enables the Trivial File Transfer Protocol client program. TFTP
  789. is usually used for simple, small transfers such as a root image
  790. for a network-enabled bootloader.
  791. config BUSYBOX_TFTPD
  792. bool "tftpd"
  793. default n
  794. help
  795. This enables the Trivial File Transfer Protocol server program.
  796. It expects that stdin is a datagram socket and a packet
  797. is already pending on it. It will exit after one transfer.
  798. In other words: it should be run from inetd in nowait mode,
  799. or from udpsvd. Example: "udpsvd -E 0 69 tftpd DIR"
  800. comment "Common options for tftp/tftpd"
  801. depends on BUSYBOX_TFTP || BUSYBOX_TFTPD
  802. config BUSYBOX_FEATURE_TFTP_GET
  803. bool "Enable 'tftp get' and/or tftpd upload code"
  804. default y
  805. depends on BUSYBOX_TFTP || BUSYBOX_TFTPD
  806. help
  807. Add support for the GET command within the TFTP client. This allows
  808. a client to retrieve a file from a TFTP server.
  809. Also enable upload support in tftpd, if tftpd is selected.
  810. Note: this option does _not_ make tftpd capable of download
  811. (the usual operation people need from it)!
  812. config BUSYBOX_FEATURE_TFTP_PUT
  813. bool "Enable 'tftp put' and/or tftpd download code"
  814. default y
  815. depends on BUSYBOX_TFTP || BUSYBOX_TFTPD
  816. help
  817. Add support for the PUT command within the TFTP client. This allows
  818. a client to transfer a file to a TFTP server.
  819. Also enable download support in tftpd, if tftpd is selected.
  820. config BUSYBOX_FEATURE_TFTP_BLOCKSIZE
  821. bool "Enable 'blksize' and 'tsize' protocol options"
  822. default y
  823. depends on BUSYBOX_TFTP || BUSYBOX_TFTPD
  824. help
  825. Allow tftp to specify block size, and tftpd to understand
  826. "blksize" and "tsize" options.
  827. config BUSYBOX_FEATURE_TFTP_PROGRESS_BAR
  828. bool "Enable tftp progress meter"
  829. default y
  830. depends on BUSYBOX_TFTP && BUSYBOX_FEATURE_TFTP_BLOCKSIZE
  831. help
  832. Show progress bar.
  833. config BUSYBOX_TFTP_DEBUG
  834. bool "Enable debug"
  835. default n
  836. depends on BUSYBOX_TFTP || BUSYBOX_TFTPD
  837. help
  838. Make tftp[d] print debugging messages on stderr.
  839. This is useful if you are diagnosing a bug in tftp[d].
  840. config BUSYBOX_TRACEROUTE
  841. bool "traceroute"
  842. default n
  843. select BUSYBOX_PLATFORM_LINUX
  844. help
  845. Utility to trace the route of IP packets.
  846. config BUSYBOX_TRACEROUTE6
  847. bool "traceroute6"
  848. default n
  849. depends on BUSYBOX_FEATURE_IPV6 && BUSYBOX_TRACEROUTE
  850. help
  851. Utility to trace the route of IPv6 packets.
  852. config BUSYBOX_FEATURE_TRACEROUTE_VERBOSE
  853. bool "Enable verbose output"
  854. default y
  855. depends on BUSYBOX_TRACEROUTE
  856. help
  857. Add some verbosity to traceroute. This includes among other things
  858. hostnames and ICMP response types.
  859. config BUSYBOX_FEATURE_TRACEROUTE_SOURCE_ROUTE
  860. bool "Enable loose source route"
  861. default n
  862. depends on BUSYBOX_TRACEROUTE
  863. help
  864. Add option to specify a loose source route gateway
  865. (8 maximum).
  866. config BUSYBOX_FEATURE_TRACEROUTE_USE_ICMP
  867. bool "Use ICMP instead of UDP"
  868. default n
  869. depends on BUSYBOX_TRACEROUTE
  870. help
  871. Add option -I to use ICMP ECHO instead of UDP datagrams.
  872. config BUSYBOX_TUNCTL
  873. bool "tunctl"
  874. default n
  875. select BUSYBOX_PLATFORM_LINUX
  876. help
  877. tunctl creates or deletes tun devices.
  878. config BUSYBOX_FEATURE_TUNCTL_UG
  879. bool "Support owner:group assignment"
  880. default y
  881. depends on BUSYBOX_TUNCTL
  882. help
  883. Allow to specify owner and group of newly created interface.
  884. 340 bytes of pure bloat. Say no here.
  885. source package/busybox/config/networking/udhcp/Config.in
  886. config BUSYBOX_IFUPDOWN_UDHCPC_CMD_OPTIONS
  887. string "ifup udhcpc command line options"
  888. default "-R" if BUSYBOX_NOMMU
  889. default "-R -b"
  890. depends on BUSYBOX_IFUP && BUSYBOX_UDHCPC
  891. help
  892. Command line options to pass to udhcpc from ifup.
  893. Intended to alter options not available in /etc/network/interfaces.
  894. (IE: --syslog --background etc...)
  895. config BUSYBOX_UDPSVD
  896. bool "udpsvd"
  897. default n
  898. help
  899. udpsvd listens on an UDP port and runs a program for each new
  900. connection.
  901. config BUSYBOX_VCONFIG
  902. bool "vconfig"
  903. default n
  904. select BUSYBOX_PLATFORM_LINUX
  905. help
  906. Creates, removes, and configures VLAN interfaces
  907. config BUSYBOX_WGET
  908. bool "wget"
  909. depends on !BUSYBOX_DISABLE_WGET
  910. default n
  911. help
  912. wget is a utility for non-interactive download of files from HTTP,
  913. HTTPS, and FTP servers.
  914. config BUSYBOX_FEATURE_WGET_STATUSBAR
  915. bool "Enable a nifty process meter (+2k)"
  916. default n
  917. depends on BUSYBOX_WGET
  918. help
  919. Enable the transfer progress bar for wget transfers.
  920. config BUSYBOX_FEATURE_WGET_AUTHENTICATION
  921. bool "Enable HTTP authentication"
  922. default y
  923. depends on BUSYBOX_WGET
  924. help
  925. Support authenticated HTTP transfers.
  926. config BUSYBOX_FEATURE_WGET_LONG_OPTIONS
  927. bool "Enable long options"
  928. default y
  929. depends on BUSYBOX_WGET && BUSYBOX_LONG_OPTS
  930. help
  931. Support long options for the wget applet.
  932. config BUSYBOX_FEATURE_WGET_TIMEOUT
  933. bool "Enable read timeout option -T SEC"
  934. default y
  935. depends on BUSYBOX_WGET
  936. help
  937. Supports network read timeout for wget, so that wget will give
  938. up and timeout when reading network data, through the -T command
  939. line option. Currently only network data read timeout is
  940. supported (i.e., timeout is not applied to the DNS nor TCP
  941. connection initialization). When FEATURE_WGET_LONG_OPTIONS is
  942. also enabled, the --timeout option will work in addition to -T.
  943. config BUSYBOX_FEATURE_WGET_OPENSSL
  944. bool "Try to connect to HTTPS using openssl"
  945. default n
  946. depends on BUSYBOX_WGET
  947. help
  948. Choose how wget establishes SSL connection for https:// URLs.
  949. Busybox itself contains no SSL code. wget will spawn
  950. a helper program to talk over HTTPS.
  951. OpenSSL has a simple SSL client for debug purposes.
  952. If you select "openssl" helper, wget will effectively call
  953. "openssl s_client -quiet -connect IP:443 2>/dev/null"
  954. and pipe its data through it.
  955. Note inconvenient API: host resolution is done twice,
  956. and there is no guarantee openssl's idea of IPv6 address
  957. format is the same as ours.
  958. Another problem is that s_client prints debug information
  959. to stderr, and it needs to be suppressed. This means
  960. all error messages get suppressed too.
  961. openssl is also a big binary, often dynamically linked
  962. against ~15 libraries.
  963. config BUSYBOX_FEATURE_WGET_SSL_HELPER
  964. bool "Try to connect to HTTPS using ssl_helper"
  965. default n
  966. depends on BUSYBOX_WGET
  967. help
  968. Choose how wget establishes SSL connection for https:// URLs.
  969. Busybox itself contains no SSL code. wget will spawn
  970. a helper program to talk over HTTPS.
  971. ssl_helper is a tool which can be built statically
  972. from busybox sources against a small embedded SSL library.
  973. Please see networking/ssl_helper/README.
  974. It does not require double host resolution and emits
  975. error messages to stderr.
  976. Precompiled static binary may be available at
  977. http://busybox.net/downloads/binaries/
  978. config BUSYBOX_ZCIP
  979. bool "zcip"
  980. default n
  981. select BUSYBOX_PLATFORM_LINUX
  982. select BUSYBOX_FEATURE_SYSLOG
  983. help
  984. ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
  985. It's a daemon that allocates and defends a dynamically assigned
  986. address on the 169.254/16 network, requiring no system administrator.
  987. See http://www.zeroconf.org for further details, and "zcip.script"
  988. in the busybox examples.
  989. endmenu