All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] [arm-autonomy] documentation: Update arm-autonomy-quickstart.md
@ 2020-04-30 13:23 Diego Sueiro
  2020-04-30 14:25 ` [meta-arm] " Bertrand Marquis
  0 siblings, 1 reply; 3+ messages in thread
From: Diego Sueiro @ 2020-04-30 13:23 UTC (permalink / raw)
  To: meta-arm; +Cc: nd

Suggest the usage of `bitbake-layers add-layer` command to add all
dependant layers.

Change-Id: I1f40f6218b2edc5267e04723c592c16a434f2e82
Issue-Id: SCM-986
Signed-off-by: Diego Sueiro <diego.sueiro@arm.com>
---
 .../documentation/arm-autonomy-quickstart.md        | 21 ++++++++++++++++-----
 1 file changed, 16 insertions(+), 5 deletions(-)

diff --git a/meta-arm-autonomy/documentation/arm-autonomy-quickstart.md b/meta-arm-autonomy/documentation/arm-autonomy-quickstart.md
index c688600..2a457c1 100644
--- a/meta-arm-autonomy/documentation/arm-autonomy-quickstart.md
+++ b/meta-arm-autonomy/documentation/arm-autonomy-quickstart.md
@@ -45,12 +45,23 @@ Here are the main steps to create an arm-autonomy project:
   oe-init-build-env my-project
   ```
 
-2. edit the file `conf/bblayers.conf` and add `meta-arm/meta-arm-autonomy`
-  layer to the list of layers of your project. Also add any other layers you
+2. Add `meta-arm/meta-arm-autonomy` layer to the list of layers of your
+  project in the `conf/bblayers.conf`. Also add any other layers you
   might need (for example `meta-arm/meta-arm-bsp` and `meta-arm/meta-arm` to
-  use Arm boards like Juno or FVP emulator).
+  use Arm boards like Juno or FVP emulator). You can achieve this by using
+  the `bitbake-layers add-layer layerdir [layerdir ...]` command.
   For example:
   ```
+  export LAYERDIR_BASE="/home/user/arm-autonomy/"
+  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
+  ```
+
+  Example of a `conf/bblayers.conf`:
+  ```
   BBLAYERS ?= " \
     /home/user/arm-autonomy/poky/meta \
     /home/user/arm-autonomy/poky/meta-poky \
@@ -59,10 +70,10 @@ Here are the main steps to create an arm-autonomy project:
     /home/user/arm-autonomy/meta-openembedded/meta-python \
     /home/user/arm-autonomy/meta-openembedded/meta-filesystems \
     /home/user/arm-autonomy/meta-openembedded/meta-networking \
-    /home/user/arm-autonomy/meta-arm/meta-arm \
-    /home/user/arm-autonomy/meta-arm/meta-arm-bsp \
     /home/user/arm-autonomy/meta-virtualization \
     /home/user/arm-autonomy/meta-arm/meta-arm-autonomy \
+    /home/user/arm-autonomy/meta-arm/meta-arm \
+    /home/user/arm-autonomy/meta-arm/meta-arm-bsp \
     "
   ```
 
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [meta-arm] [PATCH] [arm-autonomy] documentation: Update arm-autonomy-quickstart.md
  2020-04-30 13:23 [PATCH] [arm-autonomy] documentation: Update arm-autonomy-quickstart.md Diego Sueiro
@ 2020-04-30 14:25 ` Bertrand Marquis
  2020-05-06 16:00   ` Jon Mason
  0 siblings, 1 reply; 3+ messages in thread
From: Bertrand Marquis @ 2020-04-30 14:25 UTC (permalink / raw)
  To: meta-arm; +Cc: nd



> On 30 Apr 2020, at 14:23, Diego Sueiro via lists.yoctoproject.org <diego.sueiro=arm.com@lists.yoctoproject.org> wrote:
> 
> Suggest the usage of `bitbake-layers add-layer` command to add all
> dependant layers.
> 
> Change-Id: I1f40f6218b2edc5267e04723c592c16a434f2e82
> Issue-Id: SCM-986
> Signed-off-by: Diego Sueiro <diego.sueiro@arm.com>

Reviewed-by: Bertrand Marquis <bertrand.marquis@arm.com>

