summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>2024-10-24 13:36:23 -0600
committerMark Hatle <mark.hatle@amd.com>2024-10-25 14:37:21 -0500
commitf1dcf33d38cbcb135b6316498b9c31488d445546 (patch)
treed48a76d81b51290a735dc8d8ce551c3295c3ca34
parente1abe034e0c15fd87a12c47fa1c886b8750c6956 (diff)
downloadmeta-xilinx-f1dcf33d38cbcb135b6316498b9c31488d445546.tar.gz
README.building.md: Fix instructions for layer depends
Fix instructions for below layer depends errors by changing the order of including the layers. $ bitbake-layers add-layer ../sources/meta-openembedded/meta-filesystems/ NOTE: Starting bitbake server... ERROR: Layer 'filesystems-layer' depends on layer 'networking-layer', but this layer is not enabled in your configuration ERROR: Parse failure with the specified layer added, exiting. $ bitbake-layers add-layer ../sources/meta-virtualization/ NOTE: Starting bitbake server... ERROR: Layer 'virtualization-layer' depends on layer 'filesystems-layer', but this layer is not enabled in your configuration ERROR: Parse failure with the specified layer added, exiting. $ bitbake-layers add-layer ../sources/meta-xilinx/meta-xilinx-core/ NOTE: Starting bitbake server... ERROR: Layer 'xilinx' depends on layer 'meta-arm', but this layer is not enabled in your configuration ERROR: Parse failure with the specified layer added, exiting. $ bitbake-layers add-layer ../sources/meta-xilinx/meta-xilinx-standalone-sdt NOTE: Starting bitbake server... ERROR: Layer 'xilinx-standalone-sdt' depends on layer 'openamp-layer', but this layer is not enabled in your configuration ERROR: Parse failure with the specified layer added, exiting. $ Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
-rw-r--r--README.building.md20
1 files changed, 11 insertions, 9 deletions
diff --git a/README.building.md b/README.building.md
index c39e89c1..2dd097df 100644
--- a/README.building.md
+++ b/README.building.md
@@ -27,12 +27,13 @@ $ cd sources
27 27
28``` 28```
29$ mkdir sources 29$ mkdir sources
30$ git clone -b <release-branch> https://git.yoctoproject.org/poky.git 30$ git clone -b <release-branch> https://git.yoctoproject.org/poky
31$ git clone -b <release-branch> https://git.openembedded.org/meta-openembedded.git 31$ git clone -b <release-branch> https://git.openembedded.org/meta-openembedded
32$ git clone -b <release-branch> https://git.yoctoproject.org/git/meta-virtualization 32$ git clone -b <release-branch> https://git.yoctoproject.org/meta-virtualization
33$ git clone -b <rel-version> https://github.com/Xilinx/meta-xilinx.git --recurse-submodules 33$ git clone -b <release-branch> https://git.yoctoproject.org/meta-arm
34$ git clone -b <rel-version> https://github.com/Xilinx/meta-xilinx-tools.git 34$ git clone -b <release-branch> https://github.com/OpenAMP/meta-openamp
35$ git clone -b <rel-version> https://github.com/Xilinx/meta-arm.git 35$ git clone -b <rel-version> https://github.com/Xilinx/meta-xilinx --recurse-submodules
36$ git clone -b <rel-version> https://github.com/Xilinx/meta-xilinx-tools
36``` 37```
37> **Note:** 38> **Note:**
38> * When meta-xilinx layer is cloned using git tool by default it will clone 39> * When meta-xilinx layer is cloned using git tool by default it will clone
@@ -55,17 +56,18 @@ $ source poky/oe-init-build-env
55``` 56```
56$ bitbake-layers add-layer ./<path-to-layer>/meta-openembedded/meta-oe 57$ bitbake-layers add-layer ./<path-to-layer>/meta-openembedded/meta-oe
57$ bitbake-layers add-layer ./<path-to-layer>/meta-openembedded/meta-python 58$ bitbake-layers add-layer ./<path-to-layer>/meta-openembedded/meta-python
58$ bitbake-layers add-layer ./<path-to-layer>/meta-openembedded/meta-filesystems
59$ bitbake-layers add-layer ./<path-to-layer>/meta-openembedded/meta-networking 59$ bitbake-layers add-layer ./<path-to-layer>/meta-openembedded/meta-networking
60$ bitbake-layers add-layer ./<path-to-layer>/meta-openembedded/meta-filesystems
60$ bitbake-layers add-layer ./<path-to-layer>/meta-virtualization 61$ bitbake-layers add-layer ./<path-to-layer>/meta-virtualization
62$ bitbake-layers add-layer ./<path-to-layer>/meta-arm/meta-arm-toolchain
63$ bitbake-layers add-layer ./<path-to-layer>/meta-arm/meta-arm
64$ bitbake-layers add-layer ./<path-to-layer>/meta-openamp
61$ bitbake-layers add-layer ./<path-to-layer>/meta-xilinx/meta-microblaze 65$ bitbake-layers add-layer ./<path-to-layer>/meta-xilinx/meta-microblaze
62$ bitbake-layers add-layer ./<path-to-layer>/meta-xilinx/meta-xilinx-core 66$ bitbake-layers add-layer ./<path-to-layer>/meta-xilinx/meta-xilinx-core
63$ bitbake-layers add-layer ./<path-to-layer>/meta-xilinx/meta-xilinx-standalone 67$ bitbake-layers add-layer ./<path-to-layer>/meta-xilinx/meta-xilinx-standalone
64$ bitbake-layers add-layer ./<path-to-layer>/meta-xilinx/meta-xilinx-standalone-sdt 68$ bitbake-layers add-layer ./<path-to-layer>/meta-xilinx/meta-xilinx-standalone-sdt
65$ bitbake-layers add-layer ./<path-to-layer>/meta-xilinx/meta-xilinx-bsp 69$ bitbake-layers add-layer ./<path-to-layer>/meta-xilinx/meta-xilinx-bsp
66$ bitbake-layers add-layer ./<path-to-layer>/meta-xilinx-tools 70$ bitbake-layers add-layer ./<path-to-layer>/meta-xilinx-tools
67$ bitbake-layers add-layer ./<path-to-layer>/meta-arm/meta-arm
68$ bitbake-layers add-layer ./<path-to-layer>/meta-arm/meta-arm-toolchain
69``` 71```
70> **Note:** 72> **Note:**
71> 1. For SDT build flow user can remove meta-xilinx-tools as this layer is 73> 1. For SDT build flow user can remove meta-xilinx-tools as this layer is