Config.in 28 KB

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