Changeset 5992

Show
Ignore:
Timestamp:
07/22/11 10:42:02 (10 months ago)
Author:
khali
Message:

Print DMI system/product version if available. On some laptops, the
actual model name is in this string.

Location:
lm-sensors/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/CHANGES

    r5991 r5992  
    55  sensors-detect: Stop calling for PIIX5 SMBus testers 
    66                  Improve filtering of fake DMI data 
     7                  Print DMI system/product version if available 
    78 
    893.3.1 (2011-07-21) 
  • lm-sensors/trunk/prog/detect/sensors-detect

    r5991 r5992  
    27682768                'system product name' => 1, 
    27692769                'system name' => 1, 
     2770                'system version' => 1, 
    27702771        ); 
    27712772        my $dmi_id_dir; 
     
    28122813        if (defined $system) { 
    28132814                print "# System: $system"; 
     2815                print " [$dmi{product_version}]" if defined $dmi{product_version}; 
    28142816                print " (laptop)" if (is_laptop()); 
    28152817                print "\n";