Message ID | 1c686762-cb01-822b-2725-8dd0d8e80783@crashcourse.ca |
---|---|
State | New |
Headers | show |
Series | bsp guide: correct number of reference BSPs in meta-yocto-bsp layer | expand |
Hi Robert, On 6/18/25 1:48 PM, Robert P. J. Day via lists.yoctoproject.org wrote: > > Update BSP guide to reflect that there are four, not three hardware > reference BSPs in meta-yocto-bsp. > > Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> > > --- > > diff --git a/documentation/bsp-guide/bsp.rst b/documentation/bsp-guide/bsp.rst > index 35972f172..012dacce2 100644 > --- a/documentation/bsp-guide/bsp.rst > +++ b/documentation/bsp-guide/bsp.rst > @@ -764,7 +764,7 @@ workflow. > > .. note:: > > - - There are three hardware reference BSPs in the Yocto > + - There are four hardware reference BSPs in the Yocto > Project release, located in the ``poky/meta-yocto-bsp`` > BSP layer: What about rewording so there's no need to keep count? Something like: ``` The Yocto Project has a couple of hardware reference BSPs, located in the ``poky/meta-yocto-bsp`` BSP layer: ``` We could also probably provide a link to the layer, because poky/meta-yocto-bsp doesn't actually exist in any repo, meta-yocto-bsp from poky git repo does though, so something like: the :yocto_git:`meta-yocto-bsp</poky/meta-yocto-bsp>` BSP layer ? Looks ok to me otherwise :) Cheers, Quentin
diff --git a/documentation/bsp-guide/bsp.rst b/documentation/bsp-guide/bsp.rst index 35972f172..012dacce2 100644 --- a/documentation/bsp-guide/bsp.rst +++ b/documentation/bsp-guide/bsp.rst @@ -764,7 +764,7 @@ workflow. .. note:: - - There are three hardware reference BSPs in the Yocto + - There are four hardware reference BSPs in the Yocto Project release, located in the ``poky/meta-yocto-bsp`` BSP layer: @@ -772,6 +772,8 @@ workflow. - Two generic IA platforms (``genericx86`` and ``genericx86-64``) + - One generic 64-bit ARM platform (``genericarm64``) + When you set up a layer for a new BSP, you should follow a standard layout. This layout is described in the ":ref:`bsp-guide/bsp:example filesystem layout`" section. In the standard layout, notice
Update BSP guide to reflect that there are four, not three hardware reference BSPs in meta-yocto-bsp. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> ---