BIOS update without optical disk

From ThinkWiki
Revision as of 02:27, 8 April 2009 by Newhren (Talk | contribs)
Jump to: navigation, search

For recent models, such as Thinkpad X200, Lenovo provides both win32 "BIOS update utility" and iso-image of "BIOS Update (Bootable CD)". If you don't have Windows installed, the first option is obviously unavailable for you. If you have an optical drive of some kind (internal, or built into the docking station, or an external USB drive) you can burn the iso-image and proceed with the BIOS update. In case if you don't have any optical drive things get a little tricky.

A quick look at the BIOS Update (Bootable CD) iso-image shows that its iso9660 filesystem is empty and its bootimage is of BootMediaType=4, i.e. it is a harddisk emulation. Therefore non of the methods discussed in BIOS_Upgrade/X_Series would work. There are many Linux tools which extract bootimages from iso-images, but after a search over the net, I didn't any which works correctly with BootMediaType=4 (e.g. geteltorito form genisoimage package messes things up). I found, however, a free open-source DOS utility isobar from shsucd package. So, I just ported it to linux.

Now, to update the BIOS,

  • make sure that you have syslinux installed (we will need memdisk from this package)
apt-get install syslinux
gcc isobar.c -o isobar
  • extract the bootimage from the BIOS Update (Bootable CD) iso-image and copy it to the boot partition
./isobar 6duj08uc.iso -o bios.img
cp bios.img /boot/bios.img
  • copy memdisk loader to the boot partition
cp /usr/lib/syslinux/memdisk /boot/memdisk
  • append the following lines to /boot/grub/menu.lst
title           BIOS update
root            (hd0,0)
kernel          /memdisk
initrd          /bios.img
  • reboot, and in the grub menu choose the BIOS update option