aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/bsd/freebsd.md1
-rw-r--r--docs/bsd/netbsd.md1
-rw-r--r--docs/bsd/openbsd.md1
-rw-r--r--docs/git/index.md6
-rw-r--r--docs/gnulinux/configuring_parabola.md1
-rw-r--r--docs/gnulinux/encrypted_parabola.md4
-rw-r--r--docs/gnulinux/grub_boot_installer.md1
-rw-r--r--docs/gnulinux/grub_cbfs.md2
-rw-r--r--docs/gnulinux/grub_hardening.md1
-rw-r--r--docs/grub/index.md2
-rw-r--r--docs/hardware/gm45_remove_me.md2
-rw-r--r--docs/hardware/index.md1
-rw-r--r--docs/misc/index.md2
13 files changed, 25 insertions, 0 deletions
diff --git a/docs/bsd/freebsd.md b/docs/bsd/freebsd.md
index f056b5b8..b524fb8d 100644
--- a/docs/bsd/freebsd.md
+++ b/docs/bsd/freebsd.md
@@ -79,6 +79,7 @@ the bootable FreeBSD USB drive:
Connect the USB drive. Check dmesg:
$ dmesg
+
Check lsblk to confirm which drive it is:
$ lsblk
diff --git a/docs/bsd/netbsd.md b/docs/bsd/netbsd.md
index 0dceda38..3359690e 100644
--- a/docs/bsd/netbsd.md
+++ b/docs/bsd/netbsd.md
@@ -75,6 +75,7 @@ the bootable NetBSD USB drive:
Connect the USB drive. Check dmesg:
$ dmesg
+
Check lsblk to confirm which drive it is:
$ lsblk
diff --git a/docs/bsd/openbsd.md b/docs/bsd/openbsd.md
index 8906ff00..4a195adb 100644
--- a/docs/bsd/openbsd.md
+++ b/docs/bsd/openbsd.md
@@ -74,6 +74,7 @@ the bootable OpenBSD USB drive:
Connect the USB drive. Check dmesg:
$ dmesg
+
Check lsblk to confirm which drive it is:
$ lsblk
diff --git a/docs/git/index.md b/docs/git/index.md
index 81cb5dd3..eb8a0435 100644
--- a/docs/git/index.md
+++ b/docs/git/index.md
@@ -23,11 +23,13 @@ For Debian Stretch (may also work on Debian Jessie), you can run the
following command:
$ sudo ./oldbuild dependencies debian
+
(this will also work in Devuan)
For Parabola, you can run the following command:
$ sudo ./oldbuild dependencies parabola\
+
or:
# ./oldbuild dependencies parabola
@@ -52,6 +54,7 @@ requirement is:
$ git config --global user.name "Your Name"
$ git config --global user.email your@emailaddress.com
+
This is what will also appear in git logs if you ever commit your own
changes to a given repository. For more information, see
<http://git-scm.com/doc>.
@@ -206,12 +209,14 @@ modulename*. To see the possible values for *modulename*, use:
After that, build the ROM images (for all boards):
$ ./oldbuild roms withgrub
+
Alternatively, you can build for a specific board or set of boards. For
example:
$ ./oldbuild roms withgrub x60
$ ./oldbuild roms withgrub x200\_8mb
$ ./oldbuild roms withgrub x60 x200\_8mb
+
The list of board options can be found by looking at the directory names
in **resources/libreboot/config/grub/**.
@@ -309,6 +314,7 @@ The command that you used for generating the release archives will also
run the following command:
$ ./oldbuild release tobuild
+
The archive **tobuild.tar.xz** will have been created under
**release/oldbuildsystem/**, containing bucts, flashrom and all other
required resources for building them.
diff --git a/docs/gnulinux/configuring_parabola.md b/docs/gnulinux/configuring_parabola.md
index c6c1d6f4..a598f6f5 100644
--- a/docs/gnulinux/configuring_parabola.md
+++ b/docs/gnulinux/configuring_parabola.md
@@ -547,6 +547,7 @@ start lxde without lxdm. Read
Open LXterminal:
$ cp /etc/skel/.xinitrc \~
+
Open .xinitrc and add the following plus a line break at the bottom of
the file.\
*\# Probably not needed. The same locale info that we set before\
diff --git a/docs/gnulinux/encrypted_parabola.md b/docs/gnulinux/encrypted_parabola.md
index f8b97fe8..37b36177 100644
--- a/docs/gnulinux/encrypted_parabola.md
+++ b/docs/gnulinux/encrypted_parabola.md
@@ -544,9 +544,11 @@ You can check if everything is in there (*grub.cfg* and *grubtest.cfg*
would be really nice):
$ ./cbfstool libreboot.rom print
+
Extract grubtest.cfg:
$ ./cbfstool libreboot.rom extract -n grubtest.cfg -f grubtest.cfg\
+
And modify:
$ vi grubtest.cfg
@@ -580,6 +582,7 @@ Save your changes in grubtest.cfg, then delete the unmodified config
from the ROM image:
$ ./cbfstool libreboot.rom remove -n grubtest.cfg
+
and insert the modified grubtest.cfg:\
\$ **./cbfstool libreboot.rom add -n grubtest.cfg -f grubtest.cfg -t
raw**\
@@ -625,6 +628,7 @@ grub.cfg**\
Delete the grub.cfg that remained inside the ROM:
$ ./cbfstool libreboot.rom remove -n grub.cfg
+
Add the modified version that you just made:
$ ./cbfstool libreboot.rom add -n grub.cfg -f grub.cfg -t raw
diff --git a/docs/gnulinux/grub_boot_installer.md b/docs/gnulinux/grub_boot_installer.md
index c360a666..9d1147b3 100644
--- a/docs/gnulinux/grub_boot_installer.md
+++ b/docs/gnulinux/grub_boot_installer.md
@@ -66,6 +66,7 @@ how to create the bootable GNU+Linux USB drive:
Connect the USB drive. Check dmesg:
$ dmesg | tail
+
Check to confirm which drive it is, for example, if you think its sd3:
$ disklabel sd3
diff --git a/docs/gnulinux/grub_cbfs.md b/docs/gnulinux/grub_cbfs.md
index 223be4ee..624dec62 100644
--- a/docs/gnulinux/grub_cbfs.md
+++ b/docs/gnulinux/grub_cbfs.md
@@ -120,6 +120,7 @@ Extract grubtest.cfg from the ROM image {#extract_testconfig}
You can check the contents of the ROM image, inside CBFS:
$ cd \.../libreboot\_util/cbfstool** $ ./cbfstool libreboot.rom
+
print**
The files *grub.cfg* and *grubtest.cfg* should be present. grub.cfg is
@@ -152,6 +153,7 @@ Testing
[../install/\#flashrom](../install/#flashrom) for information on how to
flash it.
$ cd /libreboot\_util** \# **./flash update libreboot.rom\
+
Ocassionally, coreboot changes the name of a given board. If flashrom
complains about a board mismatch, but you are sure that you chose the
correct ROM image, then run this alternative command:
diff --git a/docs/gnulinux/grub_hardening.md b/docs/gnulinux/grub_hardening.md
index 12485949..31e4ccc8 100644
--- a/docs/gnulinux/grub_hardening.md
+++ b/docs/gnulinux/grub_hardening.md
@@ -33,6 +33,7 @@ Helpful links:
- [GRUB manual
\#security](https://www.gnu.org/software/grub/manual/html_node/Security.html#Security)
+
- [GRUB info
pages](http://git.savannah.gnu.org/cgit/grub.git/tree/docs/grub.texi)
- [SATA connected storage considered dangerous until proven
diff --git a/docs/grub/index.md b/docs/grub/index.md
index f148cc0f..43b53b4e 100644
--- a/docs/grub/index.md
+++ b/docs/grub/index.md
@@ -43,6 +43,7 @@ This is a free font that is also contained in GNU+Linux distributions
like Debian, Devuan or Parabola.
$ cd libreboot\_src/grub
+
compile grub (the build scripts info on how to do this)\
come back out into libreboot\_src/resources/grub:
@@ -71,6 +72,7 @@ Keymaps are stored in resources/utilities/grub-assemble/keymap/.
Example (French Azerty):
$ ckbcomp fr > frazerty
+
\
Go in grub directory:\
**cat frazerty | ./grub/grub-mklayout -o frazerty.gkb**
diff --git a/docs/hardware/gm45_remove_me.md b/docs/hardware/gm45_remove_me.md
index b697d244..062fe545 100644
--- a/docs/hardware/gm45_remove_me.md
+++ b/docs/hardware/gm45_remove_me.md
@@ -72,6 +72,7 @@ generate a descriptor+gbe image with your own MAC address inside (with
the Gbe checksum updated to match). Run:
$ ./ich9gen --macaddress XX:XX:XX:XX:XX:XX
+
(replace the XX chars with the hexadecimal chars in the MAC address that
you want)
@@ -166,6 +167,7 @@ you ran **./oldbuild module all** or **./oldbuild module ich9deblob**
from the main directory (./), otherwise you can build it like so:
$ ./oldbuild module ich9deblob
+
An executable file named **ich9deblob** will now appear under
resources/utilities/ich9deblob/
diff --git a/docs/hardware/index.md b/docs/hardware/index.md
index 4863332e..f8096678 100644
--- a/docs/hardware/index.md
+++ b/docs/hardware/index.md
@@ -388,6 +388,7 @@ for whatever reason, since they include a lot of useful information.
Backups created using wget:
$ wget -m -p -E -k -K -np http://macbook.donderklumpen.de/
+
**\$ wget -m -p -E -k -K -np
http://macbook.donderklumpen.de/coreboot/**\
Use **-e robots=off** if using this trick for other sites and the site
diff --git a/docs/misc/index.md b/docs/misc/index.md
index a3fdcd6f..216a8244 100644
--- a/docs/misc/index.md
+++ b/docs/misc/index.md
@@ -224,9 +224,11 @@ package i2c-tools.
$ sudo modprobe i2c-dev
$ sudo i2cdump -y 5 0x50 (you might have to change the value for
+
-y)
$ sudo rmmod i2c-dev
+
You'll see the panel name in the output (from the EDID dump).
If neither of these options work (or they are unavailable), physically