summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe/image-postinst-intercepts.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-08-10 14:35:29 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-08-12 15:27:17 +0100
commitfd1517e2b51a170f2427122c6b95396db251d827 (patch)
treedabfe3e631339c2fc99a9ee7febb0f9c128e325e /meta/classes-recipe/image-postinst-intercepts.bbclass
parent10317912ee319ccf7f83605d438b5cbf9663f296 (diff)
downloadpoky-fd1517e2b51a170f2427122c6b95396db251d827.tar.gz
classes: Update classes to match new bitbake class scope functionality
Move classes to classes-global or classes-recipe as appropriate to take advantage of new bitbake functionality to check class scope/usage. (From OE-Core rev: f5c128008365e141082c129417eb72d2751e8045) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe/image-postinst-intercepts.bbclass')
-rw-r--r--meta/classes-recipe/image-postinst-intercepts.bbclass29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/classes-recipe/image-postinst-intercepts.bbclass b/meta/classes-recipe/image-postinst-intercepts.bbclass
new file mode 100644
index 0000000000..fc15926384
--- /dev/null
+++ b/meta/classes-recipe/image-postinst-intercepts.bbclass
@@ -0,0 +1,29 @@
1#
2# Copyright OpenEmbedded Contributors
3#
4# SPDX-License-Identifier: MIT
5#
6
7# Gather existing and candidate postinst intercepts from BBPATH
8POSTINST_INTERCEPTS_DIR ?= "${COREBASE}/scripts/postinst-intercepts"
9POSTINST_INTERCEPTS_PATHS ?= "${@':'.join('%s/postinst-intercepts' % p for p in '${BBPATH}'.split(':'))}:${POSTINST_INTERCEPTS_DIR}"
10
11python find_intercepts() {
12 intercepts = {}
13 search_paths = []
14 paths = d.getVar('POSTINST_INTERCEPTS_PATHS').split(':')
15 overrides = (':' + d.getVar('FILESOVERRIDES')).split(':') + ['']
16 search_paths = [os.path.join(p, op) for p in paths for op in overrides]
17 searched = oe.path.which_wild('*', ':'.join(search_paths), candidates=True)
18 files, chksums = [], []
19 for pathname, candidates in searched:
20 if os.path.isfile(pathname):
21 files.append(pathname)
22 chksums.append('%s:True' % pathname)
23 chksums.extend('%s:False' % c for c in candidates[:-1])
24
25 d.setVar('POSTINST_INTERCEPT_CHECKSUMS', ' '.join(chksums))
26 d.setVar('POSTINST_INTERCEPTS', ' '.join(files))
27}
28find_intercepts[eventmask] += "bb.event.RecipePreFinalise"
29addhandler find_intercepts