summaryrefslogtreecommitdiffstats
path: root/perl-install/modules/modprobe_conf.pm
Commit message (Collapse)AuthorAgeFilesLines
* make modules::*::get_above return a list, and thus fix loading of tifm_sd ↵Olivier Blin2007-09-161-1/+1
| | | | module during install
* when installing on kernel 2.4, do generate a valid modprobe.conf anywayPascal Rigaux2004-09-071-2/+6
|
* really parse modules file according to its type when reading it (always call ↵Olivier Blin2004-08-241-1/+1
| | | | $conf->read, split modules::any_conf::read in modules::any_conf::read_handled)
* perl_checker compliancePascal Rigaux2004-08-101-1/+1
|
* internally keep module names according to what we configure (and our kernel, ↵Pascal Rigaux2004-08-101-2/+11
| | | | 2.4 or 2.6)
* add $IdPascal Rigaux2004-07-221-1/+1
|
* modules::modprobe_conf now works (at least a little :)Pascal Rigaux2004-07-221-46/+88
|
* - %modules::conf is no more a global, so many functions need passing ↵Pascal Rigaux2004-07-211-0/+108
$modules_conf - $modules_conf is a class choosing modules.conf or modprobe.conf (esp. useful after install) (but not working yet!) - modules::load() doesn't use $modules_conf, use modules::load_and_configure() - modules::load() doesn't allow options, use either modules::load_raw() or modules::load_and_configure() - some functions used to want an array ref for modules options and some a string, now every functions use a string - many functions (like modules::get_alias()) are now methods on $modules_conf - some functions in mouse.pm needed a $in where a $do_pkgs is enough - some perl_checker compliance - small fixes