diff options
author | Khem Raj <raj.khem@gmail.com> | 2013-09-06 14:15:18 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-06 23:55:55 +0100 |
commit | 765982f4c050d9cd3eb608d630312da482c737c7 (patch) | |
tree | 2b8afd37439ddd40079cdf53a3cf271853e43b2a | |
parent | a24027321b99dffd79b1f0c009ce89f0be7cc384 (diff) | |
download | openembedded-core-765982f4c050d9cd3eb608d630312da482c737c7.tar.gz openembedded-core-765982f4c050d9cd3eb608d630312da482c737c7.tar.bz2 openembedded-core-765982f4c050d9cd3eb608d630312da482c737c7.zip |
package.bbclass: skip already-stripped QA test if asked for
Some packages like grub have already stripped binaries e.g.
ERROR: QA Issue: File '/boot/grub/kernel.img' from grub was already
stripped, this will prevent future debugging!
ERROR: QA run found fatal errors. Please consider fixing them.
We would like to have a possibility to skip it using something like
INSANE_SKIP_${PN} = "already-stripped"
This adds the logic to do so
it acts at PN level and not at package level. so something like
INSANE_SKIP_${PN}-misc = "already-stripped" wont work.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/package.bbclass | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 50490bc89d..599df246f0 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -811,8 +811,11 @@ python split_and_strip_files () { elf_file = isELF(file) if elf_file & 1: if elf_file & 2: - msg = "File '%s' from %s was already stripped, this will prevent future debugging!" % (file[len(dvar):], pn) - package_qa_handle_error("already-stripped", msg, d) + if 'already-stripped' in (d.getVar('INSANE_SKIP_' + pn, True) or "").split(): + bb.note("Skipping file %s from %s for already-stripped QA test" % (file[len(dvar):], pn)) + else: + msg = "File '%s' from %s was already stripped, this will prevent future debugging!" % (file[len(dvar):], pn) + package_qa_handle_error("already-stripped", msg, d) continue # Check if it's a hard link to something else if s.st_nlink > 1: |