Upgrading Firmware on ESXi

A bane of any system administrator’s existence is the constant stream of firmware updates to fix various bugs and issues that occur. One of these HBA Firmware updates is a fairly common issue where a new LUN or Target is not being discovered without a reboot. With Emulex there is a set of tools called the HBAanywhere that can be installed onto ESX Classic. Then you can perform an Emulex HBA Firmware upgrade without having to reboot the ESX Host.

Example script:

1
2
3
4
cd /usr/sbin/hbanywhere
./hbacmd listhbas
./hbacmd download 00:00:01:02:03:04:05 zd282a4.all
./hbacmd hbaattributes 00:00:01:02:03:04:05

With this you have just updated the firmware to 2.82a4 on an LPe11000-M4 card.

With ESXi it isn’t that easy since hbacmd isn’t available. The solution I came up with is to create a bootable WinPE CD with the Emulex Tools and firmware available on it. Then all you have to do is boot off this CD and you will be able to update your 10G CNA or your Emulex LPe12000 HBAs.

This script expects you to have the Windows AIK installed locally. Just update this script to point at the appropriate locations of the listed files.

CustomEmulexWinPE.cmd – Run this to create a bootable ISO that will install the Emulex WinPE utilities & drivers and then attempt to upgrade the 10G CNA & LPe12000 cards in the system.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
call "C:Program FilesWindows AIKToolsPEToolspesetenv.cmd"
 
call copype x86 EmulexWinPE
 
imagex /mountrw Winpe.wim 1 mount
 
mkdir mountEmulex
xcopy "setupElxAll-x86.exe" mountEmulex
xcopy /s "Firmware" mountEmulex
del mountWindowsSystem32startnet.cmd
xcopy "startnet.cmd" mountWindowsSystem32startnet.cmd
 
peimg /prep mountWindows
imagex /unmount mount /commit
copy winpe.wim ISOsourcesboot.wim
 
oscdimg -n -betfsboot.com ISO EmulexWinPE.iso

startnet.cmd – This runs on boot and will attempt to update the 10G CNA & the Emulex LPe12000 cards in the system.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
wpeinit
 
EmulexsetupElxAll-x86.exe /q
cd "Program FilesEmulexUtilelxApp"
 
winlpcfg download a=lpe12000-m8 i=emulexlpe12000ud111a5.all
winlpcfg download a=lpe12000-m8 i=emulexlpe12000ub202a2.prg
 
winlpcfg download n=1 i=emulexoce10102s1462001.ufi
winlpcfg download n=2 i=emulexoce10102s1462001.ufi
winlpcfg download n=3 i=emulexoce10102s1462001.ufi
winlpcfg download n=4 i=emulexoce10102s1462001.ufi
 
winlpcfg listhba

Once this script is done running you’ll have a EmulexWinPE.iso that you can mount and boot off of. It will automatically run and upgrade the firmware of the Emulex devices.

This basic setup should allow you to do anything scripting wise you need to do in a Windows environment to update the hardware configuration or run various diagnostics tests outside of ESXi.

Download Locations:
setupElxAll-x86.exe
Windows AIK
Emulex Firmware – Download as needed and update the location you copy it to your WinPE ISO file in the Startnet.cmd and in the CustomEmulexWinPE.cmd.

Upgrading Power Management Firmware on HP Blades

When you update your Onboard Administrator on HP c-Chassis to 2.5x, the OA will start to check if the Power Management version is new enough and if it is not it will give you a Major Error with details of : C01668472

To update this you need to either have a running OS or you can do the following steps using tools you have already downloaded most likely.

bbFirmware CD 1.60
PowerManagement 3.4D Linux install

  1. Boot off bbFirmware CD via the iLO Virtual Media
  2. At the boot: prompt type in console and hit enter.  Don’t hit the default.
  3. Wait for a console shell prompt to come up.  This may take a couple minutes.
  4. Mount a Folder (which will show up as a USB device to the OS) via the iLO to the directory you have put the PowerManagement update in.   It is smart to minimize how many files are in that directory.
  5. Type in mkdir /mnt/power
  6. Type in mount /dev/sda /mnt/power
  7. Type in cd /mnt/power
  8. Type in ./CP011627.scexe
  9. Once this is complete go ahead and reboot the box via the iLO.

That should address this issue.