diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-12-21 14:36:05 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-12-21 14:36:05 +0000 |
commit | c0594dc68e91165a1c5357296a6a5bcda2bfe2b1 (patch) | |
tree | 8e06034828b73a2fa8e247e3ab457efab143ac54 /perl-install/install_steps.pm | |
parent | 859695925c701d7408c0f97825512e2260998fd2 (diff) | |
download | drakx-c0594dc68e91165a1c5357296a6a5bcda2bfe2b1.tar drakx-c0594dc68e91165a1c5357296a6a5bcda2bfe2b1.tar.gz drakx-c0594dc68e91165a1c5357296a6a5bcda2bfe2b1.tar.bz2 drakx-c0594dc68e91165a1c5357296a6a5bcda2bfe2b1.tar.xz drakx-c0594dc68e91165a1c5357296a6a5bcda2bfe2b1.zip |
- fs::mount() wants a real device or a faked one, but doesn't accept things like fd0 anymore (give it /dev/fd0)
- a little more robust analyze_wild_device_name() during install
- handle bad things in subpart_from_wild_device_name()
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 12516e4da..e139b4b64 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -622,7 +622,7 @@ sub updateModulesFromFloppy { my ($o) = @_; return if $::testing; - fs::mount($o->{updatemodules}, "/floppy", "ext2", 0); + fs::mount(devices::make($o->{updatemodules}), "/floppy", "ext2", 0); foreach my $kernel_version (all("$::prefix/lib/modules")) { log::l("examining updated modules for kernel $kernel_version"); -d "/floppy/$kernel_version" or next; |