diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-06-13 04:33:50 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-06-13 04:33:50 +0000 |
commit | 967d8ec6e7be57b1cdfc4ff1538044bc07b4db53 (patch) | |
tree | 9058f29a529d3b7a9ef15cc0cd5624c0f2f5396f /rescue/restore_ms_boot | |
parent | 4b962e51805bd35269788b7e7fb96b84635651c8 (diff) | |
download | drakx-967d8ec6e7be57b1cdfc4ff1538044bc07b4db53.tar drakx-967d8ec6e7be57b1cdfc4ff1538044bc07b4db53.tar.gz drakx-967d8ec6e7be57b1cdfc4ff1538044bc07b4db53.tar.bz2 drakx-967d8ec6e7be57b1cdfc4ff1538044bc07b4db53.tar.xz drakx-967d8ec6e7be57b1cdfc4ff1538044bc07b4db53.zip |
move functions using /proc/partitions out of fsedit to fs::proc_partitions
Diffstat (limited to 'rescue/restore_ms_boot')
-rwxr-xr-x | rescue/restore_ms_boot | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/rescue/restore_ms_boot b/rescue/restore_ms_boot index c9eaf550e..b31fd112e 100755 --- a/rescue/restore_ms_boot +++ b/rescue/restore_ms_boot @@ -16,12 +16,13 @@ use lib qw(../perl-install /usr/lib/libDrakX); use common; use bootloader; use fs; +use fs::proc_partitions; my @choices = map { my $type = typeFromMagic(devices::make($_->{dev})); if_($type && member($type, bootloader::main_method_choices()) , [ $_->{dev}, $type ]); -} devices::read_proc_partitions_raw(); +} fs::proc_partitions::read_raw(); my $choice; @@ -54,6 +55,9 @@ Ok? <press Enter to continue, 'n' and Enter to cancel> "; #------------------------------------------------- #- $Log$ +#- Revision 1.5 2005/06/13 04:33:50 prigaux +#- move functions using /proc/partitions out of fsedit to fs::proc_partitions +#- #- Revision 1.4 2005/05/19 08:59:54 prigaux #- rewrite using DrakX modules #- |