summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/git/index.html11
-rwxr-xr-xresources/scripts/helpers/build/module/coreboot5
2 files changed, 11 insertions, 5 deletions
diff --git a/docs/git/index.html b/docs/git/index.html
index 447a364..d5c29a1 100644
--- a/docs/git/index.html
+++ b/docs/git/index.html
@@ -801,6 +801,17 @@
</p>
<p>
+ NOTE: crossgcc is included in <i>coreboot/util/crossgcc/tarballs/</i> in the release archives,
+ but the build system for libreboot does not automatically download/build it.
+ If you are using libreboot from the git repository, make sure to do the following:<br/>
+ $ <b>cd coreboot/</b><br/>
+ $ <b>make crossgcc-i386</b><br/>
+ $ <b>cd ../</b><br/>
+ This will download coreboot's reference cross-compile toolchain,
+ which is highly recommended by the coreboot project.
+ </p>
+
+ <p>
After that, build the ROM images (for all boards):<br/>
$ <b>./build roms withgrub</b><br/>
Alternatively, you can build for a specific board or set of boards.
diff --git a/resources/scripts/helpers/build/module/coreboot b/resources/scripts/helpers/build/module/coreboot
index 3d93c8d..1522196 100755
--- a/resources/scripts/helpers/build/module/coreboot
+++ b/resources/scripts/helpers/build/module/coreboot
@@ -42,11 +42,6 @@ make
# done. go back to coreboot dir
cd "../../"
-# -------------------------------------
-# build reference crossGCC for coreboot
-# -------------------------------------
-make crossgcc-i386
-
# done. go back to main libreboot_src directory
cd "../"