Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-01-23 | as reported by George Boudreau, make sure we properly skip blank lines | Mike Frysinger | |
2007-12-21 | fix buglets found by randomconfig | Denis Vlasenko | |
2007-11-19 | cleanup comments and coding style and rewrite the mdev.conf parser to use ↵ | Mike Frysinger | |
common busybox functions and call strdup() less often ... saves a ~few hundred bytes | |||
2007-10-11 | add -fvisibility=hidden to CC flags, mark XXX_main functions | Denis Vlasenko | |
EXTERNALLY_VISIBLE. 5% size reduction of libbusybox.so | |||
2007-08-12 | trylink: produce even more info about final link stage | Denis Vlasenko | |
trylink: explain how to modify link and drastically decrease amount of padding (unfortunately, needs hand editing ATM). *: add ALIGN1 / ALIGN2 to global strings and arrays of bytes and shorts size saving: 0.5k | |||
2007-06-30 | introduce and use bb_basename() | Denis Vlasenko | |
function old new delta bb_basename - 26 +26 sv_main 1226 1225 -1 passwd_main 1985 1983 -2 showdirs 482 478 -4 sendCgi 1811 1807 -4 make_device 1354 1350 -4 handleIncoming 2443 2439 -4 func_name 82 78 -4 service_name 2292 2285 -7 main 909 901 -8 cmp_main 555 547 -8 test_main 434 422 -12 act 228 216 -12 find_pair 180 164 -16 rmmod_main 298 280 -18 find_pid_by_name 156 134 -22 modprobe_main 1606 1576 -30 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 0/16 up/down: 26/-156) Total: -130 bytes text data bss dec hex filename 734933 3028 14400 752361 b7ae9 busybox_old 734801 3028 14400 752229 b7a65 busybox_unstripped | |||
2007-06-20 | - strndupa is a GNU extension. Using strdup to avoid several errors like: | Bernhard Reutner-Fischer | |
util-linux/mdev.c:(.text+0x29a): undefined reference to `strndupa' | |||
2007-06-14 | Alex Landau writes: open firmware for reading, not writing | Mike Frysinger | |
2007-06-13 | as suggested by Renaud Cerrato and Souf, switch over to recursive_action() ↵ | Mike Frysinger | |
for some nice shrinkage and so we work even when CONFIG_SYSFS_DEPRECATED is off | |||
2007-06-13 | add support for firmware loading | Mike Frysinger | |
2007-06-08 | mdev: microscopic enhancement, should change nothing | Denis Vlasenko | |
2007-06-03 | find_stray_communal_vars: script which finds communal variables | Denis Vlasenko | |
resize: remove globals var mdev: remove globals var | |||
2007-05-26 | usage.c: remove reference to busybox.h | Denis Vlasenko | |
*: s/include "busybox.h"/include "libbb.h" | |||
2007-04-04 | - sed -e "s/char[[:space:]]*\*[[:space:]]*argv\[\]/char **argv/g" | Bernhard Reutner-Fischer | |
2007-02-03 | suppress warnings about easch <applet>_main() having | Denis Vlasenko | |
no preceding prototype | |||
2007-01-29 | preparatory patch for -Wwrite-strings #2 | Denis Vlasenko | |
2006-11-26 | small fixes: | Denis Vlasenko | |
fix xstrdup to not grossly overallocate memory use xopen instean of xopen3 in several places etc. | |||
2006-10-16 | mdev: reduce excessive indentation | Denis Vlasenko | |
2006-10-14 | add open_read_close() and similar stuff | Denis Vlasenko | |
2006-10-03 | lots of silly indent fixes | Denis Vlasenko | |
2006-09-29 | Yet another silly little byte saving. couldn't -> cannot | Denis Vlasenko | |
2006-09-22 | Change license statements (and clean up headers) on some of the files that | Rob Landley | |
Erik or I are primary copyright holders on. | |||
2006-09-17 | whitespace cleanup | Denis Vlasenko | |
2006-08-10 | Patch from Chris Steel to fix mdev deleting device nodes. | Rob Landley | |
2006-08-03 | Remove bb_ prefixes from xfuncs.c (and a few other places), consolidate | Rob Landley | |
things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.) | |||
2006-07-02 | Standardize on the vi editing directives being on the first line. | "Robert P. J. Day" | |
2006-06-26 | Upgrade mdev to allow commands to be run on create/delete. | Rob Landley | |
Both Jason Schoon and Giuseppe Ciotta deserve credit for this, I used elements of both. It's been upgraded so that you can specify that a given command should run at create, at delete, or at both using different special characters (@, $, and * respectively). It uses the system() method of running command lines which means you can use environment variables on the command line (it sets $MDEV to the name of the current device being created/deleted, which is useful if you matched it via regex), and the documentation warns that you need a /bin/sh to make that work, so you probably want to pick a default shell. | |||
2006-06-13 | Work around a persistent uClibc bug, since 0.9.29 still hasn't shipped. | Rob Landley | |
Poked to do this by Jason Schoon. | |||
2006-05-21 | Convert to a global struct, the way sed was. Now I have two, I can work out | Rob Landley | |
the infrastructure to merge global structs into a union... | |||
2006-05-08 | Shrink the code about 50 bytes, allocate less run-time memory, and add a | Rob Landley | |
comment that null terminating the string we sscanf() shouldn't be required since the kernel adds \n to the end of it and sscanf will stop there. | |||
2006-02-21 | Create /dev/root symlink pointing to real root device, if any. | Rob Landley | |
2006-02-07 | add back in path nulling after calling find_dev() since it is needed for now ... | Mike Frysinger | |
2006-02-03 | cleanup style ... just because you use less spaces doesnt mean the resulting ↵ | Mike Frysinger | |
code is smaller | |||
2006-02-03 | shrink the code a bit | Mike Frysinger | |
2006-02-03 | gavinl writes in Bug 661: | Mike Frysinger | |
if read() file return less than 1, we should close the fd and then goto end. | |||
2006-01-25 | just whitespace | Tim Riker | |
2006-01-22 | There was a missing ! on strcmp (despite the fact it worked in my testing, | Rob Landley | |
I have no idea _how_), and a simpler fix for the extra \n problem. I tested this and it worked for me, for what that's worth... | |||
2006-01-12 | Frank Sorenson added hotplug support to mdev. (I tweaked it a bit. Need | Rob Landley | |
to come up with a test suite for all the stuff that requires root access. Something involving User Mode Linux or QEMU, probably...) | |||
2006-01-12 | The major:minor read from dev ends with \n, need to trim that. | Rob Landley | |
2006-01-04 | use MAP_PRIVATE instead of MAP_SHARED for uClinux systems (see Bug 550) | Mike Frysinger | |
2005-12-17 | Sigh. Left the debug path in. Fixed. | Rob Landley | |
2005-12-17 | Added /etc/mdev.conf support. Adds about 1.9k to mdev. | Rob Landley | |
2005-12-13 | Nothing to see here. Move along. | Rob Landley | |
Not buying it, eh? I know I said new features before 1.1, but, well... (I was weak!) The config file and hotplug modes aren't implemented yet. Might take a stab at those tomorrow. (I _should_ go back to focusing on the bug triage list.) |