diff options
author | Klemens Nanni <contact@autoboot.org> | 2015-12-09 06:35:32 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-12-09 11:13:28 (EST) |
commit | 4fe6a7e48e17f0668919d9230a392663f7ff7390 (patch) | |
tree | c245c1d37c5eb1274f78e8b08cc81686694dc35e /resources/grub/config | |
parent | 6af64c59134384a3960546764d5baac884942704 (diff) | |
download | libreboot-4fe6a7e48e17f0668919d9230a392663f7ff7390.zip libreboot-4fe6a7e48e17f0668919d9230a392663f7ff7390.tar.gz libreboot-4fe6a7e48e17f0668919d9230a392663f7ff7390.tar.bz2 |
New payload: Coreinfo
Add coreinfo as optional payload providing various
useful system information.
As part of coreboot, coreinfo does not need to be
downloaded seperately, just build it using
$ ./build module coreinfo
after downloading and building coreboot.
See https://www.coreboot.org/Payloads#Coreinfo for
more information.
Diffstat (limited to 'resources/grub/config')
-rw-r--r-- | resources/grub/config/menuentries/txtmode.cfg | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/resources/grub/config/menuentries/txtmode.cfg b/resources/grub/config/menuentries/txtmode.cfg index b395868..d64ca55 100644 --- a/resources/grub/config/menuentries/txtmode.cfg +++ b/resources/grub/config/menuentries/txtmode.cfg @@ -2,4 +2,7 @@ menuentry 'Load MemTest86+ [m]' --hotkey='m' { set root='memdisk' linux16 /memtest.bin } - +menuentry 'Load Coreinfo [i]' --hotkey='i' { + set root='cbfsdisk' + chainloader /coreinfo.elf +} |