diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-09-13 11:30:16 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-12-14 14:08:50 +0100 |
commit | 85c1d97ba8a06cf3deafcce2a65631169ad9a80b (patch) | |
tree | 79b759445f4ddace55a737b8b416a91b4236c299 | |
parent | 3622ab342c302ac3cd21a86cccf66883509c11b4 (diff) | |
download | drakx-85c1d97ba8a06cf3deafcce2a65631169ad9a80b.tar drakx-85c1d97ba8a06cf3deafcce2a65631169ad9a80b.tar.gz drakx-85c1d97ba8a06cf3deafcce2a65631169ad9a80b.tar.bz2 drakx-85c1d97ba8a06cf3deafcce2a65631169ad9a80b.tar.xz drakx-85c1d97ba8a06cf3deafcce2a65631169ad9a80b.zip |
fix detectitng some soft RAID (mga#11139 and the like)
typo introduced by Pascal Terjan in commit f55b5875b on Jan 27 2010
(was: "support ddf1 dmraid")
-rw-r--r-- | perl-install/NEWS | 6 | ||||
-rw-r--r-- | perl-install/fs/dmraid.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 6 |
3 files changed, 9 insertions, 5 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 89634425e..7d5cb6427 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,6 +1,8 @@ - ensure files are installed for nfs (mga#10301) -- detect wifi cards managed by bcma driver (mga#9378) -- detect new kernel-3.10 drivers +- HW detection: + o fix detecting some soft RAID (mga#11139 and the like) + o detect wifi cards managed by ssb driver (mga#9378) + o detect new kernel-3.10 drivers - drakboot: o fix displaying need to install acpi* packages when they're already installed o read/save choosen default entry diff --git a/perl-install/fs/dmraid.pm b/perl-install/fs/dmraid.pm index eae1fdd86..851171c2f 100644 --- a/perl-install/fs/dmraid.pm +++ b/perl-install/fs/dmraid.pm @@ -50,7 +50,7 @@ sub _raid_devices_raw() { $vgs{$l{name}} = 1 if defined $l{spares}; if (/freeing device "(.*)", path "(.*)"/ && defined $vgs{$1}) { log::l("$2 => $1"); - { $2 => $1 } + $2 => $1; } } call_dmraid(qw(-d -s -c -c)); map { diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 55f6e1de9..459e959ca 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,8 +1,10 @@ +- HW detection: + o fix detecting some soft RAID (mga#11139 and the like) + o detect wifi cards managed by ssb driver (mga#9378) + o detect new kernel-3.10 drivers - bootloader: o fix displaying need to install acpi* packages when they're already installed o read/save choosen default entry -- detect wifi cards managed by bcma driver (mga#9378) -- detect new kernel-3.10 drivers Version 15.54 - 17 May 2013 |