From: Richard Purdie Date: Sat, 2 Jul 2022 12:16:26 +0000 (+0100) Subject: insane: Fix buildpaths test to work with special devices X-Git-Tag: 2020-04.19-dunfell~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0106c6a629d0a9f07d76ffaad2dc92e48021e1b0;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git insane: Fix buildpaths test to work with special devices If enabled, the buildpaths test hangs in psplash as it tries to open a fifo and read from it, hanging indefinitely. Tweak the test to ignore fifo/socket/device files. Signed-off-by: Richard Purdie (cherry picked from commit 2567edb7e0a8c5ca9a88d6940491bf33bfe0eff9) Signed-off-by: Steve Sakoman --- diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 77a2039738f..d6da53252f2 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass @@ -452,12 +452,14 @@ def package_qa_check_buildpaths(path, name, d, elf, messages): """ Check for build paths inside target files and error if not found in the whitelist """ + import stat # Ignore .debug files, not interesting if path.find(".debug") != -1: return - # Ignore symlinks - if os.path.islink(path): + # Ignore symlinks/devs/fifos + mode = os.lstat(path).st_mode + if stat.S_ISLNK(mode) or stat.S_ISBLK(mode) or stat.S_ISFIFO(mode) or stat.S_ISCHR(mode) or stat.S_ISSOCK(mode): return tmpdir = bytes(d.getVar('TMPDIR'), encoding="utf-8")