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/standalone/drakboot | |
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/standalone/drakboot')
-rwxr-xr-x | perl-install/standalone/drakboot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index a2b81a559..3f3330d82 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -43,7 +43,7 @@ my $in = 'interactive'->vnew('su'); my $all_hds = fsedit::get_hds(); fs::get_raw_hds('', $all_hds); -fs::get_info_from_fstab($all_hds, ''); +fs::get_info_from_fstab($all_hds); my $fstab = [ fs::get::fstab($all_hds) ]; my $bootloader = bootloader::read($fstab); |