diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-09-20 09:46:40 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-09-20 09:46:40 +0000 |
commit | 651a256ee82c18578c3f551e89d3bcadaf68ab43 (patch) | |
tree | abe7390dbcf53aa1d6028e07eaf3d633fe70c9b7 /perl-install/install_steps.pm | |
parent | 67ac3075349e74f4984ea04d19569c19ca1efa70 (diff) | |
download | drakx-651a256ee82c18578c3f551e89d3bcadaf68ab43.tar drakx-651a256ee82c18578c3f551e89d3bcadaf68ab43.tar.gz drakx-651a256ee82c18578c3f551e89d3bcadaf68ab43.tar.bz2 drakx-651a256ee82c18578c3f551e89d3bcadaf68ab43.tar.xz drakx-651a256ee82c18578c3f551e89d3bcadaf68ab43.zip |
- add field {part_number} for partitions
(handle it in subpart_from_wild_device_name(), partition_table::read())
- create migrate_device_names() to handle the change of device names when
changing kernel&modules (eg: hde->hda or hda->sda)
- change prototype of install_any::use_root_part()
(prefix is dropped, optional $in is added)
- create fs::type::can_be_this_fs_type() and use it
- create devices::part_number() and devices::part_prefix() and use them
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 fe8f207e2..f1198479f 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -170,7 +170,7 @@ sub selectInstallClass { if ($o->{partitioning}{use_existing_root} || $o->{isUpgrade}) { # either one root is defined (and all is ok), or we take the first one we find my $p = fs::get::root_($o->{fstab}) || (first(install_any::find_root_parts($o->{fstab}, $o->{prefix})) || die)->{part}; - install_any::use_root_part($o->{all_hds}, $p, $o->{prefix}); + install_any::use_root_part($o->{all_hds}, $p); } } |