Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | vi: move key reading routine out of vi into llbbb | Denis Vlasenko | 2008-10-25 | 3 | -185/+78 | |
| | | | | | | | | | | | function old new delta read_key - 310 +310 .... static.esccmds 170 61 -109 readit 286 60 -226 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 9/10 up/down: 349/-367) Total: -18 bytes | |||||
* | tar: fix typo in comment | Denis Vlasenko | 2008-10-25 | 1 | -1/+1 | |
| | ||||||
* | tar: fix bug 3844: non-root tar does not preserve perms | Denis Vlasenko | 2008-10-24 | 1 | -0/+4 | |
| | ||||||
* | less: add optional line number toggle and resizing on SIGWINCH. | Denis Vlasenko | 2008-10-24 | 4 | -67/+108 | |
| | ||||||
* | - improve wording and fix alphabetical order | Bernhard Reutner-Fischer | 2008-10-24 | 3 | -8/+15 | |
| | ||||||
* | less: add less v.418 help text doc. No code changes. | Denis Vlasenko | 2008-10-24 | 1 | -2/+209 | |
| | ||||||
* | build system cleanup: rename FEATURE_AWK_MATH to FEATURE_AWK_LIBM; | Denis Vlasenko | 2008-10-24 | 7 | -13/+11 | |
| | | | | | disable parsing test applet. | |||||
* | less: experimental code to enable wrap/no-wrap | Denis Vlasenko | 2008-10-24 | 1 | -1/+136 | |
| | | | | | and adapting to resized xterm windows. disabled for now. | |||||
* | less: more sane way of line numbering. Prepares for | Denis Vlasenko | 2008-10-23 | 1 | -22/+53 | |
| | | | | | wrap/unwrap and line numbers to be toggleable. | |||||
* | - give glob a chance | Bernhard Reutner-Fischer | 2008-10-23 | 1 | -3/+2 | |
| | | | | | CROSS_COMPILE=~/foo-bar-baz would fail otherwise See http://www.uclibc.org/lists/buildroot/2008-October/011191.html | |||||
* | - use sys/inotify.h | Bernhard Reutner-Fischer | 2008-10-21 | 1 | -1/+1 | |
| | ||||||
* | init: downgrade ENABLE_DEBUG_INIT to just a #define to prevent people | Denis Vlasenko | 2008-10-21 | 4 | -13/+7 | |
| | | | | | | from selecting it in error. It has to be used ONLY for debugging init, never in production, as resulting init has serious differences. | |||||
* | awk: fix typo in atan2 code. closes bug 5594. | Denis Vlasenko | 2008-10-21 | 1 | -1/+1 | |
| | ||||||
* | - fix ip route rejecting dotted quads as prefix | Bernhard Reutner-Fischer | 2008-10-21 | 2 | -31/+35 | |
| | | | | | | | | | | | | | | | | | | - adjust error message for wrong prefix not to mention address Previously e.g. ip route add 127.0.0.0/255.0.0.0 dev dummy0 was rejected, saying ip: an inet address is expected rather than "127.0.0.0/255.0.0.0" function old new delta get_prefix_1 201 309 +108 get_prefix 55 73 +18 get_addr 55 73 +18 get_addr32 48 58 +10 get_addr_1 249 204 -45 .rodata 114569 114524 -45 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 4/2 up/down: 154/-90) Total: 64 bytes | |||||
* | getopt: reinstate erroneously removed getopt() reset code. | Denis Vlasenko | 2008-10-21 | 1 | -0/+9 | |
| | ||||||
* | vi: handle chars 0x80, 0x81... correctly | Denis Vlasenko | 2008-10-20 | 1 | -61/+64 | |
| | ||||||
* | dc: conditionalize parts which require libm | Denis Vlasenko | 2008-10-20 | 5 | -1/+17 | |
| | ||||||
* | ash: fix NOEXEC mode - we were forgetting to pass environment! | Denis Vlasenko | 2008-10-20 | 5 | -6/+14 | |
| | | | | | | env: promote to NOEXEC hd: promote to NOEXEC, as hexdump is NOEXEC already | |||||
* | ash: fix a bug in standalone mode (corrupted getopt() state) | Denis Vlasenko | 2008-10-20 | 5 | -33/+43 | |
| | ||||||
* | add comment explaining previous change | Denis Vlasenko | 2008-10-19 | 1 | -0/+11 | |
| | ||||||
* | volume identification: abolish /proc/partitions and /proc/cdroms | Denis Vlasenko | 2008-10-19 | 5 | -227/+35 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | scanning. It does not catch volume managers and such. Adding even more cruft is bad, so I decided to simply scan /dev/* for any block devices. See how much better it finds devices now: # ./busybox_old blkid /dev/sda1: LABEL="/boot" UUID="7931e231-dcb4-4b6d-9301-f7354ae24061" /dev/dm-0: LABEL="Fedora-9-Live-x8" UUID="bb491e1e-1145-4f5b-b0ab-cbd2baf4f15a" /dev/dm-1: UUID="edc2a920-ef83-437e-ba64-d3b6dc851267" /dev/sdb1: UUID="6F84-ED0F" # ./busybox blkid /dev/sdb1: UUID="6F84-ED0F" /dev/root: LABEL="Fedora-9-Live-x8" UUID="bb491e1e-1145-4f5b-b0ab-cbd2baf4f15a" /dev/dm-1: UUID="edc2a920-ef83-437e-ba64-d3b6dc851267" /dev/dm-0: LABEL="Fedora-9-Live-x8" UUID="bb491e1e-1145-4f5b-b0ab-cbd2baf4f15a" /dev/sda1: LABEL="/boot" UUID="7931e231-dcb4-4b6d-9301-f7354ae24061" /dev/mapper/VolGroup00-LogVol01: UUID="edc2a920-ef83-437e-ba64-d3b6dc851267" /dev/mapper/VolGroup00-LogVol00: LABEL="Fedora-9-Live-x8" UUID="bb491e1e-1145-4f5b-b0ab-cbd2baf4f15a" function old new delta static.drive_name_string 12 - -12 append_mount_options 205 190 -15 volume_id_open_node 37 18 -19 uuidcache_check_device 485 257 -228 uuidcache_init 637 36 -601 ------------------------------------------------------------------------------ (add/remove: 0/1 grow/shrink: 0/4 up/down: 0/-875) Total: -875 bytes text data bss dec hex filename 792218 592 6648 799458 c32e2 busybox_old 791260 592 6648 798500 c2f24 busybox_unstripped | |||||
* | blkid: vda forgot to svn add it again. vda is stupid | Denis Vlasenko | 2008-10-19 | 1 | -0/+18 | |
| | ||||||
* | Comment and whitespace tweaks. | Rob Landley | 2008-10-19 | 1 | -10/+6 | |
| | ||||||
* | vi: explain why reading 4 chars is unsafe | Denis Vlasenko | 2008-10-18 | 1 | -3/+5 | |
| | ||||||
* | libbb: do not reject floating point strings like ".15" | Denis Vlasenko | 2008-10-18 | 1 | -1/+2 | |
| | ||||||
* | mount: -o parm1 -o parm2 should accumulate | Denis Vlasenko | 2008-10-18 | 1 | -4/+4 | |
| | ||||||
* | vi: whitespace fix | Denis Vlasenko | 2008-10-18 | 1 | -2/+2 | |
| | ||||||
* | cpio: fix regression in prev commit (harmless) | Denis Vlasenko | 2008-10-17 | 1 | -2/+4 | |
| | ||||||
* | data_extract_all: do not complain if directory exists on mkdir | Denis Vlasenko | 2008-10-17 | 3 | -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.rpm | Denis Vlasenko | 2008-10-16 | 1 | -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 Vlasenko | 2008-10-16 | 1 | -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 timer | Rob Landley | 2008-10-16 | 1 | -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 handling | Denis Vlasenko | 2008-10-15 | 1 | -2/+3 | |
| | ||||||
* | sysctl: sysctl -a was still misbehaving, fix it | Denis Vlasenko | 2008-10-15 | 1 | -2/+6 | |
| | ||||||
* | return accidentally deleted "/* vi: set sw=4 ts=4: */" | Denis Vlasenko | 2008-10-15 | 1 | -0/+1 | |
| | ||||||
* | sysctl: fix bug 3894 _for real_. | Denis Vlasenko | 2008-10-15 | 1 | -7/+18 | |
| | ||||||
* | sysctl: remove trivial comments. no code changes | Denis Vlasenko | 2008-10-15 | 1 | -27/+12 | |
| | ||||||
* | sysctl: remove special-cased reporting of EPERM, | Denis Vlasenko | 2008-10-15 | 1 | -30/+10 | |
| | | | | | common code path gives nearly the same message. -50 bytes | |||||
* | sysctl: fix bug 3894 (by Kryzhanovskyy Maksym) | Denis Vlasenko | 2008-10-15 | 1 | -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 changes | Denis Vlasenko | 2008-10-14 | 1 | -2/+2 | |
| | ||||||
* | hush: add TODO | Denis Vlasenko | 2008-10-14 | 1 | -0/+2 | |
| | ||||||
* | hush: next small step towards functions | Denis Vlasenko | 2008-10-14 | 1 | -19/+53 | |
| | ||||||
* | fix recurring "last_cmd overrun", fix [del] handling in insert mode | Denis Vlasenko | 2008-10-14 | 1 | -15/+15 | |
| | ||||||
* | vi: trivial size optimization -65 bytes | Denis Vlasenko | 2008-10-14 | 1 | -18/+16 | |
| | ||||||
* | vi: reinstate timeout of 300 ms | Denis Vlasenko | 2008-10-14 | 1 | -4/+8 | |
| | ||||||
* | vi: add comments to Rob's algorithm of reading and matching ESC sequences | Denis Vlasenko | 2008-10-14 | 1 | -23/+33 | |
| | | | | | (nice work btw!) | |||||
* | Escape sequences sent over serial links don't come in as a block, so poll | Rob Landley | 2008-10-14 | 1 | -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 actually | Rob Landley | 2008-10-14 | 1 | -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 Vlasenko | 2008-10-13 | 4 | -84/+108 | |
| | ||||||
* | testcase for the last fix | Denis Vlasenko | 2008-10-13 | 2 | -0/+20 | |
| |