Config.in 30 KB

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