summaryrefslogtreecommitdiffstats
path: root/README.building.md
diff options
context:
space:
mode:
authorManjukumar Matha <manjukumar.harthikote-matha@xilinx.com>2017-12-06 16:06:35 -0800
committerManjukumar Matha <manjukumar.harthikote-matha@xilinx.com>2017-12-13 16:11:14 -0800
commita18947c20dba2c0c38db8bde1ad4684995df4bbd (patch)
tree917bf2abbe439a6f99ede8cfafb25812dca54a9a /README.building.md
parent6ddc5873b0ede30e6542f0ab151a6236acc37944 (diff)
downloadmeta-xilinx-a18947c20dba2c0c38db8bde1ad4684995df4bbd.tar.gz
meta-xilinx: Restructuring meta-xilinx to support multiple layers
As discussed previously on mailing list, we are proceeding with layer restructuring. For rocko release we will have the following layers meta-xilinx ->meta-xilinx-bsp (current meta-xilinx) ->meta-xilinx-contrib In the subsequent releases we will add other layers from Xilinx meta-xilinx ->meta-xilinx-bsp (current meta-xilinx) ->meta-petalinux ->meta-xilinx-tools ->meta-xilinx-contrib This will provide one clone to get all the required meta layers from Xilinx for a complete solution, and the users can blacklist any layer which they don't want to use using bblayer.conf. This will enables us to help our vendors/partners to add their reference designs, board definitions etc. Recipe changes : * Move reference design zybo-linux-bd.bb to meta-xilinx-contrib * Move kernel patches realted to zybo-linux-bd-zynq7 board to meta-xilinx-contrib * Update README Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com>
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