Added LinuxBIOS tip
authorMichael Prokop <mika@grml.org>
Mon, 16 Jul 2007 19:16:23 +0000 (21:16 +0200)
committerMichael Prokop <mika@grml.org>
Mon, 16 Jul 2007 19:16:23 +0000 (21:16 +0200)
debian/changelog
grml_tips

index 276ca7f..29bc6ee 100644 (file)
@@ -1,3 +1,9 @@
+grml-tips (0.4.3) unstable; urgency=low
+
+  * Added LinuxBIOS tip.
+
+ -- Michael Prokop <mika@grml.org>  Mon, 16 Jul 2007 21:16:13 +0200
+
 grml-tips (0.4.2) unstable; urgency=low
 
   * Added some further tips (SSL debugging, lilo/grub, screenshot,...).
index c1633bc..eca0b6d 100644 (file)
--- a/grml_tips
+++ b/grml_tips
@@ -2673,4 +2673,19 @@ iptables -A FORWARD -i eth0 -o eth0 -d hostB -p tcp --dport portB -j ACCEPT
 iptables -A FORWARD -i eth0 -o eth0 -s hostB -p tcp --sport portB -j ACCEPT
 iptables -t nat -A POSTROUTING -p tcp -d hostB --dport portB -j SNAT --to-source hostA
 -- 
+Flash BIOS without DOS/Windows:
 
+Dump flash info and set the flash chip to writable:
+# flashrom
+
+Backup the original BIOS:
+# flashrom -r backup.bin
+
+Notice: the following step will overwrite your current BIOS!
+So make sure you really know what you are doing.
+
+Flash the BIOS image:
+# flashrom -wv newbios.bin
+
+Also check out LinuxBIOS: http://linuxbios.org/
+--