summaryrefslogtreecommitdiffstats
path: root/README.building.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.building.md')
-rw-r--r--README.building.md32
1 files changed, 0 insertions, 32 deletions
diff --git a/README.building.md b/README.building.md
deleted file mode 100644
index c4aa33ad..00000000
--- a/README.building.md
+++ /dev/null
@@ -1,32 +0,0 @@
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