aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* hush: close-on-exec interactive_fdDenis Vlasenko2008-02-111-1/+3
|
* hush: set CLOEXEC on script file being executedDenis Vlasenko2008-02-111-0/+1
|
* hush: fix the commentDenis Vlasenko2008-02-111-1/+1
|
* hush: reset die_sleep to 0 in child after forkDenis Vlasenko2008-02-111-6/+10
|
* getpot: add support for "a+" specifier for nonnegative int parameters.Denis Vlasenko2008-02-103-44/+55
| | | | | | | | | | | | | By Vladimir Dronnikov <dronnikov at gmail.com>. fdisk and top are converted as an example. function old new delta getopt32 1340 1370 +30 top_main 1137 1120 -17 fdisk_main 3033 2949 -84 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/2 up/down: 30/-101) Total: -71 bytes
* microcom: read more than 1 byte from device, if possibleDenis Vlasenko2008-02-101-14/+16
|
* ash: fix "orwell bug" 1984. Testcase:Denis Vlasenko2008-02-102-55/+79
| | | | | | | | | | trap_handler() { echo trap } trap trap_handler USR1 sleep 3600 & while true; do wait; done
* hush: small fixes to docs/testsuiteDenis Vlasenko2008-02-102-3/+3
|
* hush: reinstate `cmd` handling for NOMMU (with fat big warning).Denis Vlasenko2008-02-105-92/+166
| | | | | | | | | | hush: fix a case where none of pipe members could be started because of fork failure hush: rename functions: xxx_real -> xxx hush: try to add a bit more of vfork-friendliness hush: add rudimentary design docs hush: add TODO (newly discovered bug with globbing)
* microcom: compile fixesDenis Vlasenko2008-02-091-2/+3
|
* microcom: split -d (delay) option away from -tDenis Vlasenko2008-02-092-20/+28
|
* build system: make it do without od -tDenis Vlasenko2008-02-091-4/+12
|
* mktemp: don't advertise -q optionDenis Vlasenko2008-02-091-1/+1
|
* mktemp: support -p DIR (Timo Teras <timo.teras at iki.fi>)Denis Vlasenko2008-02-092-12/+24
| | | | | | packed_usage 23595 23660 +65 mktemp_main 139 157 +18
* test: fix mishandling of 'test ! arg1 op arg2 more args'; add testsuiteDenis Vlasenko2008-02-092-22/+53
|
* sendmail: update from maintainerDenis Vlasenko2008-02-085-242/+472
|
* microcom: update from maintainerDenis Vlasenko2008-02-081-82/+71
|
* README: doccument the need of CONFIG_DESKTOPDenis Vlasenko2008-02-084-16/+15
| | | | | | | | | od: fix help text to include -t od: handle /proc files (which have filesize 0) correctly od: fix comments to not lie about return value od: "%u" is 1 byte less than "%zu" cat: fix English
* httpd: add a bit of error logging; a few code simplifications. +29 bytes.Denis Vlasenko2008-02-081-7/+11
|
* - add eject -s for SCSI- and USB-devices (Nico Erfurth)Bernhard Reutner-Fischer2008-02-084-17/+82
|
* force disable setlocalversion usage in busyboxMike Frysinger2008-02-071-1/+1
|
* some more fixes for cross-compiling on an OS X host: apple provides core ↵Mike Frysinger2008-02-072-6/+16
| | | | types so dont redefine them, sys/statfs.h is not available, and only use some newer AF_* defines if they are actually available
* only include mntent.h according to HAVE_MNTENT_H and dont define this on OS XMike Frysinger2008-02-072-2/+5
|
* udhcp: ifdef out unused membersDenis Vlasenko2008-02-042-0/+4
|
* udhcp: optional support for non-standard DHCP ports (+300 bytes when selected)Denis Vlasenko2008-02-0410-14/+79
|
* unzip: do not try to read entire compressed stream at once (it can be huge)Denis Vlasenko2008-02-042-7/+18
| | | | | unzip: handle short reads correctly
* zcip: open ARP socket before openlogDenis Vlasenko2008-02-041-11/+13
| | | | | (else we can thrash syslog socket)
* nohup: compat patch by Christoph Gysin <mailinglist.cache at gmail.com>Denis Vlasenko2008-02-041-15/+33
|
* mkswap: do not do extra seekDenis Vlasenko2008-02-033-3/+28
| | | | | mount: add another mount helper call method
* ps: fixlet to disabled compat codeDenis Vlasenko2008-02-031-2/+2
|
* ash: readability enhancement, no code changesDenis Vlasenko2008-02-031-15/+20
|
* getty: don't try to detect parity on local linesDenis Vlasenko2008-02-021-1/+1
| | | | | (Joakim Tjernlund <Joakim.Tjernlund at transmode.se>)
* fsck: don't kill pid -1! (Roy Marples <roy at marples.name>)Denis Vlasenko2008-02-021-0/+6
|
* msh: also handle EOF/read errors correctlyDenis Vlasenko2008-02-021-4/+4
|
* msh: fix Ctrl-C handling with line editingDenis Vlasenko2008-02-023-6/+7
|
* sendmail: fixes by Vladimir Dronnikov <dronnikov at gmail.com>Denis Vlasenko2008-02-022-85/+111
|
* ps: add (disabled) compat codeDenis Vlasenko2008-02-021-0/+14
|
* nc: fix fallout from C99 standard compliance changeDenis Vlasenko2008-02-021-20/+20
|
* Fix compilation error when FEATURE_FANCY_PING enabled. AlsoPaul Fox2008-02-012-8/+8
| | | | | | reorder networking/Config.in moving FEATURE_FANCY_PING next to PING6. (Cristian Ionescu-Idbohrn)
* add support for renaming/relocating device nodesMike Frysinger2008-02-013-5/+61
|
* add a mini-faq about std{in,out,err}Mike Frysinger2008-02-011-2/+4
|
* - be C99 friendly. Anonymous unions are a GNU extension. This change isBernhard Reutner-Fischer2008-01-2918-99/+98
| | | | | size-neutral WRT -std=gnu99 and fixes several compilation errors for strict C99 mode.
* init: allow last line to be not terminated by '\n'Denis Vlasenko2008-01-291-3/+3
|
* mount: allow and ignore _netdev optionDenis Vlasenko2008-01-291-0/+2
|
* - update defconfigBernhard Reutner-Fischer2008-01-291-3/+6
|
* ash: code readability enhancements, no real code changesDenis Vlasenko2008-01-291-31/+25
|
* sendmail: really svn add itDenis Vlasenko2008-01-291-0/+313
|
* *: move getopt reset code to better place(s)Denis Vlasenko2008-01-284-26/+31
|
* sendmail: new applet by dronnikov at gmail.comDenis Vlasenko2008-01-284-0/+38
|
* *: tidy up usage of char **environDenis Vlasenko2008-01-2811-17/+12
|