aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* do not tell people they can enter "help" if help has actually been disabledMike Frysinger2009-04-241-1/+3
|
* use get_local_var_value() rather than getenv() when working with ↵Mike Frysinger2009-04-241-8/+18
| | | | PS1/PS2/HOME, respect the PS2 env var, and make sure that the prompt changes whenever PS1/PS2 changes so we dont have to re-exec the shell to get a changed prompt
* inetd: constify dataDenis Vlasenko2009-04-221-1/+1
|
* adduser/addgroup: support specifying uid/gid, add systemDenis Vlasenko2009-04-224-42/+112
| | | | | | | | | | | | | | account creation mode. By Tito. function old new delta adduser_main 650 726 +76 addgroup_main 341 402 +61 addgroup_longopts - 16 +16 adduser_longopts 97 103 +6 packed_usage 26161 26163 +2 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 4/0 up/down: 161/0) Total: 161 bytes
* httpd: fix small bug in parser. it crept in during cleanupDenis Vlasenko2009-04-221-4/+3
|
* httpd: allow empty lines in conf fileDenis Vlasenko2009-04-221-1/+3
|
* httpd: simplify insane conf file parserDenis Vlasenko2009-04-223-188/+194
| | | | | | | | | | | | | | function old new delta bb_simplify_abs_path_inplace - 98 +98 parse_expr 824 832 +8 passwd_main 1025 1027 +2 evalvar 1374 1376 +2 parse_command 1463 1460 -3 bb_simplify_path 137 55 -82 parse_conf 1572 1422 -150 ------------------------------------------------------------------------------ (add/remove: 3/2 grow/shrink: 3/3 up/down: 126/-251) Total: -125 bytes
* syslogd: added comment, no code changesDenis Vlasenko2009-04-221-0/+2
|
* httpd: improve help textDenis Vlasenko2009-04-221-12/+11
|
* nc: free lsa in server mode, we might be up for a long timeDenis Vlasenko2009-04-211-2/+2
|
* *: remove check for errors on getsockaddr in cases we know they can't happenDenis Vlasenko2009-04-216-31/+37
| | | | | | | | | | | | libbb: make get_sock_lsa use only one getsockaddr syscall, not two function old new delta get_sock_lsa 72 101 +29 do_iplink 1151 1137 -14 arping_main 1585 1569 -16 dolisten 789 755 -34 xrtnl_open 161 94 -67
* switch_root: move misplaced commentDenis Vlasenko2009-04-211-1/+1
|
* switch_root: improve behavior on error; improve help textDenis Vlasenko2009-04-2110-42/+49
| | | | | *: make "can't execute '%s'" message uniform
* hush: speed up set_local_varDenis Vlasenko2009-04-211-10/+11
| | | | | | function old new delta set_local_var 265 290 +25
* *: mass renaming of USE_XXXX to IF_XXXXDenis Vlasenko2009-04-21102-1308/+1312
| | | | | | and SKIP_XXXX to IF_NOT_XXXX - the second one was especially badly named. It was not skipping anything!
* tar: support for tar --numeric-owner. By Natanael Copa.Denis Vlasenko2009-04-213-14/+23
| | | | | | | | function old new delta tar_longopts 221 237 +16 data_extract_all 692 705 +13 tar_main 690 702 +12
* udhcpc: fix truncation of last char in client hostnamesDenis Vlasenko2009-04-211-1/+2
|
* switch_root: print errno on failureDenis Vlasenko2009-04-211-1/+1
|
* tweak example udhcp scriptDenis Vlasenko2009-04-211-5/+5
|
* hush: export -n supportDenis Vlasenko2009-04-204-12/+95
| | | | | | | | function old new delta builtin_export 206 256 +50 set_local_var 248 265 +17 expand_variables 2204 2203 -1
* hush: add two testcasesDenis Vlasenko2009-04-204-0/+23
|
* watchdog: enable it before setting timeoutDenis Vlasenko2009-04-201-2/+9
| | | | | | | function old new delta watchdog_main 239 259 +20 static.enable - 4 +4
* hush: fix stdin of backgrounded pipe Denis Vlasenko2009-04-203-10/+35
| | | | | | function old new delta run_list 2450 2502 +52
* mdev: enlarge inline documentationDenis Vlasenko2009-04-191-6/+22
|
* hush: fix "export not_yet_defined_var", fix parsing of "cmd | }"Denis Vlasenko2009-04-194-22/+42
| | | | | | | | | | corner case; improve hush_leaktool.sh; fix some false positives in testsuite function old new delta builtin_export 191 206 +15 parse_stream 2196 2200 +4
* mdev: support $ENVVAR=regexDenis Vlasenko2009-04-192-27/+55
|
* another stab at fixing out-of-tree buildDenis Vlasenko2009-04-191-1/+1
|
* same as previous, but -100 bytesDenis Vlasenko2009-04-191-23/+15
|
* hush: fix handling of } which is not a closing one in { cmd; }Denis Vlasenko2009-04-196-18/+45
| | | | | | | function old new delta parse_stream 2176 2302 +126 builtin_unset 381 387 +6
* hopefully fix out-of-tree build broken by 26139Denis Vlasenko2009-04-191-6/+12
|
* mdev: Rob's #if forest removalDenis Vlasenko2009-04-197-187/+155
| | | | | *: remove superfluous conts in "f(type *const param)"
* fix build errors when function support is turned offMike Frysinger2009-04-181-2/+14
|
* hush: fix thinko in error msgDenis Vlasenko2009-04-181-4/+3
|
* hush: fix "trap -- handler SIGs..."; escape handlers in "trap" outputDenis Vlasenko2009-04-181-93/+117
|
* acpid: prevent creation of zombiesDenis Vlasenko2009-04-181-2/+2
|
* hush: fix thinko in unset_funcDenis Vlasenko2009-04-181-0/+1
|
* hush: implement unset -f; beautify the handling of signal-killed pipeDenis Vlasenko2009-04-181-23/+68
| | | | | | | | | | four TODOs are gone function old new delta builtin_unset 271 364 +93 checkjobs 394 428 +34 builtin_exit 49 47 -2
* hush: deal with umask TODO (symbolic modes)Denis Vlasenko2009-04-182-16/+26
| | | | | | function old new delta builtin_umask 79 125 +46
* hush: implement proper SIGHUP handlingDenis Vlasenko2009-04-181-95/+108
| | | | | | | | function old new delta check_and_run_traps 164 229 +65 insert_bg_job 376 366 -10 hush_main 937 927 -10
* builtin_return's parameter is not unusedDenis Vlasenko2009-04-171-1/+1
|
* hush: return builtin by Bayram Kurumahmut (kbayram AT ubicom.com)Denis Vlasenko2009-04-173-14/+91
| | | | | ~+200 bytes
* fix move_to_unaligned32Denis Vlasenko2009-04-171-1/+4
|
* build system: remove some unnecessary rebuildsDenis Vlasenko2009-04-171-4/+7
|
* hush: set $n properly for "source" builtinDenis Vlasenko2009-04-171-40/+57
| | | | | | | | | | | function old new delta restore_G_args - 78 +78 save_and_replace_G_args - 64 +64 builtin_source 72 107 +35 run_list 2549 2367 -182 ------------------------------------------------------------------------------ (add/remove: 2/0 grow/shrink: 1/1 up/down: 177/-182) Total: -5 bytes
* hush: fix non-interactive response to pipe being stopped.Denis Vlasenko2009-04-171-19/+18
| | | | | | function old new delta checkjobs 380 394 +14
* hush: unblock TERM, INT, HUP in child shells too.Denis Vlasenko2009-04-171-31/+42
|
* hush: disallow "{echo hi; }" (require whitespace)Denis Vlasenko2009-04-171-20/+35
| | | | | | | | | | | and "{ echo hi }" (require semicolon or &) function old new delta parse_stream 2098 2176 +78 done_command 98 84 -14 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/1 up/down: 78/-14) Total: 64 bytes
* mdev: add large comment, fix a buglet with subsystem and /sys/blockDenis Vlasenko2009-04-171-4/+42
|
* disable FLASH_ERASEALL in defconfigDenis Vlasenko2009-04-161-1/+1
|
* mdev: set mode, needed when device node already exists.Denis Vlasenko2009-04-162-0/+13
|