diff options
author | Francois Pons <fpons@mandriva.com> | 2000-05-23 13:07:31 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-05-23 13:07:31 +0000 |
commit | 42fbce3dfc579c4ccaf9521bbc473e960d68c134 (patch) | |
tree | 834f213ba00a1f245a1505332b487bbf5e4d0ba7 /perl-install | |
parent | 3304416733c86c40f897dfb4ab514b27d7f55e17 (diff) | |
download | drakx-42fbce3dfc579c4ccaf9521bbc473e960d68c134.tar drakx-42fbce3dfc579c4ccaf9521bbc473e960d68c134.tar.gz drakx-42fbce3dfc579c4ccaf9521bbc473e960d68c134.tar.bz2 drakx-42fbce3dfc579c4ccaf9521bbc473e960d68c134.tar.xz drakx-42fbce3dfc579c4ccaf9521bbc473e960d68c134.zip |
*** empty log message ***
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/modules.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 881d4f512..58979b307 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -503,7 +503,7 @@ sub write_conf { add_alias('block-major-11', 'scsi_hostadapter') if @l; push @l, "ide-floppy" if detect_devices::ide_zips(); $conf{supermount}{"post-install"} = join " ; ", map { "modprobe $_" } @l if @l; - $conf{"usb-storage"}{"post-install"} = "modprobe usbkbd; modprobe keybdev" if @l; + $conf{"usb-storage"}{"post-install"} = "modprobe usbkbd; modprobe keybdev" if @l && arch() !~ /sparc|alpha/; local *F; open F, ">> $file" or die("cannot write module config file $file: $!\n"); |