summaryrefslogtreecommitdiff
path: root/resources/grub/config
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2014-07-11 08:53:00 +0000
committerMichał Masłowski <mtjm@mtjm.eu>2014-08-22 19:01:19 +0200
commitcee90ae0fce6d6aee8d78969b60c952c8890abd6 (patch)
tree6cbca259e213f5ffbc3927121e662c0377938cce /resources/grub/config
Libreboot release 6 beta 1.
Diffstat (limited to 'resources/grub/config')
-rw-r--r--resources/grub/config/COPYING33
-rw-r--r--resources/grub/config/grub_memdisk.cfg29
-rw-r--r--resources/grub/config/macbook21/grub.cfg57
-rw-r--r--resources/grub/config/macbook21/grub_dvorak.cfg57
-rw-r--r--resources/grub/config/macbook21/grub_ukdvorak.cfg57
-rw-r--r--resources/grub/config/macbook21/grub_ukqwerty.cfg57
-rw-r--r--resources/grub/config/t60/grub.cfg61
-rw-r--r--resources/grub/config/t60/grub_dvorak.cfg61
-rw-r--r--resources/grub/config/t60/grub_serial.cfg71
-rw-r--r--resources/grub/config/t60/grub_serial_dvorak.cfg71
-rw-r--r--resources/grub/config/t60/grub_serial_ukdvorak.cfg71
-rw-r--r--resources/grub/config/t60/grub_serial_ukqwerty.cfg71
-rw-r--r--resources/grub/config/t60/grub_ukdvorak.cfg61
-rw-r--r--resources/grub/config/t60/grub_ukqwerty.cfg61
-rw-r--r--resources/grub/config/x60/grub.cfg57
-rw-r--r--resources/grub/config/x60/grub_dvorak.cfg57
-rw-r--r--resources/grub/config/x60/grub_serial.cfg71
-rw-r--r--resources/grub/config/x60/grub_serial_dvorak.cfg71
-rw-r--r--resources/grub/config/x60/grub_serial_ukdvorak.cfg71
-rw-r--r--resources/grub/config/x60/grub_serial_ukqwerty.cfg71
-rw-r--r--resources/grub/config/x60/grub_ukdvorak.cfg57
-rw-r--r--resources/grub/config/x60/grub_ukqwerty.cfg57
-rw-r--r--resources/grub/config/x60t/grub.cfg57
-rw-r--r--resources/grub/config/x60t/grub_dvorak.cfg57
-rw-r--r--resources/grub/config/x60t/grub_serial.cfg71
-rw-r--r--resources/grub/config/x60t/grub_serial_dvorak.cfg71
-rw-r--r--resources/grub/config/x60t/grub_serial_ukdvorak.cfg71
-rw-r--r--resources/grub/config/x60t/grub_serial_ukqwerty.cfg71
-rw-r--r--resources/grub/config/x60t/grub_ukdvorak.cfg57
-rw-r--r--resources/grub/config/x60t/grub_ukqwerty.cfg57
30 files changed, 1842 insertions, 0 deletions
diff --git a/resources/grub/config/COPYING b/resources/grub/config/COPYING
new file mode 100644
index 0000000..624c22d
--- /dev/null
+++ b/resources/grub/config/COPYING
@@ -0,0 +1,33 @@
+The following files inside this directory:
+
+ * grub_memdisk.cfg
+ * macbook21/grub.cfg
+ * macbook21/grub_dvorak.cfg
+ * macbook21/grub_ukdvorak.cfg
+ * macbook21/grub_ukqwerty.cfg
+ * t60/grub.cfg
+ * t60/grub_dvorak.cfg
+ * t60/grub_ukdvorak.cfg
+ * t60/grub_ukqwerty.cfg
+ * t60/grub_serial.cfg
+ * t60/grub_serial_dvorak.cfg
+ * t60/grub_serial_ukdvorak.cfg
+ * t60/grub_serial_ukqwerty.cfg
+ * x60/grub.cfg
+ * x60/grub_dvorak.cfg
+ * x60/grub_ukdvorak.cfg
+ * x60/grub_ukqwerty.cfg
+ * x60/grub_serial.cfg
+ * x60/grub_serial_dvorak.cfg
+ * x60/grub_serial_ukdvorak.cfg
+ * x60/grub_serial_ukqwerty.cfg
+ * x60t/grub.cfg
+ * x60t/grub_dvorak.cfg
+ * x60t/grub_ukdvorak.cfg
+ * x60t/grub_ukqwerty.cfg
+ * x60t/grub_serial.cfg
+ * x60t/grub_serial_dvorak.cfg
+ * x60t/grub_serial_ukdvorak.cfg
+ * x60t/grub_serial_ukqwerty.cfg
+
+Look inside each file for copyright information
diff --git a/resources/grub/config/grub_memdisk.cfg b/resources/grub/config/grub_memdisk.cfg
new file mode 100644
index 0000000..fbac687
--- /dev/null
+++ b/resources/grub/config/grub_memdisk.cfg
@@ -0,0 +1,29 @@
+#
+# configuration file for GRUB memdisk which sits inside the grub.elf payload included inside the ROM image
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+# Serial and keyboard configuration, very important.
+serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
+terminal_input --append serial
+terminal_output --append serial
+terminal_input --append at_keyboard #add keyboard support.
+
+set prefix=(memdisk)/boot/grub
+
+set root='cbfsdisk'
+source (cbfsdisk)/grub.cfg
diff --git a/resources/grub/config/macbook21/grub.cfg b/resources/grub/config/macbook21/grub.cfg
new file mode 100644
index 0000000..8fc4100
--- /dev/null
+++ b/resources/grub/config/macbook21/grub.cfg
@@ -0,0 +1,57 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap usqwerty
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+menuentry 'Parse ISOLINUX menu (USB)' {
+ set root='usb0'
+ syslinux_configfile -i (usb0)/isolinux/isolinux.cfg
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/macbook21/grub_dvorak.cfg b/resources/grub/config/macbook21/grub_dvorak.cfg
new file mode 100644
index 0000000..52d12e5
--- /dev/null
+++ b/resources/grub/config/macbook21/grub_dvorak.cfg
@@ -0,0 +1,57 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap dvorak
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+menuentry 'Parse ISOLINUX menu (USB)' {
+ set root='usb0'
+ syslinux_configfile -i (usb0)/isolinux/isolinux.cfg
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/macbook21/grub_ukdvorak.cfg b/resources/grub/config/macbook21/grub_ukdvorak.cfg
new file mode 100644
index 0000000..b2075d8
--- /dev/null
+++ b/resources/grub/config/macbook21/grub_ukdvorak.cfg
@@ -0,0 +1,57 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap ukdvorak
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+menuentry 'Parse ISOLINUX menu (USB)' {
+ set root='usb0'
+ syslinux_configfile -i (usb0)/isolinux/isolinux.cfg
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/macbook21/grub_ukqwerty.cfg b/resources/grub/config/macbook21/grub_ukqwerty.cfg
new file mode 100644
index 0000000..b853242
--- /dev/null
+++ b/resources/grub/config/macbook21/grub_ukqwerty.cfg
@@ -0,0 +1,57 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap ukqwerty
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+menuentry 'Parse ISOLINUX menu (USB)' {
+ set root='usb0'
+ syslinux_configfile -i (usb0)/isolinux/isolinux.cfg
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/t60/grub.cfg b/resources/grub/config/t60/grub.cfg
new file mode 100644
index 0000000..2c34f8f
--- /dev/null
+++ b/resources/grub/config/t60/grub.cfg
@@ -0,0 +1,61 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap usqwerty
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+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 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/t60/grub_dvorak.cfg b/resources/grub/config/t60/grub_dvorak.cfg
new file mode 100644
index 0000000..eeb4a97
--- /dev/null
+++ b/resources/grub/config/t60/grub_dvorak.cfg
@@ -0,0 +1,61 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap dvorak
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+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 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/t60/grub_serial.cfg b/resources/grub/config/t60/grub_serial.cfg
new file mode 100644
index 0000000..bd33753
--- /dev/null
+++ b/resources/grub/config/t60/grub_serial.cfg
@@ -0,0 +1,71 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+# Serial and keyboard configuration, very important.
+serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
+terminal_input --append serial
+terminal_output --append serial
+terminal_input --append at_keyboard #add keyboard support.
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap usqwerty
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+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 'Load MemTest86+ (serial port, baud 115200)' {
+ set root='cbfsdisk'
+ chainloader /memtest
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/t60/grub_serial_dvorak.cfg b/resources/grub/config/t60/grub_serial_dvorak.cfg
new file mode 100644
index 0000000..6d49318
--- /dev/null
+++ b/resources/grub/config/t60/grub_serial_dvorak.cfg
@@ -0,0 +1,71 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+# Serial and keyboard configuration, very important.
+serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
+terminal_input --append serial
+terminal_output --append serial
+terminal_input --append at_keyboard #add keyboard support.
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap dvorak
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+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 'Load MemTest86+ (serial port, baud 115200)' {
+ set root='cbfsdisk'
+ chainloader /memtest
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/t60/grub_serial_ukdvorak.cfg b/resources/grub/config/t60/grub_serial_ukdvorak.cfg
new file mode 100644
index 0000000..e52fec5
--- /dev/null
+++ b/resources/grub/config/t60/grub_serial_ukdvorak.cfg
@@ -0,0 +1,71 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+# Serial and keyboard configuration, very important.
+serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
+terminal_input --append serial
+terminal_output --append serial
+terminal_input --append at_keyboard #add keyboard support.
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap ukdvorak
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+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 'Load MemTest86+ (serial port, baud 115200)' {
+ set root='cbfsdisk'
+ chainloader /memtest
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/t60/grub_serial_ukqwerty.cfg b/resources/grub/config/t60/grub_serial_ukqwerty.cfg
new file mode 100644
index 0000000..63aeafe
--- /dev/null
+++ b/resources/grub/config/t60/grub_serial_ukqwerty.cfg
@@ -0,0 +1,71 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+# Serial and keyboard configuration, very important.
+serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
+terminal_input --append serial
+terminal_output --append serial
+terminal_input --append at_keyboard #add keyboard support.
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap ukqwerty
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+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 'Load MemTest86+ (serial port, baud 115200)' {
+ set root='cbfsdisk'
+ chainloader /memtest
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/t60/grub_ukdvorak.cfg b/resources/grub/config/t60/grub_ukdvorak.cfg
new file mode 100644
index 0000000..b7c572d
--- /dev/null
+++ b/resources/grub/config/t60/grub_ukdvorak.cfg
@@ -0,0 +1,61 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap ukdvorak
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+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 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/t60/grub_ukqwerty.cfg b/resources/grub/config/t60/grub_ukqwerty.cfg
new file mode 100644
index 0000000..e754843
--- /dev/null
+++ b/resources/grub/config/t60/grub_ukqwerty.cfg
@@ -0,0 +1,61 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap ukqwerty
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+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 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/x60/grub.cfg b/resources/grub/config/x60/grub.cfg
new file mode 100644
index 0000000..8fc4100
--- /dev/null
+++ b/resources/grub/config/x60/grub.cfg
@@ -0,0 +1,57 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap usqwerty
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+menuentry 'Parse ISOLINUX menu (USB)' {
+ set root='usb0'
+ syslinux_configfile -i (usb0)/isolinux/isolinux.cfg
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/x60/grub_dvorak.cfg b/resources/grub/config/x60/grub_dvorak.cfg
new file mode 100644
index 0000000..52d12e5
--- /dev/null
+++ b/resources/grub/config/x60/grub_dvorak.cfg
@@ -0,0 +1,57 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap dvorak
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+menuentry 'Parse ISOLINUX menu (USB)' {
+ set root='usb0'
+ syslinux_configfile -i (usb0)/isolinux/isolinux.cfg
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/x60/grub_serial.cfg b/resources/grub/config/x60/grub_serial.cfg
new file mode 100644
index 0000000..bd33753
--- /dev/null
+++ b/resources/grub/config/x60/grub_serial.cfg
@@ -0,0 +1,71 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+# Serial and keyboard configuration, very important.
+serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
+terminal_input --append serial
+terminal_output --append serial
+terminal_input --append at_keyboard #add keyboard support.
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap usqwerty
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+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 'Load MemTest86+ (serial port, baud 115200)' {
+ set root='cbfsdisk'
+ chainloader /memtest
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/x60/grub_serial_dvorak.cfg b/resources/grub/config/x60/grub_serial_dvorak.cfg
new file mode 100644
index 0000000..6d49318
--- /dev/null
+++ b/resources/grub/config/x60/grub_serial_dvorak.cfg
@@ -0,0 +1,71 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+# Serial and keyboard configuration, very important.
+serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
+terminal_input --append serial
+terminal_output --append serial
+terminal_input --append at_keyboard #add keyboard support.
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap dvorak
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+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 'Load MemTest86+ (serial port, baud 115200)' {
+ set root='cbfsdisk'
+ chainloader /memtest
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/x60/grub_serial_ukdvorak.cfg b/resources/grub/config/x60/grub_serial_ukdvorak.cfg
new file mode 100644
index 0000000..e52fec5
--- /dev/null
+++ b/resources/grub/config/x60/grub_serial_ukdvorak.cfg
@@ -0,0 +1,71 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+# Serial and keyboard configuration, very important.
+serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
+terminal_input --append serial
+terminal_output --append serial
+terminal_input --append at_keyboard #add keyboard support.
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap ukdvorak
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+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 'Load MemTest86+ (serial port, baud 115200)' {
+ set root='cbfsdisk'
+ chainloader /memtest
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/x60/grub_serial_ukqwerty.cfg b/resources/grub/config/x60/grub_serial_ukqwerty.cfg
new file mode 100644
index 0000000..63aeafe
--- /dev/null
+++ b/resources/grub/config/x60/grub_serial_ukqwerty.cfg
@@ -0,0 +1,71 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+# Serial and keyboard configuration, very important.
+serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
+terminal_input --append serial
+terminal_output --append serial
+terminal_input --append at_keyboard #add keyboard support.
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap ukqwerty
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+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 'Load MemTest86+ (serial port, baud 115200)' {
+ set root='cbfsdisk'
+ chainloader /memtest
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/x60/grub_ukdvorak.cfg b/resources/grub/config/x60/grub_ukdvorak.cfg
new file mode 100644
index 0000000..b2075d8
--- /dev/null
+++ b/resources/grub/config/x60/grub_ukdvorak.cfg
@@ -0,0 +1,57 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap ukdvorak
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+menuentry 'Parse ISOLINUX menu (USB)' {
+ set root='usb0'
+ syslinux_configfile -i (usb0)/isolinux/isolinux.cfg
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/x60/grub_ukqwerty.cfg b/resources/grub/config/x60/grub_ukqwerty.cfg
new file mode 100644
index 0000000..b853242
--- /dev/null
+++ b/resources/grub/config/x60/grub_ukqwerty.cfg
@@ -0,0 +1,57 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap ukqwerty
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+menuentry 'Parse ISOLINUX menu (USB)' {
+ set root='usb0'
+ syslinux_configfile -i (usb0)/isolinux/isolinux.cfg
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/x60t/grub.cfg b/resources/grub/config/x60t/grub.cfg
new file mode 100644
index 0000000..8fc4100
--- /dev/null
+++ b/resources/grub/config/x60t/grub.cfg
@@ -0,0 +1,57 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap usqwerty
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+menuentry 'Parse ISOLINUX menu (USB)' {
+ set root='usb0'
+ syslinux_configfile -i (usb0)/isolinux/isolinux.cfg
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/x60t/grub_dvorak.cfg b/resources/grub/config/x60t/grub_dvorak.cfg
new file mode 100644
index 0000000..52d12e5
--- /dev/null
+++ b/resources/grub/config/x60t/grub_dvorak.cfg
@@ -0,0 +1,57 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap dvorak
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+menuentry 'Parse ISOLINUX menu (USB)' {
+ set root='usb0'
+ syslinux_configfile -i (usb0)/isolinux/isolinux.cfg
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/x60t/grub_serial.cfg b/resources/grub/config/x60t/grub_serial.cfg
new file mode 100644
index 0000000..bd33753
--- /dev/null
+++ b/resources/grub/config/x60t/grub_serial.cfg
@@ -0,0 +1,71 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+# Serial and keyboard configuration, very important.
+serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
+terminal_input --append serial
+terminal_output --append serial
+terminal_input --append at_keyboard #add keyboard support.
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap usqwerty
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+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 'Load MemTest86+ (serial port, baud 115200)' {
+ set root='cbfsdisk'
+ chainloader /memtest
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/x60t/grub_serial_dvorak.cfg b/resources/grub/config/x60t/grub_serial_dvorak.cfg
new file mode 100644
index 0000000..6d49318
--- /dev/null
+++ b/resources/grub/config/x60t/grub_serial_dvorak.cfg
@@ -0,0 +1,71 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+# Serial and keyboard configuration, very important.
+serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
+terminal_input --append serial
+terminal_output --append serial
+terminal_input --append at_keyboard #add keyboard support.
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap dvorak
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+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 'Load MemTest86+ (serial port, baud 115200)' {
+ set root='cbfsdisk'
+ chainloader /memtest
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/x60t/grub_serial_ukdvorak.cfg b/resources/grub/config/x60t/grub_serial_ukdvorak.cfg
new file mode 100644
index 0000000..e52fec5
--- /dev/null
+++ b/resources/grub/config/x60t/grub_serial_ukdvorak.cfg
@@ -0,0 +1,71 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+# Serial and keyboard configuration, very important.
+serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
+terminal_input --append serial
+terminal_output --append serial
+terminal_input --append at_keyboard #add keyboard support.
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap ukdvorak
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+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 'Load MemTest86+ (serial port, baud 115200)' {
+ set root='cbfsdisk'
+ chainloader /memtest
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/x60t/grub_serial_ukqwerty.cfg b/resources/grub/config/x60t/grub_serial_ukqwerty.cfg
new file mode 100644
index 0000000..63aeafe
--- /dev/null
+++ b/resources/grub/config/x60t/grub_serial_ukqwerty.cfg
@@ -0,0 +1,71 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+# Serial and keyboard configuration, very important.
+serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
+terminal_input --append serial
+terminal_output --append serial
+terminal_input --append at_keyboard #add keyboard support.
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap ukqwerty
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+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 'Load MemTest86+ (serial port, baud 115200)' {
+ set root='cbfsdisk'
+ chainloader /memtest
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/x60t/grub_ukdvorak.cfg b/resources/grub/config/x60t/grub_ukdvorak.cfg
new file mode 100644
index 0000000..b2075d8
--- /dev/null
+++ b/resources/grub/config/x60t/grub_ukdvorak.cfg
@@ -0,0 +1,57 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap ukdvorak
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+menuentry 'Parse ISOLINUX menu (USB)' {
+ set root='usb0'
+ syslinux_configfile -i (usb0)/isolinux/isolinux.cfg
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+
diff --git a/resources/grub/config/x60t/grub_ukqwerty.cfg b/resources/grub/config/x60t/grub_ukqwerty.cfg
new file mode 100644
index 0000000..b853242
--- /dev/null
+++ b/resources/grub/config/x60t/grub_ukqwerty.cfg
@@ -0,0 +1,57 @@
+#
+# GRUB configuration file which sits inside the root CBFS (coreboot filesystem)
+#
+# Copyright (C) 2014 Francis Rowe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+set default="0"
+set timeout=1
+set pager=1
+
+keymap ukqwerty
+background_image (cbfsdisk)/background.png
+loadfont (cbfsdisk)/dejavusansmono.pf2
+
+menuentry 'Load Operating System' {
+ linux (ahci0,1)/vmlinuz root=/dev/sda1
+ initrd (ahci0,1)/initrd.img
+}
+menuentry 'Parse ISOLINUX menu (USB)' {
+ set root='usb0'
+ syslinux_configfile -i (usb0)/isolinux/isolinux.cfg
+}
+menuentry 'Search for GRUB configuration on internal storage' {
+ 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
+}
+