Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | - The conffiles control file isn't required in Debian packages, so don't | Bernhard Reutner-Fischer | 2008-06-05 | 1 | -2/+4 | |
| | | | | error out if it's missing. (Peter Korsgaard) | |||||
* | mktemp: make argument optional (coreutil 6.12 compat) | Denis Vlasenko | 2008-06-05 | 2 | -17/+35 | |
| | | | | | | | | | function old new delta mktemp_main 157 174 +17 packed_usage 24508 24504 -4 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/1 up/down: 17/-4) Total: 13 bytes | |||||
* | ash testsuite: modify it so that it can run hush and msh tests | Denis Vlasenko | 2008-06-05 | 1 | -3/+11 | |
| | ||||||
* | added testsuite for printf by Cristian Ionescu-Idbohrn | Denis Vlasenko | 2008-06-05 | 1 | -0/+27 | |
| | ||||||
* | replace single-char printf's with bb_putchar | Denis Vlasenko | 2008-06-05 | 3 | -20/+22 | |
| | ||||||
* | libiproute: use stdout directly instead of passing it as a parameter | Denis Vlasenko | 2008-06-05 | 2 | -79/+75 | |
| | | | | | | | | | | | function old new delta iprule_list 86 82 -4 print_rule 860 791 -69 ipaddr_list_or_flush 2484 2384 -100 print_addrinfo 1498 1292 -206 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/4 up/down: 0/-379) Total: -379 bytes | |||||
* | announce 1.10.3 | Denis Vlasenko | 2008-06-05 | 1 | -5/+15 | |
| | ||||||
* | config help text: fix capitalization | Denis Vlasenko | 2008-06-04 | 1 | -4/+2 | |
| | ||||||
* | remove -fno-jump-tables - after stripping it proved to be worse | Denis Vlasenko | 2008-06-04 | 1 | -4/+0 | |
| | ||||||
* | build system: add PIE build option | Denis Vlasenko | 2008-06-04 | 5 | -10/+32 | |
| | ||||||
* | change default rtcwake mode to match changed behavior in upstream util-linux | Mike Frysinger | 2008-06-04 | 2 | -2/+2 | |
| | ||||||
* | networking/interface.c: fix indentation | Denis Vlasenko | 2008-06-04 | 3 | -60/+52 | |
| | ||||||
* | Remove stray debug instrumentation | Denis Vlasenko | 2008-06-02 | 1 | -3/+2 | |
| | ||||||
* | make the help for rtcwake reflect the actual default behavior | Mike Frysinger | 2008-06-02 | 2 | -2/+2 | |
| | ||||||
* | - add FIXME. Perhaps somebody is interrested in looking into this one. | Bernhard Reutner-Fischer | 2008-06-02 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | We would try to be clever and compare the *data instead of the *elt. Somethink like this might be of more general use: /* Unlink arbitrary element from the list that contains data */ void llist_unlink_data(llist_t **head, void *data) { llist_t *elt; for (elt = *head; elt; elt = elt->link) { if (elt->data == data) { llist_unlink(elt); return; } } } | |||||
* | - add alias support | Bernhard Reutner-Fischer | 2008-06-02 | 2 | -85/+115 | |
| | ||||||
* | - revert revision 22183 since it breaks -b /abs /abs/path/to/mod.ko | Bernhard Reutner-Fischer | 2008-06-02 | 1 | -4/+11 | |
| | ||||||
* | - just chdir to the basedir (-30b). | Bernhard Reutner-Fischer | 2008-06-02 | 1 | -11/+4 | |
| | ||||||
* | - optional fancy pruning-mode for depmod | Bernhard Reutner-Fischer | 2008-06-02 | 2 | -21/+121 | |
| | ||||||
* | - pm_states[PM_SUSPEND_MAX] suggests to support "standby" and not "suspend" | Bernhard Reutner-Fischer | 2008-06-02 | 1 | -1/+1 | |
| | | | | Thanks to Paulius Zaleckas for mentioning this. | |||||
* | Reinstate CONFIG_CROSS_COMPILE_PREFIX | Denis Vlasenko | 2008-06-02 | 4 | -24/+61 | |
| | ||||||
* | ash: optional printf builtin. +25 bytes if off, +35 if on. | Denis Vlasenko | 2008-06-01 | 9 | -13/+45 | |
| | | | | | by Cristian Ionescu-Idbohrn. | |||||
* | msh: fix ENOENT testcase | Denis Vlasenko | 2008-06-01 | 2 | -2/+2 | |
| | ||||||
* | - use ut_user rather than ut_name (Cristian Ionescu-Idbohrn) | Bernhard Reutner-Fischer | 2008-06-01 | 5 | -22/+19 | |
| | | | | | | | | - use ut_tv.tv_sec rather than ut_time (me) - shrink halt a little bit (me): halt_main 464 433 -31 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-31) Total: -31 bytes | |||||
* | - shrink modprobe a little bit (~-40 bytes). ACKed by Yann. | Bernhard Reutner-Fischer | 2008-05-31 | 1 | -8/+5 | |
| | ||||||
* | printf: fix a trivial bug | Denis Vlasenko | 2008-05-31 | 1 | -1/+1 | |
| | ||||||
* | mdev: add commented-out debug code to open stdio. | Denis Vlasenko | 2008-05-31 | 1 | -0/+9 | |
| | ||||||
* | printf: code shrink by eliminating string alloc/copy | Denis Vlasenko | 2008-05-31 | 1 | -28/+27 | |
| | | | | | | function old new delta print_direc 428 382 -46 | |||||
* | libiproute: fix option parsing, so that "ip -o link" works again. | Denis Vlasenko | 2008-05-31 | 2 | -3/+3 | |
| | | | | | closes bug 3524 | |||||
* | libiproute: style fixes, and using smallint as appropriate | Denis Vlasenko | 2008-05-31 | 3 | -26/+24 | |
| | | | | | | | | | | | function old new delta print_route 1730 1731 +1 print_addrinfo 1497 1498 +1 iproute_list_or_flush 1232 1229 -3 ipaddr_list_or_flush 2490 2484 -6 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 2/2 up/down: 2/-9) Total: -7 bytes | |||||
* | runsvdir: make it more robust against libc buglets (errno accidentally set ↵ | Denis Vlasenko | 2008-05-31 | 1 | -2/+7 | |
| | | | | | | | | | | to !0) closes bug 3514 function old new delta runsvdir_main 1672 1664 -8 | |||||
* | msh: fix the case where the file has exec bit but can't be run directly | Denis Vlasenko | 2008-05-30 | 5 | -6/+21 | |
| | | | | | | | (run "$SHELL $file" instead) msh: fix exit codes when command is not found or can't be execed (with testcases) | |||||
* | - add FIXME to use hasmntopt() | Bernhard Reutner-Fischer | 2008-05-30 | 1 | -0/+1 | |
| | ||||||
* | - fix overflow; improve documentation while at it | Bernhard Reutner-Fischer | 2008-05-28 | 1 | -9/+9 | |
| | ||||||
* | fuser: a now, the corrected fix (vda botched previous one) | Denis Vlasenko | 2008-05-28 | 1 | -0/+1 | |
| | ||||||
* | - misc. improvements and shrinkage | Bernhard Reutner-Fischer | 2008-05-28 | 1 | -33/+33 | |
| | ||||||
* | - add strrchr | Bernhard Reutner-Fischer | 2008-05-28 | 3 | -0/+22 | |
| | ||||||
* | fiser: opendir "/proc", not "." (by Cristian Ionescu-Idbohrn) | Denis Vlasenko | 2008-05-28 | 1 | -2/+3 | |
| | ||||||
* | find: beautify config prompts a bit | Denis Vlasenko | 2008-05-28 | 1 | -12/+12 | |
| | ||||||
* | Remove 'busybox' word from configuration programs | Denis Vlasenko | 2008-05-28 | 6 | -22/+20 | |
| | | | | | (based on experience of adapting it to uclibc). | |||||
* | - move depmod shell script to examples/ | Bernhard Reutner-Fischer | 2008-05-28 | 1 | -0/+0 | |
| | ||||||
* | - the moddir_base is supposed to be omitted frmo the .dep file | Bernhard Reutner-Fischer | 2008-05-28 | 1 | -28/+28 | |
| | | | | - other tweaks while at it | |||||
* | - Spaghetti alert. Fix clash with ancient fwd-decl. This is an unfortunate | Bernhard Reutner-Fischer | 2008-05-27 | 1 | -1/+2 | |
| | | | | | combination of linux not providing a useable linux/module.h to userspace and mixing legacy-cruft with the current stuff in one insmod.c. | |||||
* | - remove duplicate helptext of dhcprelay and improve it | Bernhard Reutner-Fischer | 2008-05-27 | 1 | -7/+3 | |
| | ||||||
* | - Add config option for DEFAULT_DEPMOD_FILE and DEFAULT_DEPMOD_FILE. | Bernhard Reutner-Fischer | 2008-05-27 | 4 | -22/+31 | |
| | | | | No obj-code changes. | |||||
* | - use (uC)libc functions. Saves a dozen bytes. | Bernhard Reutner-Fischer | 2008-05-27 | 2 | -5/+16 | |
| | ||||||
* | vda, xmalloc'ing can use *alot* of RAM. Don't forget that there are | Bernhard Reutner-Fischer | 2008-05-27 | 1 | -7/+7 | |
| | | | | | modules out there that are half a megabyte! mmap()ing is way nicer for small mem boxes. | |||||
* | - improve help-text | Bernhard Reutner-Fischer | 2008-05-27 | 1 | -0/+3 | |
| | ||||||
* | - improve option-handling a bit | Bernhard Reutner-Fischer | 2008-05-26 | 1 | -22/+41 | |
| | ||||||
* | scripts: add a script which prints memory map of running busybox | Denis Vlasenko | 2008-05-26 | 2 | -1/+12 | |
| |