summaryrefslogtreecommitdiff
path: root/Config.in (follow)
Commit message (Collapse)AuthorAgeFilesLines
* grep: option to use GNU regex matching instead of POSIX one.Denis Vlasenko2008-08-091-0/+9
| | | | | | This fixes problems with NULs in files being scanned, but costs +800 bytes. The same can be done to sed (TODO).
* - wrap overlong lines (Cristian Ionescu-Idbohrn)Bernhard Reutner-Fischer2008-07-221-38/+42
| | | | - s/\. /. /g;# (me)
* libbb: config_read() updateDenis Vlasenko2008-07-191-4/+0
|
* libbb: updated config_parse() from VladimirDenis Vlasenko2008-07-191-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | function old new delta config_read 385 460 +75 runsvdir_main 1701 1716 +15 readit 331 338 +7 passwd_main 1049 1053 +4 parse_command 1504 1507 +3 decode_format_string 822 824 +2 bb__parsespent 117 119 +2 udhcp_get_option 221 222 +1 changepath 196 194 -2 parse_inittab 400 396 -4 nameif_main 683 679 -4 make_device 1176 1172 -4 config_open 48 40 -8 expand_main 698 689 -9 readcmd 1012 1002 -10 config_free_data 37 21 -16 SynchronizeFile 683 643 -40 sleep_main 474 362 -112 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 8/10 up/down: 109/-209) Total: -100 bytes
* config help fixesDenis Vlasenko2008-07-161-1/+1
|
* build system: libbusybox cannot be staticDenis Vlasenko2008-07-091-3/+3
|
* fix breakage found by randomconfigDenis Vlasenko2008-06-231-1/+3
|
* build system: introduce FEATURE_ASSUME_UNICODEDenis Vlasenko2008-06-131-0/+12
| | | | | | | | | | | | | | | | | | | | | ls: use it. also do G trick. with UNICODE off: function old new delta ls_main 843 871 +28 show_color 1 - -1 showdirs 500 497 -3 my_stat 100 97 -3 terminal_width 4 - -4 tabstops 4 - -4 status 122 118 -4 static.dotdir 4 - -4 current_time_t 4 - -4 all_fmt 4 - -4 ------------------------------------------------------------------------------ (add/remove: 0/6 grow/shrink: 1/3 up/down: 28/-31) Total: -3 bytes Also was tested with UNICODE on with glibc.
* Reinstate DEBUG_PESSIMIZE (by Christian Ionescu-Idbohrn)Denis Vlasenko2008-06-121-12/+11
|
* build system: add PIE build optionDenis Vlasenko2008-06-041-0/+8
|
* Reinstate CONFIG_CROSS_COMPILE_PREFIXDenis Vlasenko2008-06-021-0/+10
|
* Kill CONFIG_NITPICK, it turned out to not be useful. no code changes.Denis Vlasenko2008-05-131-18/+0
|
* *: mode tcp/udpsvd to networking, delete ipsvd/*Denis Vlasenko2008-03-171-2/+1
| | | | | | | | | | | | | | */Config.in: fixes to text svlogd: make it NOMMU capable function old new delta processorstart 378 420 +42 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/0 up/down: 42/0) Total: 42 bytes text data bss dec hex filename 797153 662 7420 805235 c4973 busybox_old 797196 662 7420 805278 c499e busybox_unstripped
* lpr and lpq applets by Walter Harms.Denis Vlasenko2008-02-221-0/+1
| | | | | | | | text data bss dec hex filename 392 0 0 392 188 lpq.o 1378 0 0 1378 562 lpr.o 142 0 0 142 8e parse_prt.o
* hush: report [v]fork failuresDenis Vlasenko2008-01-081-0/+11
| | | | | | hush: more correct handling of piping config: add CONFIG_NOMMU
* Announce 1.8.01_8_0Denis Vlasenko2007-11-041-2/+2
|
* libbusybox: move (possibly compressed) help stuff into libbusybox.Denis Vlasenko2007-10-071-6/+7
| | | | | Makes individual binaries much smaller.
* reviving libbusybox, adding CONFIG_INDIVIDUAL part 4Denis Vlasenko2007-10-071-13/+33
|
* reviving libbusybox, adding CONFIG_INDIVIDUAL part 3Denis Vlasenko2007-10-071-38/+37
|
* support "#!/bin/busybox"-style wrappers. Needed for SELinux.Denis Vlasenko2007-08-251-0/+29
| | | | | Patch by Yuichi Nakamura <ynakam@hitachisoft.jp>
* if pidfile turned out to be !regular file, do not unlink it.Denis Vlasenko2007-08-151-1/+1
| | | | | It's most probably the /dev/null.
* make FEATURE_HAVE_RPC auto-selectable by mount and inetd sub-featuresDenis Vlasenko2007-06-161-18/+18
|
* tail: fix SEGV on "tail -N"Denis Vlasenko2007-05-081-2/+7
| | | | | config system: clarify PREFER_APPLETS/SH_STANDALONE effects in help text
* Rename two config options:Denis Vlasenko2007-04-101-3/+3
| | | | | | | FEATURE_SH_STANDALONE_SHELL => FEATURE_SH_STANDALONE FEATURE_EXEC_PREFER_APPLETS => FEATURE_PREFER_APPLETS Make SH_STANDALONE depend on PREFER_APPLETS. getopt.c: more randomconfig-induced fixes
* Implement first instance of NOFORK applet - echoDenis Vlasenko2007-04-091-1/+2
| | | | | | | | | find: use NOFORK/NOEXEC; small -exec buglet also eliminated vfork_daemon_rexec: honor PREFER_APPLETS echo: small size improvements find -exec echo {} \; with PREFER_APPLETS=y runs 4 times faster
* tcpsvd: new appletDenis Vlasenko2007-04-011-0/+1
| | | | | | | | | | It's a GPL-ed 'clone' of Dan Bernstein's tcpserver. Author: Gerrit Pape <pape@smarden.org> http://smarden.sunsite.dk/ipsvd/ size tcpsvd.o text data bss dec hex filename 2571 4 16 2591 a1f tcpsvd.o
* - reinstate dmalloc and efence supportBernhard Reutner-Fischer2007-03-281-1/+0
|
* make pidfile writing configurable.Denis Vlasenko2007-03-271-0/+7
| | | | [ui]toa_to_buf: change API. No users yet.
* new applets: selinux utils by KaiGai Kohei <kaigai@kaigai.gr.jp>Denis Vlasenko2007-02-061-0/+1
|
* Make -Werror configurableDenis Vlasenko2007-01-271-8/+17
|
* combine bool;prompt to just boolMike Frysinger2007-01-241-2/+1
|
* correct file format errorsMike Frysinger2007-01-241-19/+19
|
* Introduce FEATURE_EXEC_PREFER_APPLETS = "re-execute our ownDenis Vlasenko2007-01-211-1/+9
| | | | | | executable if we asked to exec someting with argv[0] == known_applet" Use it in init. Also respect PATH in init, remove explicit "/sbin" etc from exec. Patch by Gabriel L. Somlo <somlo@cmu.edu>
* adduser: trivial code movementDenis Vlasenko2006-12-261-1/+1
|
* convert "negaite" config option into reversed (INCLUDE_SUSv2)Denis Vlasenko2006-12-221-5/+5
|
* - provide central knob to turn off RPC related options.Bernhard Reutner-Fischer2006-12-011-0/+8
|
* fix support for globally disabling --long-options.Denis Vlasenko2006-11-291-6/+4
| | | | (disabling them saves ~4K on fully configured bbox)
* - typo fixBernhard Reutner-Fischer2006-11-171-2/+2
|
* build system overhaulDenis Vlasenko2006-10-051-52/+52
|
* runit/chpst: "change process state" utilityDenis Vlasenko2006-10-031-0/+1
| | | | It's "nice" on steroids - can set uid/gid, mem/cpu limits etc. +3.5k
* g[un]zip: add support for -v (verbose).Denis Vlasenko2006-10-011-0/+8
| | | | | Add CONFIG_DESKTOP, almost all bloat from this change is hidden under that.
* Add CONFIG_FEATURE_SYSLOG which controls whetherDenis Vlasenko2006-09-071-0/+7
| | | | | | | | bb_xx_msg will ever try to send output to syslog. Add "select CONFIG_FEATURE_SYSLOG" to relevant applets. This allows to omit syslog code if we do not have any syslog-capable applets in the build.
* CONFIG_FEATURE_COMPRESS_USAGE was impossible to turn onDenis Vlasenko2006-09-071-1/+1
| | | | | if !CONFIG_NITPICK
* - Pull r15593:Bernhard Reutner-Fischer2006-07-041-18/+0
| | | | Rename to CROSS_COMPILE and move its configuration to .config.mak. (Shaun Jackman)
* Patch from Shaun Jackman to replace CFLAGS_EXTRA with .config.makRob Landley2006-06-221-9/+0
|
* - hide CONFIG_GETOPT_LONG for the 1.2.0 release. Turned on per default.Bernhard Reutner-Fischer2006-06-161-5/+7
| | | | I will revisit this and make sure that run-parts and ifupdown are fixed; hdparm needs treatment too..
* Help text update for libbb, talking about make standalone.Rob Landley2006-06-151-1/+5
|
* - there is no "CONFIG_STANDALONE" in the repository. Also iff there was a Bernhard Reutner-Fischer2006-06-141-1/+1
| | | | CONFIG_STANDALONE, we'd need to toggle this on per default.
* Attempt at fixing bug 815 by upgrading bb_spawn() so that builtins are atRob Landley2006-06-141-4/+22
| | | | | | | | the start of the path. (This should be under the same config option as the standalone shell, but right now that's buried in the shell menu.) Also add the ability to specify CONFIG_BUSYBOX_EXEC_PATH with /proc/self/exe as an overrideable default.
* Consolidate devfs garbage and mark it as obsolete.Rob Landley2006-06-071-11/+0
|