summaryrefslogtreecommitdiff
path: root/tools/buildman
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-07-27 20:33:06 -0600
committerSimon Glass <sjg@chromium.org>2016-07-31 19:37:08 -0600
commitc8d7393b73b8d13ba3eb66dada1fc0ce979c8021 (patch)
treeadb30eda11824d95d45f6aeaa578cba9820b6eef /tools/buildman
parentc8785c5b494466066e0a08f9740a6655941ec0c0 (diff)
buildman: Add a quick-start note
For those who just want to build a board, it is useful to see a quick hint right at the start of the documentation. Add a few commands showing how to download toolchains and build a board. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman')
-rw-r--r--tools/buildman/README14
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/buildman/README b/tools/buildman/README
index cd672cf618..8c5f8610d0 100644
--- a/tools/buildman/README
+++ b/tools/buildman/README
@@ -5,6 +5,20 @@
(Please read 'How to change from MAKEALL' if you are used to that tool)
+Quick-start
+===========
+
+If you just want to quickly set up buildman so you can build something (for
+example Raspberry Pi 2):
+
+ cd /path/to/u-boot
+ PATH=$PATH:`pwd`/tools/buildman
+ buildman --fetch-arch arm
+ buildman -k rpi_2
+ ls ../current/rpi_2
+ # u-boot.bin is the output image
+
+
What is this?
=============