diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-21 14:13:09 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-22 12:36:40 +0000 |
commit | 04db2f5238edf77b0ee402f84655c0fe1b5896d4 (patch) | |
tree | b3d17045409edbdbc434777da155ac808edadc7d | |
parent | 9d4a69fd0de8fc52fa80ea14a437ad5d0e368d84 (diff) | |
download | poky-04db2f5238edf77b0ee402f84655c0fe1b5896d4.tar.gz |
uninative: Parameterise the use of STAGING_DIR
This means that a user can change TMPDIR in a multiconfig situation
and still only have one path to the uninative setup. Without this change
its not possile to make such a setup work.
(From OE-Core rev: 779422c5458f5f643b3a4a0dedaa4d9ad709367a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/uninative.bbclass | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/meta/classes/uninative.bbclass b/meta/classes/uninative.bbclass index 177af73247..03ad5d6633 100644 --- a/meta/classes/uninative.bbclass +++ b/meta/classes/uninative.bbclass | |||
@@ -1,4 +1,5 @@ | |||
1 | UNINATIVE_LOADER ?= "${STAGING_DIR}-uninative/${BUILD_ARCH}-linux/lib/${@bb.utils.contains('BUILD_ARCH', 'x86_64', 'ld-linux-x86-64.so.2', 'ld-linux.so.2', d)}" | 1 | UNINATIVE_LOADER ?= "${UNINATIVE_STAGING_DIR}-uninative/${BUILD_ARCH}-linux/lib/${@bb.utils.contains('BUILD_ARCH', 'x86_64', 'ld-linux-x86-64.so.2', 'ld-linux.so.2', d)}" |
2 | UNINATIVE_STAGING_DIR ?= "${STAGING_DIR}" | ||
2 | 3 | ||
3 | UNINATIVE_URL ?= "unset" | 4 | UNINATIVE_URL ?= "unset" |
4 | UNINATIVE_TARBALL ?= "${BUILD_ARCH}-nativesdk-libc.tar.bz2" | 5 | UNINATIVE_TARBALL ?= "${BUILD_ARCH}-nativesdk-libc.tar.bz2" |
@@ -58,7 +59,7 @@ python uninative_event_fetchloader() { | |||
58 | if localpath != tarballpath and os.path.exists(localpath) and not os.path.exists(tarballpath): | 59 | if localpath != tarballpath and os.path.exists(localpath) and not os.path.exists(tarballpath): |
59 | os.symlink(localpath, tarballpath) | 60 | os.symlink(localpath, tarballpath) |
60 | 61 | ||
61 | cmd = d.expand("mkdir -p ${STAGING_DIR}-uninative; cd ${STAGING_DIR}-uninative; tar -xjf ${UNINATIVE_DLDIR}/%s/${UNINATIVE_TARBALL}; ${STAGING_DIR}-uninative/relocate_sdk.py ${STAGING_DIR}-uninative/${BUILD_ARCH}-linux ${UNINATIVE_LOADER} ${UNINATIVE_LOADER} ${STAGING_DIR}-uninative/${BUILD_ARCH}-linux/${bindir_native}/patchelf-uninative ${STAGING_DIR}-uninative/${BUILD_ARCH}-linux${base_libdir_native}/libc*.so" % chksum) | 62 | cmd = d.expand("mkdir -p ${UNINATIVE_STAGING_DIR}-uninative; cd ${UNINATIVE_STAGING_DIR}-uninative; tar -xjf ${UNINATIVE_DLDIR}/%s/${UNINATIVE_TARBALL}; ${UNINATIVE_STAGING_DIR}-uninative/relocate_sdk.py ${UNINATIVE_STAGING_DIR}-uninative/${BUILD_ARCH}-linux ${UNINATIVE_LOADER} ${UNINATIVE_LOADER} ${UNINATIVE_STAGING_DIR}-uninative/${BUILD_ARCH}-linux/${bindir_native}/patchelf-uninative ${UNINATIVE_STAGING_DIR}-uninative/${BUILD_ARCH}-linux${base_libdir_native}/libc*.so" % chksum) |
62 | subprocess.check_call(cmd, shell=True) | 63 | subprocess.check_call(cmd, shell=True) |
63 | 64 | ||
64 | with open(loaderchksum, "w") as f: | 65 | with open(loaderchksum, "w") as f: |
@@ -90,7 +91,7 @@ def enable_uninative(d): | |||
90 | bb.debug(2, "Enabling uninative") | 91 | bb.debug(2, "Enabling uninative") |
91 | d.setVar("NATIVELSBSTRING", "universal%s" % oe.utils.host_gcc_version(d)) | 92 | d.setVar("NATIVELSBSTRING", "universal%s" % oe.utils.host_gcc_version(d)) |
92 | d.appendVar("SSTATEPOSTUNPACKFUNCS", " uninative_changeinterp") | 93 | d.appendVar("SSTATEPOSTUNPACKFUNCS", " uninative_changeinterp") |
93 | d.prependVar("PATH", "${STAGING_DIR}-uninative/${BUILD_ARCH}-linux${bindir_native}:") | 94 | d.prependVar("PATH", "${UNINATIVE_STAGING_DIR}-uninative/${BUILD_ARCH}-linux${bindir_native}:") |
94 | 95 | ||
95 | python uninative_changeinterp () { | 96 | python uninative_changeinterp () { |
96 | import subprocess | 97 | import subprocess |