diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2017-01-22 10:12:48 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2017-01-22 10:13:52 +0100 |
commit | 0a19f082255e3f581074ca82d25cce826f59d370 (patch) | |
tree | 8ccaaac47c5257911a4839c4cabcb885d5626672 /perl-install/partition_table.pm | |
parent | e7fb2049d3c8d1528c9f12aaade1e9143e19f120 (diff) | |
download | drakx-0a19f082255e3f581074ca82d25cce826f59d370.tar drakx-0a19f082255e3f581074ca82d25cce826f59d370.tar.gz drakx-0a19f082255e3f581074ca82d25cce826f59d370.tar.bz2 drakx-0a19f082255e3f581074ca82d25cce826f59d370.tar.xz drakx-0a19f082255e3f581074ca82d25cce826f59d370.zip |
convert some comments to POD
Diffstat (limited to 'perl-install/partition_table.pm')
-rw-r--r-- | perl-install/partition_table.pm | 41 |
1 files changed, 35 insertions, 6 deletions
diff --git a/perl-install/partition_table.pm b/perl-install/partition_table.pm index c5dc435bb..c99cb10f8 100644 --- a/perl-install/partition_table.pm +++ b/perl-install/partition_table.pm @@ -32,7 +32,12 @@ sub hd2minimal_part { }; } -#- works for both hard disk drives and partitions ;p +=item description($hd) + +Works for both hard disk drives and partitions ;p + +=cut + sub description { my ($hd) = @_; my $win = $hd->{device_windobe}; @@ -46,7 +51,12 @@ sub description { $hd->{info}, $hd->{mntpoint}, $hd->{fs_type}); } -#- align partition start to the next MB boundary +=item align_to_MB_boundaries($part) + +Align partition start to the next MB boundary + +=cut + sub align_to_MB_boundaries { my ($part) = @_; @@ -448,7 +458,12 @@ sub tell_kernel { } } -# write the partition table +=item write($hd) + +Write the partition table + +=cut + sub write { my ($hd) = @_; $hd->{isDirty} or return; @@ -500,8 +515,12 @@ sub active { $hd->{isDirty} = 1; } +=item remove($hd, $part) + +Remove a normal partition from hard disk drive $hd + +=cut -# remove a normal partition from hard disk drive hd sub remove { my ($hd, $part) = @_; my $i; @@ -541,7 +560,12 @@ sub remove { 0; } -# create of partition at starting at `start', of size `size' and of type `pt_type' (nice comment, uh?) +=item add_primary($hd, $part) + +Create of partition at starting at `start', of size `size' and of type `pt_type' + +=cut + sub add_primary { my ($hd, $part) = @_; @@ -632,7 +656,12 @@ sub add { will_tell_kernel($hd, add => $part); } -# search for the next partition +=item next($hd, $part) + +Search for the next partition + +=cut + sub next { my ($hd, $part) = @_; |