From c7a1a5f9fd415e3ae1078c2a1d6af9c25e9e6498 Mon Sep 17 00:00:00 2001 From: Nathan Dunne Date: Tue, 22 Sep 2020 08:46:39 +0000 Subject: [PATCH] arm-autonomy/documentation: Update arm-autonomy-quickstart.md with dependencies Added dependencies on meta-kernel and meta-arm/meta-arm-toolchain layers to quick start guide instructions. Change-Id: I7d5a3c631ccdcc7a39b8003a958d5f68ecb606c7 Issue-Id: SCM-1298 Signed-off-by: Nathan Dunne Reviewed-by: Diego Sueiro Signed-off-by: Jon Mason --- .../documentation/arm-autonomy-quickstart.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/meta-arm-autonomy/documentation/arm-autonomy-quickstart.md b/meta-arm-autonomy/documentation/arm-autonomy-quickstart.md index 2a457c16..eb02b3a6 100644 --- a/meta-arm-autonomy/documentation/arm-autonomy-quickstart.md +++ b/meta-arm-autonomy/documentation/arm-autonomy-quickstart.md @@ -26,6 +26,7 @@ First you must download the Yocto layers needed: - [poky](https://git.yoctoproject.org/poky) - [meta-virtualization](https://git.yoctoproject.org/meta-virtualization) - [meta-arm](https://git.yoctoproject.org/meta-arm) + - [meta-kernel](https://gitlab.com/openembedded/community/meta-kernel.git) - all other layers you might want to use For each of the downloaded layer make sure you checkout the release of Yocto @@ -56,8 +57,9 @@ Here are the main steps to create an arm-autonomy project: bitbake-layers add-layer $LAYERDIR_BASE/meta-poky $LAYERDIR_BASE/meta-yocto-bsp \ $LAYERDIR_BASE/meta-openembedded/meta-oe $LAYERDIR_BASE/meta-openembedded/meta-python \ $LAYERDIR_BASE/meta-openembedded/meta-filesystems $LAYERDIR_BASE/meta-openembedded/meta-networking \ - $LAYERDIR_BASE/meta-virtualization $LAYERDIR_BASE/meta-arm/meta-arm-autonomy \ - $LAYERDIR_BASE/meta-arm/meta-arm $LAYERDIR_BASE/meta-arm/meta-arm-bsp + $LAYERDIR_BASE/meta-virtualization $LAYERDIR_BASE/meta-kernel \ + $LAYERDIR_BASE/meta-arm/meta-arm $LAYERDIR_BASE/meta-arm/meta-arm-toolchain \ + $LAYERDIR_BASE/meta-arm/meta-arm-bsp $LAYERDIR_BASE/meta-arm/meta-arm-autonomy \ ``` Example of a `conf/bblayers.conf`: @@ -71,12 +73,17 @@ Here are the main steps to create an arm-autonomy project: /home/user/arm-autonomy/meta-openembedded/meta-filesystems \ /home/user/arm-autonomy/meta-openembedded/meta-networking \ /home/user/arm-autonomy/meta-virtualization \ - /home/user/arm-autonomy/meta-arm/meta-arm-autonomy \ + /home/user/arm-autonomy/meta-kernel \ /home/user/arm-autonomy/meta-arm/meta-arm \ + /home/user/arm-autonomy/meta-arm/meta-arm-toolchain \ /home/user/arm-autonomy/meta-arm/meta-arm-bsp \ + /home/user/arm-autonomy/meta-arm/meta-arm-autonomy \ " ``` + Be aware that changing the order may break some dependencies if editing the + config file manually. + Those steps will have to be done for each project you will have to create. Host project