Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-08-18 | don't pass argc in getopt32, it's superfluous | Denis Vlasenko | |
(add/remove: 0/0 grow/shrink: 12/131 up/down: 91/-727) Total: -636 bytes text data bss dec hex filename 773469 1058 11092 785619 bfcd3 busybox_old 772644 1058 11092 784794 bf99a busybox_unstripped | |||
2007-08-16 | modprobe: add scanning of /lib/modules/`uname -r`/modules.symbols | Denis Vlasenko | |
(by Yann E. MORIN) | |||
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-13 | hush: fix read builtin to not read ahead past eol and to not use | Denis Vlasenko | |
insane amounts of stack. Testsuite updated. | |||
2007-05-26 | usage.c: remove reference to busybox.h | Denis Vlasenko | |
*: s/include "busybox.h"/include "libbb.h" | |||
2007-04-16 | style fixes, no code changes | Denis Vlasenko | |
2007-04-11 | style fixes, no code changes. | Denis Vlasenko | |
2007-04-10 | style fixes. No code changes. | Denis Vlasenko | |
2007-02-08 | /etc/modules.conf is a 2.6.x file while /etc/modules.conf and ↵ | Mike Frysinger | |
/etc/conf.modules are 2.4.x and older files | |||
2007-02-08 | touchup style; no functional changes | Mike Frysinger | |
2007-02-03 | suppress warnings about easch <applet>_main() having | Denis Vlasenko | |
no preceding prototype | |||
2007-01-29 | preparatory patch for -Wwrite-strings #6 | Denis Vlasenko | |
2006-10-27 | modprobe: reformat to match bbox style | Denis Vlasenko | |
2006-10-27 | last nail into error_msg() (de)capitalization | Denis Vlasenko | |
2006-10-25 | use skip_whitespace where appropriate | Denis Vlasenko | |
2006-10-20 | message string changes, mostly for consistency, also -32 bytes in .rodata | Denis Vlasenko | |
2006-10-14 | add open_read_close() and similar stuff | Denis Vlasenko | |
2006-10-03 | getopt_ulflags -> getopt32. | Denis Vlasenko | |
It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit. | |||
2006-08-22 | Patch from Yann Morin so modprobe won't return failure if the module gets | Rob Landley | |
loaded while it's running (ala multi-device hotplug). | |||
2006-08-03 | Remove xcalloc() and convert its callers to xzalloc(). About half of them | Rob Landley | |
were using "1" as one of the arguments anyway, and as for the rest a multiply and a push isn't noticeably bigger than pushing two arguments on the stack. | |||
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-20 | Patch from Yann Morin to fix bug 941, underscores in module aliases. | Rob Landley | |
2006-07-19 | Patch from Yann Morin to look for modules.conf in the right place on 2.6. | Rob Landley | |
Fixes http://bugs.busybox.net/view.php?id=942 | |||
2006-06-21 | Jean Wolter writes: modprobe checks, whether a module is already loaded. The ↵ | Mike Frysinger | |
function used for this currently always returns 0. | |||
2006-06-14 | Attempt at fixing bug 836, vaguely based on patch from somebody named | Rob Landley | |
clausmuus, forwarded to me by Yann E. Morin. | |||
2006-06-14 | Attempt at fixing bug 815 by upgrading bb_spawn() so that builtins are at | Rob Landley | |
the start of the path. (This should be under the same config option as the standalone shell, but right now that's buried in the shell menu.) Also add the ability to specify CONFIG_BUSYBOX_EXEC_PATH with /proc/self/exe as an overrideable default. | |||
2006-06-03 | - move #include busybox.h to the very top so we pull in the config | Bernhard Reutner-Fischer | |
and eventual platform specific includes in early. - remove two supposedly superfluous newlines from ...error_msg() in modprobe and use shorter boilerplate while at it. | |||
2006-06-03 | - patch from Yann E. Morin: makes modprobe understand shell patterns | Bernhard Reutner-Fischer | |
(especially '*') in module aliases, such as: "alias usb:v0582p0075d*dc*dsc*dp*ic*isc*ip* snd_usb_audio" Fixes bug #889 842162 10244 645924 1498330 16dcda busybox.old-4.1.20060603-1948 842178 10244 645924 1498346 16dcea busybox.new-4.1.20060603-1948 | |||
2006-05-19 | - cleanup memory if opening aliases failed and cleanup was requested. | Bernhard Reutner-Fischer | |
2006-05-18 | Avoid a memory leak pointed out by Lucas C. Villa Real. | Rob Landley | |
2006-05-07 | Remove bb_strlen() in favor of -fno-builtin-strlen. Saves as many bytes | Rob Landley | |
as the old optimization did (actually does slightly better under gcc 4.0), and simplifies the code. | |||
2006-04-10 | Modprobe update from Ignacio García Pérez, updating support for modprobe.conf. | Rob Landley | |
2006-04-03 | - make append_option and multiconvert static. | Bernhard Reutner-Fischer | |
2006-03-06 | Robert P. Day removed 8 gazillion occurrences of "extern" on function | Rob Landley | |
definitions. (That should only be on prototypes.) | |||
2006-02-02 | destroy bug 679, use getopt_ulflags with new feature: usage option. Removed ↵ | "Vladimir N. Oleynik" | |
two strdup | |||
2005-12-16 | I screwed up the last commit: if dt is null when ENABLE_MULTIPLE_OPTIONS is | Rob Landley | |
off, we'd dereference the null. Oops. | |||
2005-12-15 | Better use of the ENABLE guards. | Rob Landley | |
2005-12-14 | - remove warning (thanks Yann E. MORIN) and switch to ENABLE_ | Bernhard Reutner-Fischer | |
- typo: s/begining/beginning/g | |||
2005-12-13 | Minor fix: if(CONFIG) breaks the build when that CONFIG is disabled, it has | Rob Landley | |
to be if(ENABLE). (Make allbareconfig is a good testing thing.) | |||
2005-12-12 | Patch from Yann E. Morin, something to do with bugs 276 and 272. | Rob Landley | |
2005-12-12 | Change CONFIG_MODPROBE_MULTIPOLE_OPTIONS to | Rob Landley | |
CONFIG_FEATURE_MODPROBE_MULTIPLE_OPTIONS. | |||
2005-11-15 | Yann Morin's modprobe multiple options patch. There's more work to be done, | Rob Landley | |
but let's ship 1.1 first... | |||
2005-08-04 | applying jim bauer's patch to eliminate modprobe's dependency | Paul Fox | |
on /bin/sh. bug #8. 0000008: modprobe applet is dependent on having a shell | |||
2005-04-16 | Patch from Bernhard Fischer to make a bunch of symbols static | Eric Andersen | |
which were otherwise cluttering the global namespace. | |||
2004-09-24 | Patch from Egor Duda | Glenn L McGrath | |
Attached patch prevents modprobe from trying to call 'insmod (null)' whenever nonexistent module is either passed to modprobe via command line or mentioned in modules.dep this replaces cryptic error sh: Syntax error: word unexpected (expecting ")") with modprobe: module some-module not found. egor. | |||
2004-08-19 | Patch from Mike Castle to cleanup some modutils issues, in | Eric Andersen | |
particular making alias support work better. | |||
2004-08-16 | Only pass modprobe module params with 2.6.x kernel support. | Eric Andersen | |
-Erik | |||
2004-08-14 | Christian Ostheimer writes: | Eric Andersen | |
Hello, function build_dep in modprobe.c assumes that dependencies of one module have not more than 255 chars; that is not sufficient in kernel 2.6.7 (alsa sound modules). - Below is a diff that solves the problem for me. With regards, Christian Ostheimer | |||
2004-08-11 | Patch from Mike Castle, dont print an empty line (patch modified by me to | Glenn L McGrath | |
change formatting). | |||
2004-08-11 | Patch from Phil Blundellto improve substring match | Glenn L McGrath | |