aboutsummaryrefslogtreecommitdiff
path: root/docs/git/index.md
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <alyssa@rosenzweig.io>2017-03-17 23:04:16 -0700
committerAlyssa Rosenzweig <alyssa@rosenzweig.io>2017-03-17 23:04:16 -0700
commit29610c6f3b1b1e78ae7cec11b41368fe9d76c6ed (patch)
tree18a7c799c326e9a0a732703f0250b91687033b62 /docs/git/index.md
parent556205fc197ee1ef0f77ed382ac9f9ec57068ccf (diff)
downloadlibrebootfr-29610c6f3b1b1e78ae7cec11b41368fe9d76c6ed.tar.gz
librebootfr-29610c6f3b1b1e78ae7cec11b41368fe9d76c6ed.zip
Begin descent from weird command line syntax
Diffstat (limited to 'docs/git/index.md')
-rw-r--r--docs/git/index.md28
1 files changed, 14 insertions, 14 deletions
diff --git a/docs/git/index.md b/docs/git/index.md
index 97dc3a67..2ab88eeb 100644
--- a/docs/git/index.md
+++ b/docs/git/index.md
@@ -33,11 +33,11 @@ statically compiled executables for the utilities are included.**
For Debian Stretch (may also work on Debian Jessie), you can run the
following command:\
-$ **sudo ./oldbuild dependencies debian**\
+$ sudo ./oldbuild dependencies debian
(this will also work in Devuan)
For Parabola, you can run the following command:\
-$ **sudo ./oldbuild dependencies parabola**\
+$ sudo ./oldbuild dependencies parabola
or:\
\# **./oldbuild dependencies parabola**
@@ -63,17 +63,17 @@ First, [install the build dependencies](#build_dependencies).
Since libreboot makes extensive use of git, you need to configure git
properly. If you have not yet configured git, then the minimum
requirement is:\
-$ **git config \--global user.name "Your Name"**\
-$ **git config \--global user.email your@emailaddress.com**\
+$ 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>.
Another nice config for you (optional, but recommended):\
-$ **git config \--global core.editor nano**\
-$ **git config \--global color.status auto**\
-$ **git config \--global color.branch auto**\
-$ **git config \--global color.interactive auto**\
+$ git config \--global core.editor nano
+$ git config \--global color.status auto
+$ git config \--global color.branch auto
+$ git config \--global color.interactive auto
$ **git config \--global color.diff auto**
After that, run the script:\
@@ -221,12 +221,12 @@ modulename*. To see the possible values for *modulename*, use:\
$ **./oldbuild module list**
After that, build the ROM images (for all boards):\
-$ **./oldbuild roms withgrub**\
+$ ./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**\
+$ ./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/**.
@@ -304,7 +304,7 @@ libreboot\_util, for:
If you are building binaries on a live system or chroot (for
flashrom/bucts), you can use the following to statically link them:\
-$ **./oldbuild module flashrom static**\
+$ ./oldbuild module flashrom static
$ **./oldbuild module bucts static**
The same conditions as above apply for ARM (except, building bucts on
@@ -315,7 +315,7 @@ restrictions).
The command that you used for generating the release archives will also
run the following command:\
-$ **./oldbuild release tobuild**\
+$ ./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.