[oe-commits] [meta-openembedded] 08/11: Copy breakpad .sym file in appropriate folder.

git at git.openembedded.org git at git.openembedded.org
Tue Nov 20 16:43:53 UTC 2018


This is an automated email from the git hooks/post-receive script.

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit a4e41a6a07aad7efeb11ac275e451ed798774f00
Author: Tristan Ramseyer <t at ramseyer.email>
AuthorDate: Sat Aug 25 17:50:48 2018 +0200

    Copy breakpad .sym file in appropriate folder.
    
    Google breakpad requires a very specific folder structure which is only known after dump_syms has been executed.
    Therefore the .sym file's first line has to be parsed in order to move the file where breakpad wants it.
    
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta-oe/classes/breakpad.bbclass | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta-oe/classes/breakpad.bbclass b/meta-oe/classes/breakpad.bbclass
index 36f11ff..cebe559 100644
--- a/meta-oe/classes/breakpad.bbclass
+++ b/meta-oe/classes/breakpad.bbclass
@@ -25,6 +25,9 @@ PACKAGE_PREPROCESS_FUNCS += "breakpad_package_preprocess"
 breakpad_package_preprocess () {
     mkdir -p ${PKGD}/usr/share/breakpad-syms
     find ${D} -name ${BREAKPAD_BIN} -exec sh -c "dump_syms {} > ${PKGD}/usr/share/breakpad-syms/${BREAKPAD_BIN}.sym" \;
+    HASH=$(head -n1 ${PKGD}/usr/share/breakpad-syms/${BREAKPAD_BIN}.sym | rev | cut -d ' ' -f2 | rev)
+    mkdir -p ${PKGD}/usr/share/breakpad-syms/${BREAKPAD_BIN}/${HASH}
+    mv ${PKGD}/usr/share/breakpad-syms/${BREAKPAD_BIN}.sym ${PKGD}/usr/share/breakpad-syms/${BREAKPAD_BIN}/${HASH}
 }
 
 PACKAGES =+ "${PN}-breakpad"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list