diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-03-17 20:40:03 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-03-17 20:40:03 +0000 |
commit | e863a16c5313fa6711ca3b48d5f17dc4d5d4a8c0 (patch) | |
tree | 01a22414040f4ff3494a591f722c54458d837ab0 /perl-install/install_steps.pm | |
parent | f5a429dfab1af81bd8d6989825383cb8d94d7fc9 (diff) | |
download | drakx-e863a16c5313fa6711ca3b48d5f17dc4d5d4a8c0.tar drakx-e863a16c5313fa6711ca3b48d5f17dc4d5d4a8c0.tar.gz drakx-e863a16c5313fa6711ca3b48d5f17dc4d5d4a8c0.tar.bz2 drakx-e863a16c5313fa6711ca3b48d5f17dc4d5d4a8c0.tar.xz drakx-e863a16c5313fa6711ca3b48d5f17dc4d5d4a8c0.zip |
give ability to tell in which list_modules category is a module
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index caedbcdf3..333ff3525 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -625,6 +625,22 @@ sub updateModulesFromFloppy { run_program::run("cd /floppy/$kernel_version ; find -type f | cpio -pdu $::prefix/lib/modules/$kernel_version"); run_program::rooted($::prefix, 'depmod', '-a', '-F', "/boot/System.map-$kernel_version", $kernel_version); } + + my $category; + foreach (cat_('/floppy/to_load')) { + chomp; + if (/^#/) { + ($category) = $1 if /\[list_modules: (.*?)\]/; + } elsif ($category) { + log::l("adding $_ to $category\n"); + my $r = \%list_modules::l; + $r = $r->{$_} foreach split('/', $category); + push @$r, $_; + + $category = ''; + } + } + fs::umount("/floppy"); } |