diff options
author | Trevor Gamblin <tgamblin@baylibre.com> | 2023-10-03 11:17:41 -0400 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2023-10-13 04:31:05 -1000 |
commit | 7988bf713ae45b14e7177ed8496b764a4b9a5a4a (patch) | |
tree | 836e530c7547715f9da7450799d168505ee33667 /documentation/dev-manual/upgrading-recipes.rst | |
parent | 9a9aa4bd539db8a2b4ba02ddaef461546d2c9dc4 (diff) | |
download | poky-7988bf713ae45b14e7177ed8496b764a4b9a5a4a.tar.gz |
dev-manual: fix testimage usage instructions
The proper way to inherit the testimage class is now
IMAGE_CLASSES += "testimage"
so change lines with 'INHERIT += "testimage"' to match. This makes the
dev-manual consistent with the migration guide, which already specifies
that the old way causes an error.
(From yocto-docs rev: 4d660551a6547ffe216e53402759baef424c4da2)
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'documentation/dev-manual/upgrading-recipes.rst')
-rw-r--r-- | documentation/dev-manual/upgrading-recipes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/dev-manual/upgrading-recipes.rst b/documentation/dev-manual/upgrading-recipes.rst index 13133fddcf..33a7ca39dd 100644 --- a/documentation/dev-manual/upgrading-recipes.rst +++ b/documentation/dev-manual/upgrading-recipes.rst | |||
@@ -117,7 +117,7 @@ The following steps describe how to set up the AUH utility: | |||
117 | class, which is optional, you need to have the following set in | 117 | class, which is optional, you need to have the following set in |
118 | your ``conf/local.conf`` file:: | 118 | your ``conf/local.conf`` file:: |
119 | 119 | ||
120 | INHERIT += "testimage" | 120 | IMAGE_CLASSES += "testimage" |
121 | 121 | ||
122 | .. note:: | 122 | .. note:: |
123 | 123 | ||