aboutsummaryrefslogtreecommitdiff
path: root/modutils/insmod.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* - fold recurse, depthFirst and dereference params into one param flags.Bernhard Reutner-Fischer2007-03-291-2/+2
| | | | Minor size improvement (-16b for size, -24b according to bloat-o-meter).
* suppress warnings about easch <applet>_main() havingDenis Vlasenko2007-02-031-0/+2
| | | | no preceding prototype
* preparatory patch for -Wwrite-strings #4Denis Vlasenko2007-01-291-1/+1
|
* preparatory patch for -Wwrite-strings #2Denis Vlasenko2007-01-291-1/+1
|
* cleanups: unnecessary casts, unified const_1, eliminate cross-.c fileDenis Vlasenko2007-01-221-2/+0
| | | | | prototypes (heresy!), add spaces in places like "flags&NETSTAT_CONNECTED", removed unused #defines, #ifdef -> #if, use uint32_t for ipv4 addrs.
* stop using __u32 etc. uint32_t is there for a reasonDenis Vlasenko2006-12-311-9/+6
|
* next bunch of fixes for bugs found by randconfigDenis Vlasenko2006-12-301-3/+4
|
* done a dozen of randconfig test. guess what? ALL failed...Denis Vlasenko2006-12-301-0/+1
| | | | these are resulting fixes
* style fixesDenis Vlasenko2006-12-261-1/+1
| | | | last xcalloc replaced by xzalloc
* remove casts from xmalloc()Denis Vlasenko2006-12-191-1/+1
|
* style cleanup: return(a) -> return a, part 2Denis Vlasenko2006-11-271-3/+3
|
* style cleanup: return(a) -> return a, part 1Denis Vlasenko2006-11-271-6/+5
|
* insmod: set STRVERSIONLEN = 64, convert #ifdef CONFIG to #if ENABLE,Denis Vlasenko2006-11-211-115/+114
| | | | stop using CONFIG_ prefix for non-config-system variables
* insmod_ng_main: -80 bytes. Stopp mmapping, use xmalloc_open_read_close().Denis Vlasenko2006-11-211-22/+26
|
* rodata cleanup. "unable to" == "cannot". -300 bytesDenis Vlasenko2006-11-181-2/+2
|
* recursive_action: add depth paramDenis Vlasenko2006-10-271-3/+3
| | | | chmod: match coreutils versus following links
* message string changes, mostly for consistency, also -32 bytes in .rodataDenis Vlasenko2006-10-201-2/+2
|
* add open_read_close() and similar stuffDenis Vlasenko2006-10-141-2/+2
|
* style fixesDenis Vlasenko2006-10-121-280/+271
|
* attempt to regularize atoi mess.Denis Vlasenko2006-10-081-1/+1
|
* dnsd fix; option_mask32 added. dnsd needs more love.Denis Vlasenko2006-10-061-9/+8
|
* getopt_ulflags -> getopt32.Denis Vlasenko2006-10-031-1/+1
| | | | | | | | 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.
* Yet another silly little byte saving. couldn't -> cannotDenis Vlasenko2006-09-291-1/+1
|
* insmod: getopt_ulflags'isationDenis Vlasenko2006-09-231-62/+40
|
* whitespace cleanupDenis Vlasenko2006-09-171-2/+2
|
* xopen3(O_RDONLY) -> xopen(O_RDONLY).Denis Vlasenko2006-09-091-1/+1
|
* removed a lot of trailing \n in bb_msg() calls. It is addedDenis Vlasenko2006-09-061-1/+1
| | | | | automatically by function itself.
* Svn 16007 broke the build under gcc 4.0.3. This fixes up some of the damageRob Landley2006-08-291-1/+1
| | | | | (the e2fsprogs directory is too twisty and evil to easily fix, but I plan to rewrite it anyway so I'll just bump that up in priority a bit).
* Another whack at scripts/individual. Now builds 212 applets.Rob Landley2006-08-091-0/+1
|
* Remove xcalloc() and convert its callers to xzalloc(). About half of themRob Landley2006-08-031-1/+1
| | | | | 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.
* Remove bb_ prefixes from xfuncs.c (and a few other places), consolidateRob Landley2006-08-031-43/+11
| | | | | | | | | | 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.)
* Somebody on the buildroot list hit:Rob Landley2006-07-251-4/+0
| | | | insmod.c:515:10: extra tokens at end of #ident directive
* import support for microblaze relocations from uClinux-distMike Frysinger2006-06-061-0/+59
|
* merge blackfin/microblaze from uClinux-distMike Frysinger2006-06-061-0/+17
|
* - move #include busybox.h to the very top so we pull in the configBernhard Reutner-Fischer2006-06-031-2/+2
| | | | | | and eventual platform specific includes in early. - remove two supposedly superfluous newlines from ...error_msg() in modprobe and use shorter boilerplate while at it.
* - patch from Denis Vlasenko to add and use bb_xopen3()Bernhard Reutner-Fischer2006-04-131-17/+2
|
* - we only need obj_gpl_license if ENABLE_FEATURE_CHECK_TAINTED_MODULE is setBernhard Reutner-Fischer2006-03-291-2/+2
|
* Stephane Billiart found an endianness bug in insmod.Rob Landley2006-03-251-7/+2
|
* Patch from Denis Vlasenko turning static const int (which gets emitted intoRob Landley2006-03-101-17/+22
| | | | the busybox binary) into enums (which don't).
* Robert P. Day removed 8 gazillion occurrences of "extern" on functionRob Landley2006-03-061-2/+2
| | | | definitions. (That should only be on prototypes.)
* Patch from Robert P. Day, moving byte order checks to use platform.h macros.Rob Landley2006-03-041-6/+6
|
* Cleanup patch from Denis Vlasenko. Mostly variants of removing the if(x)Rob Landley2006-03-011-3/+2
| | | | from before "if(x) free(x)".
* Update comment.Rob Landley2006-02-201-1/+1
|
* fix building on ppc64Mike Frysinger2006-02-181-0/+3
|
* hopefully the last of the annoying signed/unsigned and mixed type errorsEric Andersen2006-01-301-2/+4
|
* just whitespaceTim Riker2006-01-251-2/+2
|
* import nios2 support from microtronixMike Frysinger2006-01-041-0/+171
|
* Make insmod quiet by default (patch from Yann E. Morin).Rob Landley2005-12-111-1/+1
|
* uClibc can't handle anonymous MAP_SHARED. Since we're treating it asRob Landley2005-12-071-1/+1
| | | | read only data anyway, MAP_PRIVATE shouldn't make a major difference.
* another more const"Vladimir N. Oleynik"2005-10-201-1/+1
|