diff options
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/partition_table/gpt.pm | 6 |
3 files changed, 8 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index e040d2c9c..de025fcfe 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,4 +1,5 @@ - diskdrake: + o display cosmetics when reading back GPT partitions o fix mnt point for FAT partitions on GTP (mga#15987) o set the proper GUID for FAT partitions on GPT - drakboot: diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index d76bb8f9e..0a06768a9 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,5 @@ - bootloader: + o display cosmetics when reading back GPT partitions o do not detect grub2 on UEFI when there's no bootloader o fix default grub2 kernel parameters (mga#15984) - partitioning: diff --git a/perl-install/partition_table/gpt.pm b/perl-install/partition_table/gpt.pm index 161ea621a..332889e1f 100644 --- a/perl-install/partition_table/gpt.pm +++ b/perl-install/partition_table/gpt.pm @@ -131,6 +131,12 @@ sub read_one { $_->{pt_type} = 0x12; } $_->{fs_type} = $parted_mapping{$_->{fs_type}} if $parted_mapping{$_->{fs_type}}; + + # compatibility with MBR partitions tables: + $_->{pt_type} = 0x82 if $_->{fs_type} eq 'swap'; + $_->{pt_type} = 0x0b if $_->{fs_type} eq 'vfat'; + $_->{pt_type} = 0x83 if $_->{fs_type} =~ /^ext/; + @pt[$_->{part_number}-1] = $_; } |