From 70605f61c8e145857853a1d8afdf034cd4f2fc18 Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Wed, 27 May 2009 12:58:04 +0000 Subject: do not ignore FB-DIMM memory --- perl-install/NEWS | 3 ++- perl-install/detect_devices.pm | 2 +- perl-install/install/NEWS | 2 ++ 3 files changed, 5 insertions(+), 2 deletions(-) (limited to 'perl-install') diff --git a/perl-install/NEWS b/perl-install/NEWS index 51a43a9a6..e65c0604f 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -4,10 +4,11 @@ - add support for ElanTech touchpads (found on EEEPCs) - harddrake: o adding sierra module to network/cellular. -- harddrake o fix detecting scanners - scannerdrake: o do not reject scanners handled by 'usbcore' driver +- detect_devices: + o don't ignore FB-DIMM memory Version 12.32 - 23 April 2009 diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 741a0dfd6..02dd6ef4f 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -1043,7 +1043,7 @@ sub dmidecode_category { #- size in MB sub dmi_detect_memory() { my @l1 = map { $_->{'Enabled Size'} =~ /(\d+) MB/ && $1 } dmidecode_category('Memory Module'); - my @l2 = map { $_->{'Form Factor'} =~ /^(SIMM|SIP|DIP|DIMM|RIMM|SODIMM|SRIMM)$/ && + my @l2 = map { $_->{'Form Factor'} =~ /^(SIMM|SIP|DIP|DIMM|FB-DIMM|RIMM|SODIMM|SRIMM)$/ && ($_->{Size} =~ /(\d+) MB/ && $1 || $_->{Size} =~ /(\d+) kB/ && $1 * 1024); } dmidecode_category('Memory Device'); max(sum(@l1), sum(@l2)); diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 099c33a0a..b59cc8ee3 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- don't ignore FB-DIMM memory + Version 12.35 - 24 April 2009 - remove unused parameter in installPackages -- cgit v1.2.1