Skip to content

Instantly share code, notes, and snippets.

@mshuler
Created September 10, 2013 00:31
Show Gist options
  • Save mshuler/6503453 to your computer and use it in GitHub Desktop.
Save mshuler/6503453 to your computer and use it in GitHub Desktop.
ThinkPad BIOS Update CD via GRUB2
#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
##
menuentry "ThinkPad BIOS Update CD" {
set root='(hd0,msdos1)'
echo 'Loading memdisk ...'
linux16 /boot/memdisk iso
echo 'Loading BIOS ISO ...'
initrd16 /boot/6quj19us.iso
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment