diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-08-08 10:42:16 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-08-08 10:42:16 +0000 |
commit | 56b573476e2ea63a509ab2f8ec0683397ae7c85e (patch) | |
tree | 0b075efca3de395e4165a97c4b314f88a69e8672 /perl-install/partition_table/raw.pm | |
parent | 27379879c56c139b61dd3312001b7aab4e8388de (diff) | |
download | drakx-56b573476e2ea63a509ab2f8ec0683397ae7c85e.tar drakx-56b573476e2ea63a509ab2f8ec0683397ae7c85e.tar.gz drakx-56b573476e2ea63a509ab2f8ec0683397ae7c85e.tar.bz2 drakx-56b573476e2ea63a509ab2f8ec0683397ae7c85e.tar.xz drakx-56b573476e2ea63a509ab2f8ec0683397ae7c85e.zip |
- diskdrake:
o do not show partition types which have no associated filesystem
for LVM LV (#32326)
nb: we still would need to have pt_type per partition_table types
Diffstat (limited to 'perl-install/partition_table/raw.pm')
-rw-r--r-- | perl-install/partition_table/raw.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/partition_table/raw.pm b/perl-install/partition_table/raw.pm index 35a67ebd8..f84876f04 100644 --- a/perl-install/partition_table/raw.pm +++ b/perl-install/partition_table/raw.pm @@ -55,6 +55,7 @@ if_(arch() =~ /ppc/, sub typeOfMBR($) { typeFromMagic(devices::make($_[0]), @MBR_signatures) } sub typeOfMBR_($) { typeFromMagic($_[0], @MBR_signatures) } +sub use_pt_type { 0 } sub hasExtended { 0 } sub set_best_geometry_for_the_partition_table {} |