Difference between revisions of "UEFI update"

From Funtoo
Jump to navigation Jump to search
(Created page with "== Introduction == This guide shows how to update the latest UEFI for your motherboard. You will need bootable UEFI update CD image and USB flash drive. == Format USB drive =...")
 
Line 20: Line 20:


== Copy bootable UEFI update CD image to USB drive ==
== Copy bootable UEFI update CD image to USB drive ==
<console>
# cp ~/Downloads/1yuj18us.iso /mnt/usb/
# cp ~/Downloads/1yuj18us.iso /mnt/usb/
</console>


== Configure grub4dos ==
== Configure grub4dos ==

Revision as of 12:06, September 27, 2014

Introduction

This guide shows how to update the latest UEFI for your motherboard. You will need bootable UEFI update CD image and USB flash drive.

Format USB drive

Create partition and format it to FAT-32. Check dmesg to find out the USB flash drive device node (/dev/sdb in this guide).

root # cfdisk /dev/sdb
root # mkfs.vfat -F 32 /dev/sdb1

Install grub4dos to USB drive

user $ wget http://download.gna.org/grub4dos/grub4dos-0.4.4.zip
user $ unzip grub4dos-0.4.4.zip
user $ cd grub4dos-0.4.4
root # ./bootlace.com /dev/sdb
root # mount /dev/sdb1 /mnt/usb
root # cp grldr menu.lst /mnt/usb/

Copy bootable UEFI update CD image to USB drive

root # cp ~/Downloads/1yuj18us.iso /mnt/usb/

Configure grub4dos

root # nano /mnt/usb/menu.lst
<pre>
title thinkpad-bios
map (hd0,0)/1yuj18us.iso (hd32)
map --hook
chainloader (hd32)
boot
</pre>

Unmount and reboot

root # umount /mnt/usb
root # reboot