summaryrefslogtreecommitdiff
path: root/modutils (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Patch from OpenWrt.Manuel Novoa III2004-02-181-3/+5
|
* whitespace cleanupEric Andersen2004-01-101-45/+50
|
* Woody Suwalski writes:Eric Andersen2004-01-101-0/+1
| | | | | | I have found the problem in modprobe, so here is the promised patch At the current stage I can use it as modprobe while switching between 2.4 and 2.6 seemlesly...(that is good!)
* Woody Suwalski writes:Eric Andersen2004-01-061-8/+22
| | | | | accept more then 1 dependency per modules.dep line. Also white space cleanup... I think that parsing still breaks sometimes, but is mostly functional now.
* Fix broken #elseEric Andersen2004-01-051-4/+3
|
* Fix debian bug #215612, insmod should be silent on requestGlenn L McGrath2003-12-311-3/+4
|
* re-indentEric Andersen2003-12-243-1099/+1100
|
* Patch from Woody Suwalski:Eric Andersen2003-12-192-31/+77
| | | | | | | | | | | | | | | | | | | | | | Erik, I think we have met online some time ago when I was in Corel/Rebel Netwinder project.... Anyway, I would like to use BB on 2.6.0 initrd. 1.00-pre4 works OK, if insmod is actually presented with a full path to the module. Otherwise - problems (not to mention conflicts when 2.4 modutil is enabled) Here are some patches for insmod and modprobe which try to walk around the default ".o" module format for 2.2/2.4 modules (you have probably noticed it is now .ko in 2.6 ;-)) Trying to steal as little space as possible if 2.6 not enabled... The modprobe is still not perfect on 2.6 - seems to be jamming on some dependencies, but works with some (to be debugged). Anyway after the patches it at least tries to work.... Will there be a 1.00-pre5 coming any time soon? Thanks, Woody
* Update modutils with 2.6 module supportEric Andersen2003-12-113-36/+138
|
* Add (untested) support for cris, based on the (old) busybox insmodManuel Novoa III2003-12-041-2/+27
| | | | that axis distributes.
* Steven Seeger writes:Eric Andersen2003-11-141-1/+2
| | | | | | | | | | | | | | | | Hey guys. I've found a bug in modprobe where it generates bad strings and makes sytem calls with them. The following patch seems to have fixed the problem. It is rather inherited elsewhere, as there seems to be incorrect entries in the list which results in more dependencies than really exist for a given call to mod_process. But, this patch prevents the bad text from going to the screen. You will notice there are cases where lcmd goes unmodified before calling system. Please consider the following patch. Thanks. -Steve
* Do a better job of dealing with screwy s390 abi changesEric Andersen2003-10-211-2/+5
|
* ccording to this:Eric Andersen2003-10-201-3/+3
| | | | | | http://sources.redhat.com/ml/binutils/2003-01/msg00290.html The name R_390_GOTOFF was changed to R_390_GOTOFF32. -Erik
* Busybox modprobe has a couple of irritating quirks:Glenn L McGrath2003-09-081-4/+33
| | | | | | | | | | | | | - attempting to modprobe a module that is already loaded yields "Failed to load module", whereas modutils quietly ignores such a request. - if a module genuinely can't be loaded due to missing symbols or similar problems, modprobe doesn't produce any useful diagnostics because the output from insmod has been redirected to /dev/null. Here's a patch to address these issue Patch by Philip Blundell
* To load GPLONLY symbols its is required that CHECK_TAINTED_MODULES beGlenn L McGrath2003-09-032-4/+8
| | | | enabled, if not GPLONLY symbols are ignored.
* "insmod caches the symbolname in a variable before modifying it and usesGlenn L McGrath2003-08-311-3/+12
| | | | the cached value afterwards." - Jean Wolter
* handle GPLONLY symbolsGlenn L McGrath2003-08-301-3/+21
|
* Patch from Paul Mundt (lethal) adding sh64 insmod support for busyboxEric Andersen2003-08-131-10/+72
|
* Steven Scholz writes:Eric Andersen2003-08-061-1/+0
| | | | | | | | | | | | | | the output of lsmod (busybox-1.00-pre2) contains IMHO one "\n" too much when using CONFIG_FEATURE_CHECK_TAINTED_MODULE: ~ # lsmod Module Size Used by Tainted: P ds 8364 1 m8xx_pcmcia 5388 1 pcmcia_core 40736 0 [ds m8xx_pcmcia] and this patch from Steven fixes the problem
* Document CONFIG_FEATURE_INSMOD_LOADINKMEMEric Andersen2003-07-221-1/+4
|
* Patch from Terje Kvernes adding quite a lot of missing documentationEric Andersen2003-07-221-5/+10
|
* Remove remaining libc5 support codeEric Andersen2003-07-221-3/+3
|
* Update a bunch of docs. Run a script to update my email addr.Eric Andersen2003-07-145-9/+7
|
* Patch from Thomas Cameron:Eric Andersen2003-07-141-2/+3
| | | | | | | | | | | Hello all, This patch adds more "Help" text to the config system. Almost all applets now have a help entry. Also, I cleaned up the spacing of the existing text so that things are consistent. This patch is against this morning's CVS. Thomas Cameron CEI Systems, Inc.
* Patch from Kent Robotti adding a bunch of needed docs!Eric Andersen2003-07-051-3/+3
| | | | -Erik
* Fall back to looking in /lib/modules/modules.dep ifEric Andersen2003-06-201-2/+7
| | | | /lib/modules/<kernel version>/modules.dep is missing
* Patch from Andrew Dennison:Eric Andersen2003-06-201-13/+25
| | | | | | | | | | | | | | | | | | I've had some issues with modprobe which I reported a few months ago. This is still an issue so I decided to sort it out. The attached diff includes the changes against the unstable cvs tree that work for me. Changes are: mod_process() will report success if the module at the head of the list loads successfully. It will also report success if any module unloads successfully. The net result being that modprobe will succeed in the cases outlined below. I've also added error reporting to modprobe -r. Previously it would silently fail (but report success) if the module could not be unloaded. Andrew
* Rename, to specify kernelGlenn L McGrath2003-03-301-1/+1
|
* Major coreutils update.Manuel Novoa III2003-03-194-91/+92
|
* Fix obviously wrong names from older busyboxEric Andersen2003-03-131-7/+7
|
* Patch from Jason McMullan @ linuxcare.com adding insmodEric Andersen2003-01-231-2/+98
| | | | support for s390 systems.
* Patch from Artem Egorkine to support the -m optionEric Andersen2003-01-232-2/+132
|
* Patch from Joel Vallier to add modules symbols to the kernel symbolEric Andersen2003-01-232-2/+185
| | | | table in order to obtain better debug output from ksymoops.
* Patch from Robert Schwebel fixing a missing \nEric Andersen2003-01-111-0/+1
|
* rmmod -a removed modules recursivelyTim Riker2002-12-142-19/+18
|
* cleanupTim Riker2002-12-131-0/+3
|
* Yet another major rework of the BusyBox config system, using the considerablyEric Andersen2002-12-052-37/+84
| | | | | | | | modified Kbuild system I put into uClibc. With this, there should be no more need to modify Rules.mak since I've moved all the interesting options into the config system. I think I've got everything updated, but you never know, I may have made some mistakes, so watch closely. -Erik
* print an error message if we can't load a moduleRobert Griebl2002-12-031-2/+4
|
* Change if(x)free(x); to free(x);Aaron Lehmann2002-11-281-4/+3
|
* Fix needless formatting differences vs modutilsEric Andersen2002-10-181-8/+8
|
* Doh! I screwed up applying vodz' patch.Eric Andersen2002-10-121-1/+0
| | | | -Erik
* last_patch61 from vodz:Eric Andersen2002-10-103-18/+20
| | | | | | | | | New complex patch for decrease size devel version. Requires previous patch. Also removed small problems from dutmp and tar applets. Also includes vodz' last_patch61_2: Last patch correcting comment for #endif and more integrated with libbb (very reduce size if used "cat" applet also). Requires last_patch61 for modutils/config.in.
* Fix missing \n noticed by Robert SchwebelEric Andersen2002-10-081-3/+2
|
* Support module taintingEric Andersen2002-09-162-4/+146
| | | | -Erik
* Some CML1 grammar fixesEric Andersen2002-09-011-1/+1
| | | | -Erik
* for some baffling reason tinycc insists that i change this 0 to NULLAaron Lehmann2002-08-231-1/+1
|
* - updated a few copyright/left file headersRobert Griebl2002-08-051-2/+17
| | | | - documented most of my 0.61 changes in the ChangeLog
* Fixed a bug that I had introduced with the new "options" handling.Robert Griebl2002-07-291-7/+8
|
* modprobe now also uses "options" from /etc/modules.confRobert Griebl2002-07-261-55/+99
|
* Fixed two compiler warningsRobert Griebl2002-07-211-3/+3
|