summaryrefslogtreecommitdiffstats
path: root/meta/classes/staging.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/staging.bbclass')
-rw-r--r--meta/classes/staging.bbclass5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass
index 967eddd605..243bcdf895 100644
--- a/meta/classes/staging.bbclass
+++ b/meta/classes/staging.bbclass
@@ -127,7 +127,10 @@ python sysroot_strip () {
127 elf_file = isELF(file) 127 elf_file = isELF(file)
128 if elf_file & 1: 128 if elf_file & 1:
129 if elf_file & 2: 129 if elf_file & 2:
130 bb.warn("File '%s' from %s was already stripped, this will prevent future debugging!" % (file[len(dvar):], pn)) 130 if 'already-stripped' in (d.getVar('INSANE_SKIP_' + pn, True) or "").split():
131 bb.note("Skipping file %s from %s for already-stripped QA test" % (file[len(dvar):], pn))
132 else:
133 bb.warn("File '%s' from %s was already stripped, this will prevent future debugging!" % (file[len(dvar):], pn))
131 continue 134 continue
132 135
133 if s.st_ino in inodes: 136 if s.st_ino in inodes: