diff options
author | Stew Benedict <stewb@mandriva.org> | 2001-06-13 13:11:42 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2001-06-13 13:11:42 +0000 |
commit | 34a5d9236366d112abaaeb2b2ac0bd1738dd3220 (patch) | |
tree | f5e73c75eae54f3b375d1ded03f10d6de7a67ab2 /perl-install/fs.pm | |
parent | af925bb47f73e716618cc063c56b4cfc4b04e6b4 (diff) | |
download | drakx-34a5d9236366d112abaaeb2b2ac0bd1738dd3220.tar drakx-34a5d9236366d112abaaeb2b2ac0bd1738dd3220.tar.gz drakx-34a5d9236366d112abaaeb2b2ac0bd1738dd3220.tar.bz2 drakx-34a5d9236366d112abaaeb2b2ac0bd1738dd3220.tar.xz drakx-34a5d9236366d112abaaeb2b2ac0bd1738dd3220.zip |
fix HFS partition mount/format issue, offer /mnt/macos, modem detection
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r-- | perl-install/fs.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index cc42a96a4..60bbafeb0 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -212,6 +212,8 @@ sub mount($$$;$) { $mount_opt = 'check=relaxed'; eval { modules::load('vfat') }; #- try using vfat eval { modules::load('msdos') } if $@; #- otherwise msdos... + } elsif ($fs eq 'hfs') { + eval { modules::load('hfs') }; } elsif ($fs eq 'ufs') { eval { modules::load('ufs') }; } elsif ($fs eq 'xfs') { |