summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* libbb: do not reject floating point strings like ".15"Denis Vlasenko2008-10-181-1/+2
|
* mount: -o parm1 -o parm2 should accumulateDenis Vlasenko2008-10-181-4/+4
|
* vi: whitespace fixDenis Vlasenko2008-10-181-2/+2
|
* cpio: fix regression in prev commit (harmless)Denis Vlasenko2008-10-171-2/+4
|
* data_extract_all: do not complain if directory exists on mkdirDenis Vlasenko2008-10-173-2/+8
| | | | | | rpm/cpio: move "20653 blocks" printout from get_header_cpio to cpio_main - rpm doesn't want to have that
* rpm: fix incompatibilities which prevented rpm -i foo.src.rpmDenis Vlasenko2008-10-161-4/+11
| | | | | | function old new delta fileaction_setowngrp 57 89 +32
* vi: a few trivial optimizations to keyboard reading code; bump timeout to 50s.Denis Vlasenko2008-10-161-18/+29
| | | | | | | | | | function old new delta edit_file 901 912 +11 count_lines 74 72 -2 readit 306 289 -17 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/2 up/down: 11/-19) Total: -8 bytes
* Confirmed that on Linux the serial interrupt takes precedence over the timerRob Landley2008-10-161-2/+3
| | | | | interrupt, so we don't need to worry about scheduler delays. This means the delay can be trimmed down to 25 miliseconds. Add comment while at it.
* build system: dpkg needs .gz handlingDenis Vlasenko2008-10-151-2/+3
|
* sysctl: sysctl -a was still misbehaving, fix itDenis Vlasenko2008-10-151-2/+6
|
* return accidentally deleted "/* vi: set sw=4 ts=4: */"Denis Vlasenko2008-10-151-0/+1
|
* sysctl: fix bug 3894 _for real_.Denis Vlasenko2008-10-151-7/+18
|
* sysctl: remove trivial comments. no code changesDenis Vlasenko2008-10-151-27/+12
|
* sysctl: remove special-cased reporting of EPERM,Denis Vlasenko2008-10-151-30/+10
| | | | | common code path gives nearly the same message. -50 bytes
* sysctl: fix bug 3894 (by Kryzhanovskyy Maksym)Denis Vlasenko2008-10-151-4/+23
| | | | | | | | | | function old new delta sysctl_dots_to_slashes - 47 +47 sysctl_write_setting 310 298 -12 sysctl_read_setting 296 284 -12 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 0/2 up/down: 47/-24) Total: 23 bytes
* vi: fix bizarre formatting. no code changesDenis Vlasenko2008-10-141-2/+2
|
* hush: add TODODenis Vlasenko2008-10-141-0/+2
|
* hush: next small step towards functionsDenis Vlasenko2008-10-141-19/+53
|
* fix recurring "last_cmd overrun", fix [del] handling in insert modeDenis Vlasenko2008-10-141-15/+15
|
* vi: trivial size optimization -65 bytesDenis Vlasenko2008-10-141-18/+16
|
* vi: reinstate timeout of 300 msDenis Vlasenko2008-10-141-4/+8
|
* vi: add comments to Rob's algorithm of reading and matching ESC sequencesDenis Vlasenko2008-10-141-23/+33
| | | | | (nice work btw!)
* Escape sequences sent over serial links don't come in as a block, so pollRob Landley2008-10-141-1/+1
| | | | needs to pause a bit to make sure the next character has time to come in.
* Clean up editors/vi.c:readit() so it only does readahead when actuallyRob Landley2008-10-141-61/+58
| | | | | | parsing an escape sequence. (This mitigates but doesn't fully fix the the "cursoring around the file deletes data under qemu" bug, presumably due to "\033[D" being treated as three separate characters.)
* hush: fix NOMMU bug (analogous to preceding commit for MMU)Denis Vlasenko2008-10-134-84/+108
|
* testcase for the last fixDenis Vlasenko2008-10-132-0/+20
|
* hush: fix trashing of environment by local env vars:Denis Vlasenko2008-10-132-61/+105
| | | | | | | | | | | | | | | | a=a; a=b cmd; - a was unset! +57 bytes function old new delta add_string_to_strings - 110 +110 putenv_all - 27 +27 run_list 2086 2111 +25 free_strings - 7 +7 free_pipe 210 208 -2 add_malloced_string_to_strings 110 - -110 ------------------------------------------------------------------------------ (add/remove: 3/1 grow/shrink: 1/1 up/down: 169/-112) Total: 57 bytes
* blkid: new applet. We almost had everything needed for it alreadyDenis Vlasenko2008-10-127-12/+29
| | | | | | | | | | | | | function old new delta display_uuid_cache - 89 +89 blkid_main - 8 +8 applet_names 1871 1877 +6 applet_main 1140 1144 +4 applet_nameofs 570 572 +2 packed_usage 24737 24735 -2 ------------------------------------------------------------------------------ (add/remove: 2/0 grow/shrink: 3/1 up/down: 109/-2) Total: 107 bytes
* findfs: fix LUKS and FAT detection routines; do not exit if corruptedDenis Vlasenko2008-10-123-82/+111
| | | | | | | | | | | | FAT fs makes us try to seek past volume function old new delta volume_id_get_buffer 301 327 +26 volume_id_probe_luks 79 82 +3 get_attr_volume_id 73 65 -8 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 2/1 up/down: 29/-8) Total: 21 bytes
* zcip: code size optimizations, improved help text and commentsDenis Vlasenko2008-10-102-63/+83
| | | | | | | | | | | | function old new delta packed_usage 24750 24787 +37 run 658 655 -3 pick 40 34 -6 arp 186 177 -9 zcip_main 1402 1356 -46 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/4 up/down: 37/-64) Total: -27 bytes
* hush: fix environment and memory leaks, add tests for themDenis Vlasenko2008-10-096-58/+218
| | | | | | | | | | | | | | | function old new delta add_malloced_string_to_strings - 110 +110 run_list 1999 2086 +87 free_strings_and_unsetenv - 87 +87 hush_version_str - 18 +18 pseudo_exec_argv 139 146 +7 static.version_str 17 - -17 free_pipe 237 210 -27 done_word 790 642 -148 ------------------------------------------------------------------------------ (add/remove: 3/1 grow/shrink: 2/2 up/down: 309/-192) Total: 117 bytes
* unzip: remove example of a file we now can handleDenis Vlasenko2008-10-091-0/+0
|
* hush: preparatory work for implementing functionsDenis Vlasenko2008-10-091-66/+89
|
* hush: massive renaming of ill-named structures and fieldsDenis Vlasenko2008-10-091-202/+206
| | | | | | | hush: error out on constructs like: $ abc(def) - was working as if it was (abcdef) $ case b in abc(a|(b) echo YES; esac - was ignoring 'abc' and extra '('
* - route metric support (Natanael Copa)Bernhard Reutner-Fischer2008-10-072-3/+11
| | | | Adds about 75b
* - add some anchorsBernhard Reutner-Fischer2008-10-071-4/+4
|
* ash: support &> redirection (bashism). ~90 bytes of codeDenis Vlasenko2008-10-071-49/+68
|
* ash: some beautification work, no code changesDenis Vlasenko2008-10-061-41/+38
|
* ash: implement ">&file" bashism. ~100 bytes.Denis Vlasenko2008-10-051-47/+111
|
* watchdog: WDIOC_SETTIMEOUT accepts seconds, not millisecondsDenis Vlasenko2008-10-042-28/+45
| | | | | klogd: handle many lines at once, by Steve Bennett (steveb AT workware.net.au)
* - wrap overlong lineBernhard Reutner-Fischer2008-10-021-1/+2
|
* grep: fix 'echo aaa | grep -o a' + ENABLE_EXTRA_COMPAT caseDenis Vlasenko2008-09-301-2/+12
| | | | | by Natanael Copa
* inetd: use config parser. by VladimirDenis Vlasenko2008-09-301-87/+36
| | | | | | | | | | | | function old new delta reread_config_file 1092 2154 +1062 next_line 98 33 -65 next_word 197 57 -140 parse_one_line 1202 - -1202 ------------------------------------------------------------------------------ (add/remove: 0/1 grow/shrink: 1/2 up/down: 1062/-1407) Total: -345 bytes
* route: fix for 64-bit BE machines by Seonghun Lim (wariua AT gmail.com)Denis Vlasenko2008-09-281-2/+2
|
* website: announce 1.12.1 and 1.11.3Denis Vlasenko2008-09-281-0/+14
|
* scripts/randomtest[.loop]: add scripts for randomconfig testingDenis Vlasenko2008-09-282-0/+109
|
* showkey: suppress gcc warningDenis Vlasenko2008-09-281-2/+2
|
* sendmail: update by VladimirDenis Vlasenko2008-09-284-408/+251
|
* remove redundant NULL checkDenis Vlasenko2008-09-271-4/+0
|
* more style fixes, no code changesDenis Vlasenko2008-09-273-22/+22
|