Change dmidecode detection of Hitachi Virtage.
authorMasaki Kimura <masaki.kimura.kz@hitachi.com>
Tue, 18 Sep 2012 07:56:52 +0000 (08:56 +0100)
committerRichard W.M. Jones <rjones@redhat.com>
Tue, 18 Sep 2012 07:58:16 +0000 (08:58 +0100)
Hitachi plans to change dmidecode output in the future release of
Virtage.  By this change, some of Virtage models will not output "HVM"
before LPAR in "Product Name" field, which current virt-what code uses
to detect Virtage.  Therefore we need to change Virtage check routine.

virt-what.in

index cc5c93c..21488e7 100644 (file)
@@ -153,7 +153,7 @@ fi
 
 # Check for Hitachi Virtualization Manager (HVM) Virtage logical partitioning.
 if echo "$dmi" | grep -q 'Manufacturer.*HITACHI' &&
-   echo "$dmi" | grep -q 'Product.*HVM LPAR'; then
+   echo "$dmi" | grep -q 'Product.* LPAR'; then
     echo virtage
 fi