From f1dcf33d38cbcb135b6316498b9c31488d445546 Mon Sep 17 00:00:00 2001 From: Sandeep Gundlupet Raju Date: Thu, 24 Oct 2024 13:36:23 -0600 Subject: 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 Signed-off-by: Mark Hatle --- README.building.md | 20 +++++++++++--------- 1 file 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 ``` $ mkdir sources -$ git clone -b https://git.yoctoproject.org/poky.git -$ git clone -b https://git.openembedded.org/meta-openembedded.git -$ git clone -b https://git.yoctoproject.org/git/meta-virtualization -$ git clone -b https://github.com/Xilinx/meta-xilinx.git --recurse-submodules -$ git clone -b https://github.com/Xilinx/meta-xilinx-tools.git -$ git clone -b https://github.com/Xilinx/meta-arm.git +$ git clone -b https://git.yoctoproject.org/poky +$ git clone -b https://git.openembedded.org/meta-openembedded +$ git clone -b https://git.yoctoproject.org/meta-virtualization +$ git clone -b https://git.yoctoproject.org/meta-arm +$ git clone -b https://github.com/OpenAMP/meta-openamp +$ git clone -b https://github.com/Xilinx/meta-xilinx --recurse-submodules +$ git clone -b https://github.com/Xilinx/meta-xilinx-tools ``` > **Note:** > * When meta-xilinx layer is cloned using git tool by default it will clone @@ -55,17 +56,18 @@ $ source poky/oe-init-build-env ``` $ bitbake-layers add-layer .//meta-openembedded/meta-oe $ bitbake-layers add-layer .//meta-openembedded/meta-python -$ bitbake-layers add-layer .//meta-openembedded/meta-filesystems $ bitbake-layers add-layer .//meta-openembedded/meta-networking +$ bitbake-layers add-layer .//meta-openembedded/meta-filesystems $ bitbake-layers add-layer .//meta-virtualization +$ bitbake-layers add-layer .//meta-arm/meta-arm-toolchain +$ bitbake-layers add-layer .//meta-arm/meta-arm +$ bitbake-layers add-layer .//meta-openamp $ bitbake-layers add-layer .//meta-xilinx/meta-microblaze $ bitbake-layers add-layer .//meta-xilinx/meta-xilinx-core $ bitbake-layers add-layer .//meta-xilinx/meta-xilinx-standalone $ bitbake-layers add-layer .//meta-xilinx/meta-xilinx-standalone-sdt $ bitbake-layers add-layer .//meta-xilinx/meta-xilinx-bsp $ bitbake-layers add-layer .//meta-xilinx-tools -$ bitbake-layers add-layer .//meta-arm/meta-arm -$ bitbake-layers add-layer .//meta-arm/meta-arm-toolchain ``` > **Note:** > 1. For SDT build flow user can remove meta-xilinx-tools as this layer is -- cgit v1.2.3-54-g00ecf