summaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorTom Rini <tom_rini@mentor.com>2010-07-27 20:35:22 -0700
committerTom Rini <tom_rini@mentor.com>2010-07-27 20:35:22 -0700
commit400e9a3334f95c7f7ef9aff84a681120ad91d9e0 (patch)
treec188523f6010840d98dfcd8f2a7ad2406daacaec /classes
parent9a0e95f37639d9856ad41b8fc301f9b00369a797 (diff)
downloadopenembedded-400e9a3334f95c7f7ef9aff84a681120ad91d9e0.tar.gz
Revert "packaged-staging: Make setting PSTAGING_ACTIVE be a named python func"
This has some unintended consequences, revert for now. This reverts commit 9a0e95f37639d9856ad41b8fc301f9b00369a797.
Diffstat (limited to 'classes')
-rw-r--r--classes/packaged-staging.bbclass25
1 files changed, 11 insertions, 14 deletions
diff --git a/classes/packaged-staging.bbclass b/classes/packaged-staging.bbclass
index ff03cc3ee4..9f369485b5 100644
--- a/classes/packaged-staging.bbclass
+++ b/classes/packaged-staging.bbclass
@@ -34,7 +34,7 @@ python __anonymous() {
bb.data.setVar('PSTAGE_PKGARCH', "${HOST_SYS}-${PACKAGE_ARCH}-${TARGET_OS}", d)
}
-def pstage_check_allowed (d):
+python () {
pstage_allowed = True
# These classes encode staging paths into the binary data so can only be
@@ -74,6 +74,7 @@ def pstage_check_allowed (d):
bb.data.setVar("PSTAGING_ACTIVE", "1", d)
else:
bb.data.setVar("PSTAGING_ACTIVE", "0", d)
+}
PSTAGE_MACHCONFIG = "${PSTAGE_WORKDIR}/opkg.conf"
@@ -192,8 +193,6 @@ SCENEFUNCS += "packagestage_scenefunc"
python packagestage_scenefunc () {
import glob
-
- pstage_check_allowed(d)
if bb.data.getVar("PSTAGING_ACTIVE", d, 1) == "0":
return
@@ -319,27 +318,26 @@ populate_sysroot_postamble () {
if [ "$exitcode" != "5" -a "$exitcode" != "0" ]; then
exit $exitcode
fi
+ if [ "$exitcode" != "5" -a "$exitcode" != "0" ]; then
+ exit $exitcode
+ fi
set -e
fi
}
-python packagedstaging_fastpath () {
- pstage_check_allowed(d)
- if bb.data.getVar("PSTAGING_ACTIVE", d, 1) == "0":
- path = bb.data.getVar("PATH", d, 1)
- bb.mkdirhier(bb.data.expand("${PSTAGE_TMPDIR_STAGE}/sysroots", d))
- cmd = bb.data.expand("cp -fpPR ${SYSROOT_DESTDIR}/${STAGING_DIR}/* ${PSTAGE_TMPDIR_STAGE}/sysroots/", d)
- os.system("PATH=\"%s\" %s" % (path, cmd))
+packagedstaging_fastpath () {
+ if [ "$PSTAGING_ACTIVE" = "1" ]; then
+ mkdir -p ${PSTAGE_TMPDIR_STAGE}/sysroots/
+ cp -fpPR ${SYSROOT_DESTDIR}/${STAGING_DIR}/* ${PSTAGE_TMPDIR_STAGE}/sysroots/ || /bin/true
+ fi
}
do_populate_sysroot[dirs] =+ "${PSTAGE_DIR}"
python populate_sysroot_prehook() {
- pstage_check_allowed(d)
bb.build.exec_func("populate_sysroot_preamble", d)
}
python populate_sysroot_posthook() {
- pstage_check_allowed(d)
bb.build.exec_func("populate_sysroot_postamble", d)
}
@@ -413,8 +411,7 @@ python staging_package_libtoolhack () {
}
python do_package_stage () {
- pstage_check_allowed(d)
- if bb.data.getVar("PSTAGING_ACTIVE", d, 1) == "0":
+ if bb.data.getVar("PSTAGING_ACTIVE", d, 1) != "1":
return
#