summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Rossi <nathan@nathanrossi.com>2016-05-16 19:27:15 +1000
committerNathan Rossi <nathan@nathanrossi.com>2016-05-17 19:33:53 +1000
commit5cae3409b4ffbf5180db891d19bd3a36f6bdb551 (patch)
tree8d06db5b234cd750fafa796931ba27c83995cf0f
parent056d9ab372ec553fae5b6c4e325cb39f811ec720 (diff)
downloadmeta-xilinx-5cae3409b4ffbf5180db891d19bd3a36f6bdb551.tar.gz
README.building.md: Document the process for meta-xilinx
This README.building is derived from the content that was in the README, it is separated out. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
-rw-r--r--README.building.md32
1 files changed, 32 insertions, 0 deletions
diff --git a/README.building.md b/README.building.md
new file mode 100644
index 00000000..c4aa33ad
--- /dev/null
+++ b/README.building.md
@@ -0,0 +1,32 @@
1Build Instructions
2==================
3
4The following instructions require OE-Core meta and BitBake. Poky provides these
5components, however they can be acquired separately.
6
7Initialize a build using the `oe-init-build-env` script. Once initialized
8configure `bblayers.conf` by adding the `meta-xilinx` layer. e.g.:
9
10 BBLAYERS ?= " \
11 <path to layer>/oe-core/meta \
12 <path to layer>/meta-xilinx \
13 "
14
15To build a specific target BSP configure the associated machine in `local.conf`:
16
17 MACHINE ?= "zc702-zynq7"
18
19Build the target file system image using `bitbake`:
20
21 $ bitbake core-image-minimal
22
23Once complete the images for the target machine will be available in the output
24directory `tmp/deploy/images/<machine name>/`.
25
26Additional Information
27----------------------
28
29For more complete details on setting up and using Yocto/OE refer to the Yocto
30Project Quick Start guide available at:
31 http://www.yoctoproject.org/docs/current/yocto-project-qs/yocto-project-qs.html
32