diff options
-rw-r--r-- | meta/lib/oe/rootfs.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index 3813f68e8b..4e09eae6b9 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py | |||
@@ -55,6 +55,8 @@ class Rootfs(object, metaclass=ABCMeta): | |||
55 | excludes = [ 'log_check', r'^\+' ] | 55 | excludes = [ 'log_check', r'^\+' ] |
56 | if hasattr(self, 'log_check_expected_regexes'): | 56 | if hasattr(self, 'log_check_expected_regexes'): |
57 | excludes.extend(self.log_check_expected_regexes) | 57 | excludes.extend(self.log_check_expected_regexes) |
58 | # Insert custom log_check excludes | ||
59 | excludes += [x for x in (self.d.getVar("IMAGE_LOG_CHECK_EXCLUDES") or "").split(" ") if x] | ||
58 | excludes = [re.compile(x) for x in excludes] | 60 | excludes = [re.compile(x) for x in excludes] |
59 | r = re.compile(match) | 61 | r = re.compile(match) |
60 | log_path = self.d.expand("${T}/log.do_rootfs") | 62 | log_path = self.d.expand("${T}/log.do_rootfs") |