diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-08-28 18:08:03 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-08-28 18:08:03 +0000 |
commit | e94ae685f0dea15ec01eabfb18e671eb1a4ecb9e (patch) | |
tree | a72f3a9a28d05e39b6e3613c8a16fe669e841e04 /perl-install/detect_devices.pm | |
parent | 5a04b7f1c4d52dd849dad0fc1a3aef54dd43877d (diff) | |
download | drakx-e94ae685f0dea15ec01eabfb18e671eb1a4ecb9e.tar drakx-e94ae685f0dea15ec01eabfb18e671eb1a4ecb9e.tar.gz drakx-e94ae685f0dea15ec01eabfb18e671eb1a4ecb9e.tar.bz2 drakx-e94ae685f0dea15ec01eabfb18e671eb1a4ecb9e.tar.xz drakx-e94ae685f0dea15ec01eabfb18e671eb1a4ecb9e.zip |
create detect_devices::suggest_mount_point and use it instead of doing it in fs::set_removable_mntpoints
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r-- | perl-install/detect_devices.pm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index e8b728b6e..8c647bdb3 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -681,4 +681,20 @@ sub is_a_recent_computer { $frequence > 600; } +sub suggest_mount_point { + my ($e) = @_; + + my $name = $e->{media_type}; + if (member($name, 'hd', 'fd')) { + if (isZipDrive($e)) { + $name = 'zip'; + } elsif ($name eq 'fd') { + $name = 'floppy'; + } else { + log::l("set_removable_mntpoints: don't know what to with hd $e->{device}"); + } + } + $name; +} + 1; |