diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-10-19 11:50:18 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-10-19 11:50:18 +0000 |
commit | dfb93ec9c0e54c5401b905590715f258a0811f25 (patch) | |
tree | 5a296d6f350b603f022d35731bd9df41ae8e5fec /perl-install/partition_table_gpt.pm | |
parent | 2267901bf77bbe16b5a391d7469fe2f7d9db68d0 (diff) | |
download | drakx-dfb93ec9c0e54c5401b905590715f258a0811f25.tar drakx-dfb93ec9c0e54c5401b905590715f258a0811f25.tar.gz drakx-dfb93ec9c0e54c5401b905590715f258a0811f25.tar.bz2 drakx-dfb93ec9c0e54c5401b905590715f258a0811f25.tar.xz drakx-dfb93ec9c0e54c5401b905590715f258a0811f25.zip |
add TODO for partition entry guid
Diffstat (limited to 'perl-install/partition_table_gpt.pm')
-rw-r--r-- | perl-install/partition_table_gpt.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/partition_table_gpt.pm b/perl-install/partition_table_gpt.pm index fa9668fd8..134389cd8 100644 --- a/perl-install/partition_table_gpt.pm +++ b/perl-install/partition_table_gpt.pm @@ -147,6 +147,7 @@ sub write { foreach (@$pt) { $_->{ending} = $_->{start} + $_->{size}; + $_->{guid} ||= 'TODO'; $_->{gpt_type} = $gpt_types{$_->{type}} || $_->{gpt_type} || $gpt_types{0x83}; } my $partitionEntries = join('', map { |