diff options
| author | Nathan Rossi <nathan@nathanrossi.com> | 2016-05-16 19:27:15 +1000 |
|---|---|---|
| committer | Nathan Rossi <nathan@nathanrossi.com> | 2016-05-17 19:33:53 +1000 |
| commit | 5cae3409b4ffbf5180db891d19bd3a36f6bdb551 (patch) | |
| tree | 8d06db5b234cd750fafa796931ba27c83995cf0f /README.building.md | |
| parent | 056d9ab372ec553fae5b6c4e325cb39f811ec720 (diff) | |
| download | meta-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>
Diffstat (limited to 'README.building.md')
| -rw-r--r-- | README.building.md | 32 |
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 @@ | |||
| 1 | Build Instructions | ||
| 2 | ================== | ||
| 3 | |||
| 4 | The following instructions require OE-Core meta and BitBake. Poky provides these | ||
| 5 | components, however they can be acquired separately. | ||
| 6 | |||
| 7 | Initialize a build using the `oe-init-build-env` script. Once initialized | ||
| 8 | configure `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 | |||
| 15 | To build a specific target BSP configure the associated machine in `local.conf`: | ||
| 16 | |||
| 17 | MACHINE ?= "zc702-zynq7" | ||
| 18 | |||
| 19 | Build the target file system image using `bitbake`: | ||
| 20 | |||
| 21 | $ bitbake core-image-minimal | ||
| 22 | |||
| 23 | Once complete the images for the target machine will be available in the output | ||
| 24 | directory `tmp/deploy/images/<machine name>/`. | ||
| 25 | |||
| 26 | Additional Information | ||
| 27 | ---------------------- | ||
| 28 | |||
| 29 | For more complete details on setting up and using Yocto/OE refer to the Yocto | ||
| 30 | Project Quick Start guide available at: | ||
| 31 | http://www.yoctoproject.org/docs/current/yocto-project-qs/yocto-project-qs.html | ||
| 32 | |||