> ---
> .../documentation/arm-autonomy-quickstart.md        | 21 ++++++++++++++++-----
> 1 file changed, 16 insertions(+), 5 deletions(-)
> 
> diff --git a/meta-arm-autonomy/documentation/arm-autonomy-quickstart.md b/meta-arm-autonomy/documentation/arm-autonomy-quickstart.md
> index c688600..2a457c1 100644
> --- a/meta-arm-autonomy/documentation/arm-autonomy-quickstart.md
> +++ b/meta-arm-autonomy/documentation/arm-autonomy-quickstart.md
> @@ -45,12 +45,23 @@ Here are the main steps to create an arm-autonomy project:
>   oe-init-build-env my-project
>   ```
> 
> -2. edit the file `conf/bblayers.conf` and add `meta-arm/meta-arm-autonomy`
> -  layer to the list of layers of your project. Also add any other layers you
> +2. Add `meta-arm/meta-arm-autonomy` layer to the list of layers of your
> +  project in the `conf/bblayers.conf`. Also add any other layers you
>   might need (for example `meta-arm/meta-arm-bsp` and `meta-arm/meta-arm` to
> -  use Arm boards like Juno or FVP emulator).
> +  use Arm boards like Juno or FVP emulator). You can achieve this by using
> +  the `bitbake-layers add-layer layerdir [layerdir ...]` command.
>   For example:
>   ```
> +  export LAYERDIR_BASE="/home/user/arm-autonomy/"
> +  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
> +  ```
> +
> +  Example of a `conf/bblayers.conf`:
> +  ```
>   BBLAYERS ?= " \
>     /home/user/arm-autonomy/poky/meta \
>     /home/user/arm-autonomy/poky/meta-poky \
> @@ -59,10 +70,10 @@ Here are the main steps to create an arm-autonomy project:
>     /home/user/arm-autonomy/meta-openembedded/meta-python \
>     /home/user/arm-autonomy/meta-openembedded/meta-filesystems \
>     /home/user/arm-autonomy/meta-openembedded/meta-networking \
> -    /home/user/arm-autonomy/meta-arm/meta-arm \
> -    /home/user/arm-autonomy/meta-arm/meta-arm-bsp \
>     /home/user/arm-autonomy/meta-virtualization \
>     /home/user/arm-autonomy/meta-arm/meta-arm-autonomy \
> +    /home/user/arm-autonomy/meta-arm/meta-arm \
> +    /home/user/arm-autonomy/meta-arm/meta-arm-bsp \
>     "
>   ```
> 
> -- 
> 2.7.4
> 
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [meta-arm] [PATCH] [arm-autonomy] documentation: Update arm-autonomy-quickstart.md
  2020-04-30 14:25 ` [meta-arm] " Bertrand Marquis
@ 2020-05-06 16:00   ` Jon Mason
  0 siblings, 0 replies; 3+ messages in thread
From: Jon Mason @ 2020-05-06 16:00 UTC (permalink / raw)
  To: meta-arm

On Thu, Apr 30, 2020 at 02:25:41PM +0000, Bertrand Marquis wrote:
> 
> 
> > On 30 Apr 2020, at 14:23, Diego Sueiro via lists.yoctoproject.org <diego.sueiro=arm.com@lists.yoctoproject.org> wrote:
> > 
> > Suggest the usage of `bitbake-layers add-layer` command to add all
> > dependant layers.
> > 
> > Change-Id: I1f40f6218b2edc5267e04723c592c16a434f2e82
> > Issue-Id: SCM-986
> > Signed-off-by: Diego Sueiro <diego.sueiro@arm.com>
> 
> Reviewed-by: Bertrand Marquis <bertrand.marquis@arm.com>

Pulled into the master branch.

Thanks,
Jon

> 
> > ---
> > .../documentation/arm-autonomy-quickstart.md        | 21 ++++++++++++++++-----
> > 1 file changed, 16 insertions(+), 5 deletions(-)
> > 
> > diff --git a/meta-arm-autonomy/documentation/arm-autonomy-quickstart.md b/meta-arm-autonomy/documentation/arm-autonomy-quickstart.md
> > index c688600..2a457c1 100644
> > --- a/meta-arm-autonomy/documentation/arm-autonomy-quickstart.md
> > +++ b/meta-arm-autonomy/documentation/arm-autonomy-quickstart.md
> > @@ -45,12 +45,23 @@ Here are the main steps to create an arm-autonomy project:
> >   oe-init-build-env my-project
> >   ```
> > 
> > -2. edit the file `conf/bblayers.conf` and add `meta-arm/meta-arm-autonomy`
> > -  layer to the list of layers of your project. Also add any other layers you
> > +2. Add `meta-arm/meta-arm-autonomy` layer to the list of layers of your
> > +  project in the `conf/bblayers.conf`. Also add any other layers you
> >   might need (for example `meta-arm/meta-arm-bsp` and `meta-arm/meta-arm` to
> > -  use Arm boards like Juno or FVP emulator).
> > +  use Arm boards like Juno or FVP emulator). You can achieve this by using
> > +  the `bitbake-layers add-layer layerdir [layerdir ...]` command.
> >   For example:
> >   ```
> > +  export LAYERDIR_BASE="/home/user/arm-autonomy/"
> > +  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
> > +  ```
> > +
> > +  Example of a `conf/bblayers.conf`:
> > +  ```
> >   BBLAYERS ?= " \
> >     /home/user/arm-autonomy/poky/meta \
> >     /home/user/arm-autonomy/poky/meta-poky \
> > @@ -59,10 +70,10 @@ Here are the main steps to create an arm-autonomy project:
> >     /home/user/arm-autonomy/meta-openembedded/meta-python \
> >     /home/user/arm-autonomy/meta-openembedded/meta-filesystems \
> >     /home/user/arm-autonomy/meta-openembedded/meta-networking \
> > -    /home/user/arm-autonomy/meta-arm/meta-arm \
> > -    /home/user/arm-autonomy/meta-arm/meta-arm-bsp \
> >     /home/user/arm-autonomy/meta-virtualization \
> >     /home/user/arm-autonomy/meta-arm/meta-arm-autonomy \
> > +    /home/user/arm-autonomy/meta-arm/meta-arm \
> > +    /home/user/arm-autonomy/meta-arm/meta-arm-bsp \
> >     "
> >   ```
> > 
> > -- 
> > 2.7.4
> > 
> > 
> 

> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-05-06 16:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-30 13:23 [PATCH] [arm-autonomy] documentation: Update arm-autonomy-quickstart.md Diego Sueiro
2020-04-30 14:25 ` [meta-arm] " Bertrand Marquis
2020-05-06 16:00   ` Jon Mason

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.