Re: [docs] [PATCH] dev-manual: update AUTOREV explanation to match current file
"Antonin Godard" <[email protected]>
| Newsgroups | org.yoctoproject.lists.docs |
|---|---|
| Message-ID | <[email protected]> |
Hi, On Fri Jun 12, 2026 at 10:09 AM CEST, Robert P. J. Day wrote: > > The code snippet for listing AUTOREV-enabled recipes needs updating > since it now inherits the "poky-bleeding" class file. > > Signed-off-by: Robert P. J. Day <[email protected]> > > --- > > diff --git a/documentation/dev-manual/external-scm.rst b/documentation/dev-manual/external-scm.rst > index 3ca9079b3..7971d65f5 100644 > --- a/documentation/dev-manual/external-scm.rst > +++ b/documentation/dev-manual/external-scm.rst > @@ -38,26 +38,27 @@ configuration file contains the line:: > > require conf/distro/include/poky-floating-revisions.inc > > -This line pulls in the > -listed include file that contains numerous lines of exactly that form:: > - > - #SRCREV:pn-opkg-native ?= "${AUTOREV}" > - #SRCREV:pn-opkg-sdk ?= "${AUTOREV}" > - #SRCREV:pn-opkg ?= "${AUTOREV}" > - #SRCREV:pn-opkg-utils-native ?= "${AUTOREV}" > - #SRCREV:pn-opkg-utils ?= "${AUTOREV}" > - SRCREV:pn-gconf-dbus ?= "${AUTOREV}" > - SRCREV:pn-matchbox-common ?= "${AUTOREV}" > - SRCREV:pn-matchbox-config-gtk ?= "${AUTOREV}" > - SRCREV:pn-matchbox-desktop ?= "${AUTOREV}" > - SRCREV:pn-matchbox-keyboard ?= "${AUTOREV}" > - SRCREV:pn-matchbox-panel-2 ?= "${AUTOREV}" > - SRCREV:pn-matchbox-themes-extra ?= "${AUTOREV}" > - SRCREV:pn-matchbox-terminal ?= "${AUTOREV}" > - SRCREV:pn-matchbox-wm ?= "${AUTOREV}" > - SRCREV:pn-settings-daemon ?= "${AUTOREV}" > - SRCREV:pn-screenshot ?= "${AUTOREV}" > - . . . > +This line pulls in the listed include file that defines the set of > +AUTOREV-enabled recipes:: > + > + INHERIT += "poky-bleeding" > + > + POKY_AUTOREV_RECIPES = "\ > + libmatchbox \ > + opkg-utils \ > + matchbox-config-gtk \ > + matchbox-desktop \ > + matchbox-keyboard \ > + matchbox-panel-2 \ > + matchbox-terminal \ > + matchbox-theme-sato \ > + matchbox-wm \ > + pseudo \ > + puzzles \ > + sato-icon-theme \ > + sato-screenshot \ > + settings-daemon \ > + " > > These lines allow you to s/These lines allow/This allows/ > experiment with building a distribution that tracks the latest Antonin