summaryrefslogtreecommitdiffstats
path: root/meta/classes/multimachine.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/multimachine.bbclass')
-rw-r--r--meta/classes/multimachine.bbclass29
1 files changed, 17 insertions, 12 deletions
diff --git a/meta/classes/multimachine.bbclass b/meta/classes/multimachine.bbclass
index 4359d6c669..0bd6abe419 100644
--- a/meta/classes/multimachine.bbclass
+++ b/meta/classes/multimachine.bbclass
@@ -4,19 +4,24 @@ STAGING_KERNEL_DIR = "${STAGING_DIR}/${MULTIMACH_ARCH}-${TARGET_OS}/kernel"
4 4
5# Find any machine specific sub packages and if present, mark the 5# Find any machine specific sub packages and if present, mark the
6# whole package as machine specific for multimachine purposes. 6# whole package as machine specific for multimachine purposes.
7python __anonymous () {
8 packages = bb.data.getVar('PACKAGES', d, 1).split()
9 macharch = bb.data.getVar('MACHINE_ARCH', d, 1)
10 multiarch = bb.data.getVar('PACKAGE_ARCH', d, 1)
11 7
12 for pkg in packages: 8def multi_machine_after_parse(d):
13 pkgarch = bb.data.getVar("PACKAGE_ARCH_%s" % pkg, d, 1) 9 import bb
10 packages = bb.data.getVar('PACKAGES', d, 1).split()
11 macharch = bb.data.getVar('MACHINE_ARCH', d, 1)
12 multiarch = bb.data.getVar('PACKAGE_ARCH', d, 1)
13
14 for pkg in packages:
15 pkgarch = bb.data.getVar("PACKAGE_ARCH_%s" % pkg, d, 1)
14 16
15 # We could look for != PACKAGE_ARCH here but how to choose 17 # We could look for != PACKAGE_ARCH here but how to choose
16 # if multiple differences are present? 18 # if multiple differences are present?
17 # Look through PACKAGE_ARCHS for the priority order? 19 # Look through PACKAGE_ARCHS for the priority order?
18 if pkgarch and pkgarch == macharch: 20 if pkgarch and pkgarch == macharch:
19 multiarch = macharch 21 multiarch = macharch
20 22
21 bb.data.setVar('MULTIMACH_ARCH', multiarch, d) 23 bb.data.setVar('MULTIMACH_ARCH', multiarch, d)
24
25python __anonymous () {
26 multi_machine_after_parse(d)
22} 27}