There is a QA warning that the debug symbol files are installed but not packaged, if `PACKAGE_DEBUG_SPLIT_STYLE` is set to "debug-file-directory". Depending on `PACKAGE_DEBUG_SPLIT_STYLE` the debug symbol files are installed in a .debug folder or in /usr/lib/debug. The sources are in /usr/src/debug With `PACKAGE_DEBUG_SPLIT_STYLE` set to ".debug" (debug), the debug symbol files are in the efibootguard-tools package and installed with the binary.
Signed-off-by: Raphael Freudiger <[email protected]> --- recipes-bsp/efibootguard/efibootguard.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipes-bsp/efibootguard/efibootguard.bb b/recipes-bsp/efibootguard/efibootguard.bb index a1c504a..592f5da 100644 --- a/recipes-bsp/efibootguard/efibootguard.bb +++ b/recipes-bsp/efibootguard/efibootguard.bb @@ -24,10 +24,10 @@ inherit autotools deploy pkgconfig COMPATIBLE_HOST = "(x86_64.*|i.86.*)-linux" -PACKAGES = "${PN}-tools \ - ${PN}-tools-dbg \ +PACKAGES = "${PN}-tools-dbg \ ${PN}-tools-staticdev \ ${PN}-tools-dev \ + ${PN}-tools \ ${PN}-efi" EXTRA_OECONF = "--with-gnuefi-sys-dir=${STAGING_DIR_HOST} \ @@ -35,7 +35,7 @@ EXTRA_OECONF = "--with-gnuefi-sys-dir=${STAGING_DIR_HOST} \ --with-gnuefi-lib-dir=${STAGING_LIBDIR}" FILES_${PN}-tools = "${bindir}" -FILES_${PN}-tools-dbg = "/usr/src/debug" +FILES_${PN}-tools-dbg = "/usr/src/debug ${bindir}/.debug /usr/lib/debug" FILES_${PN}-tools-staticdev = "${libdir}/lib*.a" FILES_${PN}-tools-dev = "${includedir}/${BPN}" FILES_${PN}-efi = "${libdir}/${BPN}" -- 2.11.0 -- You received this message because you are subscribed to the Google Groups "EFI Boot Guard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/efibootguard-dev/20180507105453.24068-1-raphael.freudiger%40siemens.com. For more options, visit https://groups.google.com/d/optout.
