From befeea2ee3c969471a30becb38cd2abf9c4e2413 Mon Sep 17 00:00:00 2001 From: Francis Rowe Date: Sat, 11 Jul 2015 13:26:40 -0400 Subject: Documentation: convert to GFDL Some sections were owned by other people; these were re-written, deleted, or moved. Alternatively, they were re-licensed as-is, with permission from the relevant author(s). Patrick "P. J." McDermott on #libreboot freenode IRC: Saturday, 11 July 2015 log: pehjota, you made a few changes to the libreboot documentation pehjota, do I have your permission to re-license those parts under GFDL 1.3/higher, with no invariant sections or back/front cover texts? (if so, can you write to the mailing list?) francis7: Sure, I'll send a message to the libreboot-dev list later. (pehjota=Patrick McDermott) (francis7=Francis Rowe, the person making this commit) TODO: docs/install/bbb_ehci.html: Get permission from author to re-license it (contact Alex David. tty0_ on IRC) --- (limited to 'docs/gnulinux/grub_cbfs.html') diff --git a/docs/gnulinux/grub_cbfs.html b/docs/gnulinux/grub_cbfs.html index 6de1e54..d2652ef 100644 --- a/docs/gnulinux/grub_cbfs.html +++ b/docs/gnulinux/grub_cbfs.html @@ -48,25 +48,16 @@

Table of Contents

@@ -74,7 +65,7 @@
-

Getting started

+

Introduction

Download the latest release from @@ -103,7 +94,7 @@

-

Option A: don't flash a new ROM

+

1st option: don't re-flash

By default, GRUB in libreboot is configured to scan all partitions on the main storage @@ -129,8 +120,8 @@

If you want to adapt a copy of the existing libreboot GRUB configuration and use that for the libreboot_grub.cfg file, then - follow #tools, #which_rom and - #extract_grubtest to get the grubtest.cfg. + follow #tools, #rom and + #extract_testconfig to get the grubtest.cfg. Rename grubtest.cfg to libreboot_grub.cfg and save it to /boot/grub/ on the running system where it is intended to be used. Modify the file at that location however you see fit, and then stop reading this guide (the rest of this page is irrelevant to you); in libreboot_grub.cfg on disk, @@ -150,11 +141,10 @@

-

Option B: flash a new ROM

+

2nd option: re-flash

- Alternatively to editing the GRUB configuration file on your disk, you can also change the configuration that is - stored in the CBFS on the flash chip. + You can modify what is stored inside the flash chip quite easily. Read on to find out how.

@@ -163,44 +153,12 @@

-

Get the tools ready

+

Acquire the necessary utilities

-

- You will need to use the cbfstool, rmodtool and flashrom tools. - You can either use the pre-compiled binaries provided by the binary release of libreboot, or build the tools - yourself from source from the libreboot source code. -

- -
-

Locate the tools in the binary release

- -

- If you are working with the binary release libreboot_util, you will find the cbfstool and - rmodtool binaries under ./cbfstool/{architecture}/ , where {architecture} refers to your - hardware name for which your current running kernel is compiled for. You can find it by running: -
- $ uname -m -

-

- The flashrom binary is located under ./flashrom/{architecture}/ -

