1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
|
STAMP = "${TMPDIR}/stamps/${MULTIMACH_ARCH}-${HOST_OS}/${PF}" WORKDIR = "${TMPDIR}/work/${MULTIMACH_ARCH}-${HOST_OS}/${PF}" STAGING_KERNEL_DIR = "${STAGING_DIR}/${MULTIMACH_ARCH}-${HOST_OS}/kernel" # Find any machine specific sub packages and if present, mark the # whole package as machine specific for multimachine purposes. python __anonymous () { packages = bb.data.getVar('PACKAGES', d, 1).split() macharch = bb.data.getVar('MACHINE_ARCH', d, 1) multiarch = bb.data.getVar('PACKAGE_ARCH', d, 1) for pkg in packages: pkgarch = bb.data.getVar("PACKAGE_ARCH_%s" % pkg, d, 1) # We could look for != PACKAGE_ARCH here but how to choose # if multiple differences are present? # Look through IPKG_ARCHS for the priority order? if pkgarch and pkgarch == macharch: multiarch = macharch bb.data.setVar('MULTIMACH_ARCH', multiarch, d) } ga'); ga('create', 'UA-58643691-1', 'auto'); ga('send', 'pageview');