diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-11-07 00:03:07 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-11-07 01:30:47 (EST) |
commit | 67190214aa92c7bd6bfaa4dedfaf074acb3e5c69 (patch) | |
tree | 3240426169840f5af99a1345559da64eef9a93e7 /docs/resources/misc/dumps/grub.cfg | |
parent | 95259e28ef047923258434898113d70c8e544eab (diff) | |
download | libreboot-67190214aa92c7bd6bfaa4dedfaf074acb3e5c69.zip libreboot-67190214aa92c7bd6bfaa4dedfaf074acb3e5c69.tar.gz libreboot-67190214aa92c7bd6bfaa4dedfaf074acb3e5c69.tar.bz2 |
reorganize docs to build building html sources easier
Diffstat (limited to 'docs/resources/misc/dumps/grub.cfg')
-rw-r--r-- | docs/resources/misc/dumps/grub.cfg | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/docs/resources/misc/dumps/grub.cfg b/docs/resources/misc/dumps/grub.cfg new file mode 100644 index 0000000..ddc5606 --- /dev/null +++ b/docs/resources/misc/dumps/grub.cfg @@ -0,0 +1,38 @@ +set default="0" +set timeout=1 +set pager=1 + +menuentry 'Trisquel GNU/Linux with linux-libre 3.14.4' { + linux (ahci0,1)/boot/vmlinuz-3.14.4-gnuowen root=/dev/sda1 processor.max_cstate=2 drm.debug=0x06 console=tty0 console=ttyS0,115200n8 + initrd (ahci0,1)/boot/initrd.img-3.14.4-gnuowen +} +menuentry 'Parse ISOLINUX menu (USB)' { + set root='usb0' + syslinux_configfile -i (usb0)/isolinux/isolinux.cfg +} +menuentry 'Parse ISOLINUX menu (CD)' { + set root='ata0' + syslinux_configfile -i (ata0)/isolinux/isolinux.cfg +} +menuentry 'Scan for GRUB configurations on the internal HDD (Permits to load other OS or distributions)' { + insmod regexp + insmod ahci + insmod part_msdos + for x in (ahci0,*) ; do + if [ -f "$x/grub/grub.cfg" ] ; then + submenu "Load Config from $x" $x { + root=$2 + source /grub/grub.cfg + unset superusers + } + fi + if [ -f "$x/boot/grub/grub.cfg" ] ; then + submenu "Load Config from $x" $x { + root=$2 + source /boot/grub/grub.cfg + unset superusers + } + fi + done +} + |