diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-10-28 11:29:10 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-10-30 12:09:21 +0000 |
commit | 0079a0464452fac031794a56a1178c4c1c04b1e0 (patch) | |
tree | 23175aa77aef30fcb21bede89a1a4ec8550a577f /documentation | |
parent | 38a2462bc77f0ed3e794614404e979cf79237a63 (diff) | |
download | poky-0079a0464452fac031794a56a1178c4c1c04b1e0.tar.gz |
ref-manual/faq: Add entry for why binaries are changed in images
(From yocto-docs rev: 843a91187783b2e11512c45b8dd8302b19113569)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/ref-manual/faq.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/documentation/ref-manual/faq.rst b/documentation/ref-manual/faq.rst index 7a1614028a..8c2b34be5f 100644 --- a/documentation/ref-manual/faq.rst +++ b/documentation/ref-manual/faq.rst | |||
@@ -451,3 +451,14 @@ variant. For another example, permissions errors might be caused by a | |||
451 | Makefile that ignores ``DESTDIR`` or uses a different name for that | 451 | Makefile that ignores ``DESTDIR`` or uses a different name for that |
452 | environment variable. Check the the build system to see if these kinds | 452 | environment variable. Check the the build system to see if these kinds |
453 | of issues exist. | 453 | of issues exist. |
454 | |||
455 | **Q:** I'm adding a binary in a recipe but it's different in the image, what is | ||
456 | changing it? | ||
457 | |||
458 | **A:** The first most obvious change is the system stripping debug symbols from | ||
459 | it. Setting :term:`INHIBIT_PACKAGE_STRIP` to stop debug symbols being stripped and/or | ||
460 | :term:`INHIBIT_PACKAGE_DEBUG_SPLIT` to stop debug symbols being split into a separate | ||
461 | file will ensure the binary is unchanged. The other less obvious thing that can | ||
462 | happen is prelinking of the image. This is set by default in local.conf via | ||
463 | :term:`USER_CLASSES` which can contain 'image-prelink'. If you remove that, the | ||
464 | image will not be prelinked meaning the binaries would be unchanged. | ||