Dear All,

We have found an issue with ipmi plugin where it detects the machine as 'Intel Machine' and uses '-o intelplus' with ipmitool command. By using this option the console doesn't work.

We have added another IF condition to get rid of this issue.

Here is the patch:


--- ipmi.orig    2013-11-07 17:05:17.441670697 +0000
+++ ipmi    2013-11-07 17:10:14.539671056 +0000
@@ -124,6 +124,9 @@
     $iface="lan";
 } elsif (grep /Manufacturer ID           : 343/,@mcinfo) {
     $isintel=1;
+    if (grep /Product ID                : 78/,@mcinfo) {
+        $isintel=0;
+    }
 }
 my $inteloption="";
 if ($isintel) {



ipmitool mc info shows this information:

Device ID                 : 33
Device Revision           : 1
Firmware Revision         : 1.19
IPMI Version              : 2.0
Manufacturer ID           : 343
Manufacturer Name         : Intel Corporation
Product ID                : 78 (0x004e)
Product Name              : Unknown (0x4E)
Device Available          : yes
Provides Device SDRs      : no
Additional Device Support :
    Sensor Device
    SDR Repository Device
    SEL Device
    FRU Inventory Device
    IPMB Event Receiver
    IPMB Event Generator
    Chassis Device
Aux Firmware Rev Info     :
    0x01
    0x17
    0x9a
    0x13

--
Qamar Nazir

Best Regards,

*Qamar Nazir*


------------------------------------------------------------------------------
November Webinars for C, C++, Fortran Developers
Accelerate application performance with scalable programming models. Explore
techniques for threading, error checking, porting, and tuning. Get the most 
from the latest Intel processors and coprocessors. See abstracts and register
http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk
_______________________________________________
xCAT-user mailing list
xCAT-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xcat-user

Reply via email to