From 60388ddf1ecf1a9fc229b4cb2e91852e62c9844a Mon Sep 17 00:00:00 2001 From: ladams00 Date: Tue, 26 Dec 2017 22:52:21 -0800 Subject: [PATCH] Added "ipmi=on" to channel setaccess so ipmi user can remotely hit bmc on Intel S2600 compute boards (not enabled out of box). --- xCAT-genesis-scripts/bin/bmcsetup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xCAT-genesis-scripts/bin/bmcsetup b/xCAT-genesis-scripts/bin/bmcsetup index 151e5d12d..5a732b25f 100755 --- a/xCAT-genesis-scripts/bin/bmcsetup +++ b/xCAT-genesis-scripts/bin/bmcsetup @@ -481,8 +481,8 @@ for user in $BMCUS; do fi TRIES=0 - # Enable the channel link for the specified user - while ! ipmitool -d $idev channel setaccess $LANCHAN $USERSLOT link=on; do + # Enable the channel and ipmi link for the specified user + while ! ipmitool -d $idev channel setaccess $LANCHAN $USERSLOT link=on ipmi=on; do sleep 1 let TRIES=TRIES+1 if [ $TRIES -gt $TIMEOUT ]; then break; fi