summaryrefslogtreecommitdiffstats
path: root/docs/future/fastboot/grub.cfg.memdisk
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2014-08-11 09:00:00 (EDT)
committer Michał Masłowski <mtjm@mtjm.eu>2014-08-22 14:29:49 (EDT)
commit8df313c4d6607181576471e08d7e909c9c0f33e9 (patch)
tree249f6003e3293fd4049ad57c267fa7ec1c4269e4 /docs/future/fastboot/grub.cfg.memdisk
parent7eca665d684a734d55b0bb26c4f1831d399c5330 (diff)
downloadlibreboot-8df313c4d6607181576471e08d7e909c9c0f33e9.zip
libreboot-8df313c4d6607181576471e08d7e909c9c0f33e9.tar.gz
libreboot-8df313c4d6607181576471e08d7e909c9c0f33e9.tar.bz2
Libreboot release 6 beta 5.
- build: added 'luks', 'lvm', 'cmosdump' and 'cmostest' to the list of modules for grub.elf - Documentation: added pics showing T60 unbricking (still need to write a tutorial) - build: include cmos.layout (coreboot/src/mainboard/manufacturer/model/cmos.layout) files in libreboot_bin - Documentation: added ../docs/howtos/x60tablet_unbrick.html - Documentation: added ../docs/howtos/t60_unbrick.html - Documentation: added ../docs/howtos/t60_lcd_15.html - Documentation: added ../docs/howtos/t60_security.html - Documentation: added ../docs/howtos/t60_heatsink.html - Documentation: Renamed RELEASE.html to release.html - Documentation: removed pcmcia reference in x60_security.html (it's cardbus) - Documentation: added preliminary information about randomized seal (for physical intrusion detection) in x60_security.html and t60_security.html - Documentation: added preliminary information about preventing/mitigating cold-boot attack in x60_security.html and t60_security.html - Documentation: added info to ../docs/index.html#macbook21 warning about issues with macbook21 - Documentation: X60/T60: added information about checking custom ROM's using dd to see whether or not the top 64K region is duplicated below top or not. Advise caution about this in the tutorial that deals with flashing on top of Lenovo BIOS, citing the correct dd commands necessary if it is confirmed that the ROM has not been applied with dd yet. (in the case that the user compiled their own ROM's from libreboot, without using the build scripts, or if they forgot to use dd, etc). - Split resources/libreboot/patch/gitdiff into separate patch files (getcb script updated to accomodate this change). - Re-added .git files to bucts - Fixed the oversight where macbook21_firstflash wasn't included in binary archives
Diffstat (limited to 'docs/future/fastboot/grub.cfg.memdisk')
-rw-r--r--docs/future/fastboot/grub.cfg.memdisk106
1 files changed, 106 insertions, 0 deletions
diff --git a/docs/future/fastboot/grub.cfg.memdisk b/docs/future/fastboot/grub.cfg.memdisk
new file mode 100644
index 0000000..fb3a652
--- /dev/null
+++ b/docs/future/fastboot/grub.cfg.memdisk
@@ -0,0 +1,106 @@
+#### This goes into the memdisk (3rd alternative: hard drive not found and no config file in the cbfs)
+
+### Add regular keyboard support
+terminal_input --append at_keyboard
+
+### We are standalone
+set prefix=(memdisk)/boot/grub
+
+### If grub.cfg is on the disk or the cbfs, try to load it
+if [ -f "(ahci0,1)/grub.cfg" ] ; then
+ source (ahci0,1)/grub.cfg
+else
+ if [ -f "(ahci0,2)/grub.cfg" ] ; then
+ source (ahci0,2)/grub.cfg
+ else
+ if [ -f "(ahci0,3)/grub.cfg" ] ; then
+ source (ahci0,3)/grub.cfg
+ else
+ if [ -f "(ahci0,4)/grub.cfg" ] ; then
+ source (ahci0,4)/grub.cfg
+ else
+ if [ -f "(cbfsdisk)/etc/grub.cfg" ] ; then
+ # play 1 beep to say something is wrong
+ play 480 440 1
+ source (cbfsdisk)/etc/grub.cfg
+ else
+ # play 2 beeps to say something is quite wrong
+ play 480 440 1
+ play 480 440 1
+ # add integrated serial port:
+ serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
+ terminal_input --append serial
+ terminal_output --append serial
+ # add usb serial:
+ insmod nativedisk
+ insmod ehci
+ insmod ohci
+ insmod uhci
+ insmod usb
+ insmod usbserial_pl2303
+ insmod usbserial_ftdi
+ insmod usbserial_usbdebug
+ serial --speed=115200 --word=8 --parity=no --stop=1 usb1
+ terminal_input --append serial_usb1
+ terminal_output --append serial_usb1
+
+ # Default to the first entry after 10 seconds to try and type blindly if needed
+ set default=1
+ set timeout=10
+ # Here are the entries
+ menuentry 'MEMDISK: SeaBIOS' {
+ chainloader (cbfsdisk)/elf/seabios.elf
+ }
+ menuentry 'MEMDISK: a kernel with root on /dev/sda1' {
+ linux (ahci0,1)/bzImage root=/dev/sda1 ro quiet
+ }
+ menuentry 'MEMDISK: Indicate normal coreboot success' {
+ cmosclean 0x30:0
+ cmosclean 0x30:1
+ cmosclean 0x30:2
+ cmosclean 0x30:3
+ cmosclean 0x30:4
+ cmosclean 0x30:5
+ }
+ menuentry 'MEMDISK: to show coreboot CBMEM logs, type' {
+ set pager=1
+ cbmemc
+ set pager=0
+ }
+ menuentry 'MEMDISK: to show coreboot CBFS content, type' {
+ lscoreboot
+ error
+ }
+ menuentry 'MEMDISK: to show coreboot TIMESTAMPS, type' {
+ coreboot_boottime
+ error
+ }
+ menuentry 'MEMDISK: reboot' {
+ # reset to normal
+ cmosclean 48:0
+ cmosclean 48:1
+ # reset boot count
+ cmosclean 48:4
+ cmosclean 48:5
+ cmosclean 48:6
+ cmosclean 48:7
+ # rebooting makes it impossible to shut down with normal.
+ reboot
+ }
+ menuentry 'MEMDISK: halt' {
+ # reset to normal
+ cmosclean 48:0
+ cmosclean 48:1
+ # reset boot count
+ cmosclean 48:4
+ cmosclean 48:5
+ cmosclean 48:6
+ cmosclean 48:7
+ # rebooting makes it impossible to shut down with normal.
+ halt
+ }
+ fi
+ fi
+ fi
+ fi
+fi