diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-09-20 01:49:13 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-09-20 01:49:13 +0000 |
commit | e55184eed334811efc27b79948c2956a4b35f18b (patch) | |
tree | 1c1f0ef3f006662976c5bfdb17c43f6ff5afffdb /perl-install/network/tools.pm | |
parent | 1ea3578bfb4c6b4ef7b3854ce4561d8bc9afaef4 (diff) | |
download | drakx-e55184eed334811efc27b79948c2956a4b35f18b.tar drakx-e55184eed334811efc27b79948c2956a4b35f18b.tar.gz drakx-e55184eed334811efc27b79948c2956a4b35f18b.tar.bz2 drakx-e55184eed334811efc27b79948c2956a4b35f18b.tar.xz drakx-e55184eed334811efc27b79948c2956a4b35f18b.zip |
- don't use fs::get_info_from_fstab() in install_any::use_root_part() to be able to handle
renamed devices
- fs::get_info_from_fstab() doesn't take a prefix anymore
- small perl_checker fix in install_any.pm
Diffstat (limited to 'perl-install/network/tools.pm')
-rw-r--r-- | perl-install/network/tools.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/tools.pm b/perl-install/network/tools.pm index 897d83235..e1d59c69f 100644 --- a/perl-install/network/tools.pm +++ b/perl-install/network/tools.pm @@ -177,7 +177,7 @@ sub remove_initscript() { sub use_windows { my ($file) = @_; my $all_hds = fsedit::get_hds({}, undef); - fs::get_info_from_fstab($all_hds, ''); + fs::get_info_from_fstab($all_hds); my $part = find { $_->{device_windobe} eq 'C' } fs::get::fstab($all_hds); $part or my $failed = N("No partition available"); my $source = find { -d $_ && -r "$_/$file" } map { "$part->{mntpoint}/$_" } qw(windows/system winnt/system windows/system32/drivers winnt/system32/drivers); |