- Whenever one of the tools is used in a command in this tutorial, it will be called as, e.g., ./cbfstool
- Please adapt the paths accordingly (e.g.: cbfstool/i686/cbfstool). + Use cbfstool and flashrom. There are available in the _util release archive, + or they can be compiled (see ../git/index.html#build_flashrom).

-
- -
-

Build the tools from source

- -

- If you are working with libreboot_src, then you can run make command in - libreboot_src/coreboot/util/cbfstool to build the cbfstool and rmodtool - executables. See ../git/index.html#build_flashrom for - instructions on how to build flashrom. - -

-

Back to top of page. @@ -210,45 +168,17 @@

-

Which ROM image should I use?

+

Acquiring the correct ROM image

You can either work directly with one of the ROM images already included in the libreboot ROM archives, or re-use the ROM that you have currently flashed. For the purpose of this tutorial it is assumed that your ROM image file is named libreboot.rom, so please make sure to adapt.

- -
-

Use one of the provided ROM images

-

- Libreboot ROM images are distributed in separate tar archives, named {computer_model}.tar.xz. - If you build from source without generated any release archives, - the ROM images will be in ./bin/{computer_model}/. Make a working copy of the ROM you want to use: -
- $ cp ./bin/{computer_model}/{computer_model}_{keyboard_layout}_{mode}.rom libreboot.rom -
- {keyboard_layout} defines the keyboard layout that will be available on the GRUB console. This might be important - if you protect GRUB with a password later on and want to insert non-ASCII characters. - {mode} can be vesafb or txtmode and starts GRUB with a background image or in text mode. -

-
- -
-

Re-use the currently flashed ROM image

-

- If you want to re-use the ROM that you currently have flashed (and running) and then run:
- $ sudo ./flashrom -p internal -r libreboot.rom
- Notice that this is using "-r" (read) instead of "-w" (write). - This will create a dump (copy) of your current firmware and name it libreboot.rom. - You need to take ownership of the file. For example:
- $ sudo chown yourusername:yourusername libreboot.rom
- # chown yourusername:yourusername libreboot.rom -

-
- -

- If you currently have flashed a ROM image from an older version, it is recommended to update first: - basically, modify one of the latest ROM images and then flash it. +

+ ROM images are included pre-compiled in libreboot. You can also dump your current firmware, using flashrom:
+ $ sudo flashrom -p internal -r libreboot.rom
+ # flashrom -p internal -r libreboot.rom

@@ -259,18 +189,17 @@

-

Extract grubtest.cfg from the ROM image

+

Extract grubtest.cfg from the ROM image

- Display contents of ROM:
+ You can check the contents of the ROM image, inside CBFS:
$ ./cbfstool libreboot.rom print

- The libreboot.rom file contains your grub.cfg and grubtest.cfg files. - grub.cfg will load first, but it has a menu entry for switching to the copy (grubtest.cfg). - Thus, you should extract, modify and re-insert the grubtest.cfg first. - This reduces your chance of making a mistake that could make your system unbootable (or very hard to boot). + The files grub.cfg and grubtest.cfg should be present. grub.cfg is loaded by default, + with a menuentry for switching to grubtest.cfg. In this tutorial, you will first modify and test grubtest.cfg. + This is to reduce the possibility of bricking your device.

@@ -279,12 +208,7 @@

- Make a copy of the original file, before you modify it:
- $ cp grubtest.cfg grubtest_vanilla.cfg -

- -

- Now you have a grubtest.cfg in the cbfstool directory. + Modify the grubtest.cfg accordingly.

@@ -300,33 +224,19 @@

-

Re-insert the modified grubtest.cfg into the ROM image

- -

- So you've created your configuration. Now, how do you use it? -

+

Re-insert the modified grubtest.cfg into the ROM image

- Delete the grubtest.cfg that remained inside the ROM:
+ Delete the unmodified config from the ROM image:
$ ./cbfstool libreboot.rom remove -n grubtest.cfg

- Display ROM contents and now you see grubtest.cfg no longer exists there:
- $ ./cbfstool libreboot.rom print -

- -

- Add the modified version that you just made:
+ Insert the modified version:
$ ./cbfstool libreboot.rom add -n grubtest.cfg -f grubtest.cfg -t raw

- Now display ROM contents again and see that it exists again:
- $ ./cbfstool libreboot.rom print -

- -

Back to top of page.

@@ -334,7 +244,7 @@
-

Test it!

+

Testing

@@ -380,21 +290,11 @@

- Display ROM contents and now you see grub.cfg no longer exists there:
- $ ./cbfstool libreboot.rom print -

- -

Add the modified version that you just made:
$ ./cbfstool libreboot.rom add -n grub.cfg -f grub.cfg -t raw

- Now display ROM contents again and see that it exists again:
- $ ./cbfstool libreboot.rom print -

- -

Now you have a modified ROM. Refer back to ../install/index.html#flashrom for information on how to flash it. Once you have done that, shut down and then boot up with your new configuration. @@ -409,41 +309,48 @@

-

Troubleshooting

- -

- A user reported that segmentation faults occur with cbfstool - when using this procedure depending on the size of the grub.cfg being re-insterted. - In his case, a minimum size of 857 bytes was required. This could (at the time of - this release) be a bug in cbfstool that should be investigated with the coreboot - community. If cbfstool segfaults, then keep this in mind. 'strace' (or gdb? clang?) - could be used for debugging. This was in libreboot 5th release (based on coreboot - from late 2013), and I'm not sure if the issue persists in the current releases. - I have not been able to reproduce it. strace (from that user) is here: - cbfstool_libreboot5_strace. - The issue has been reported by a few users, so it does not happen all the time: - this bug (if it still exists) could (should) be reproduced. -

- -

- Back to top of page. -

- -
- -
+

+ Copyright © 2014, 2015 Francis Rowe <info@gluglug.org.uk>
+ Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.3 + or any later version published by the Free Software Foundation; + with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. + A copy of the license can be found at ../gfdl-1.3.txt +

- Copyright © 2014, 2015 Francis Rowe <info@gluglug.org.uk>
- Copyright © 2015 Julian Mehne <juli@nmehne.de>
- This document is released under the Creative Commons Attribution-ShareAlike 4.0 International Public License and all future versions. - A copy of the license can be found at ../cc-by-sa-4.txt. + Updated versions of the license (when available) can be found at + https://www.gnu.org/licenses/licenses.html

- This document 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 ../cc-by-sa-4.txt for more information. + UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. +

+

+ TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. +

+

+ The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability.

-- cgit v0.9.1