Fixes [YOCTO #9554]
In the examples, I changes "IMAGE_FEATURE" to "IMAGE_FEATURES_append"
(From yocto-docs rev:
3fc2cc217a0a67b3e0739c6a235ab8e350c4b7c3)
Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Alternatively, you can add "tools-debug" to
<ulink url='&YOCTO_DOCS_REF_URL;#var-IMAGE_FEATURES'><filename>IMAGE_FEATURES</filename></ulink>:
<literallayout class='monospaced'>
- IMAGE_FEATURES = " tools-debug"
+ IMAGE_FEATURES_append = " tools-debug"
</literallayout>
</para></listitem>
<listitem><para>
Alternatively, you can do the following to include all the
debug symbols:
<literallayout class='monospaced'>
- IMAGE_FEATURES = " dbg-pkgs"
+ IMAGE_FEATURES_append = " dbg-pkgs"
</literallayout>
</para></listitem>
</itemizedlist>