From 2e7ee11f9e069cffaf1d4f8f98d98810a20d7e43 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 22 Jan 2008 13:02:08 +0000 Subject: - bootloader-config, diskdrake: o look for LVM PV on non partitioned disk before looking for DOS partition_table (esp. for lilo which puts the DOS magic) --- perl-install/NEWS | 4 ++++ perl-install/install/NEWS | 3 +++ perl-install/partition_table.pm | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/NEWS b/perl-install/NEWS index dd8ced8f6..9f2014ca7 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,7 @@ +- bootloader-config, diskdrake: + o look for LVM PV on non partitioned disk before looking for DOS + partition_table (esp. for lilo which puts the DOS magic) + Version 10.6.6 - 22 January 2008 - bootloader-config: diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index dffcb15ad..5e738afe5 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,6 @@ +- look for LVM PV on non partitioned disk before looking for DOS + partition_table (esp. for lilo which puts the DOS magic) + Version 10.6.7 - 22 January 2008 - add xkb/symbols/inet (which is now needed by default for pc105) diff --git a/perl-install/partition_table.pm b/perl-install/partition_table.pm index 752fe7088..7fec13559 100644 --- a/perl-install/partition_table.pm +++ b/perl-install/partition_table.pm @@ -254,7 +254,7 @@ sub read_primary { #- but other sectors (typically for extended partition ones) have to match this type! my @parttype = ( if_(arch() =~ /^ia64/, 'gpt'), - arch() =~ /^sparc/ ? ('sun', 'bsd') : ('dos', 'lvm', 'bsd', 'sun', 'mac'), + arch() =~ /^sparc/ ? ('sun', 'bsd') : ('lvm', 'dos', 'bsd', 'sun', 'mac'), ); foreach ('empty', @parttype, 'unknown') { /unknown/ and die "unknown partition table format on disk " . $hd->{file}; -- cgit v1.2.1