diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/partition_table/gpt.pm | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 932903c0b..c1182f8e1 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- diskdrake: + o first usable sector is LBA34 for GPT - drakboot: o fix .old backup for grub2's grub.cfg - authentication: add support for sha256/sha512 and default to sha512 diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 83e1e0380..3686461a8 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,7 @@ - bootloader configuration: o fix .old backup for grub2's grub.cfg +- partionning: + o first usable sector is LBA34 for GPT Version 17.52 - 17 July 2016 diff --git a/perl-install/partition_table/gpt.pm b/perl-install/partition_table/gpt.pm index 47cfa842e..3ac6673d6 100644 --- a/perl-install/partition_table/gpt.pm +++ b/perl-install/partition_table/gpt.pm @@ -14,6 +14,8 @@ my $nb_primary = 128; # See https://en.wikipedia.org/wiki/GUID_Partition_Table#Partition_type_GUIDs for a list of exitings GUIDs +sub first_usable_sector { 34 } + sub last_usable_sector { my ($hd) = @_; #- do not use totalsectors because backup GPT is at end |