Created
September 10, 2013 00:31
-
-
Save mshuler/6503453 to your computer and use it in GitHub Desktop.
ThinkPad BIOS Update CD via GRUB2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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