summaryrefslogtreecommitdiffstats
path: root/meta/classes/uninative.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/uninative.bbclass')
-rw-r--r--meta/classes/uninative.bbclass11
1 files changed, 10 insertions, 1 deletions
diff --git a/meta/classes/uninative.bbclass b/meta/classes/uninative.bbclass
index ee4ab20c17..b5780316ec 100644
--- a/meta/classes/uninative.bbclass
+++ b/meta/classes/uninative.bbclass
@@ -59,7 +59,16 @@ python uninative_event_fetchloader() {
59 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):
60 os.symlink(localpath, tarballpath) 60 os.symlink(localpath, tarballpath)
61 61
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 cmd = d.expand("\
63mkdir -p ${UNINATIVE_STAGING_DIR}-uninative; \
64cd ${UNINATIVE_STAGING_DIR}-uninative; \
65tar -xjf ${UNINATIVE_DLDIR}/%s/${UNINATIVE_TARBALL}; \
66${UNINATIVE_STAGING_DIR}-uninative/relocate_sdk.py \
67 ${UNINATIVE_STAGING_DIR}-uninative/${BUILD_ARCH}-linux \
68 ${UNINATIVE_LOADER} \
69 ${UNINATIVE_LOADER} \
70 ${UNINATIVE_STAGING_DIR}-uninative/${BUILD_ARCH}-linux/${bindir_native}/patchelf-uninative \
71 ${UNINATIVE_STAGING_DIR}-uninative/${BUILD_ARCH}-linux${base_libdir_native}/libc*.so" % chksum)
63 subprocess.check_output(cmd, shell=True) 72 subprocess.check_output(cmd, shell=True)
64 73
65 with open(loaderchksum, "w") as f: 74 with open(loaderchksum, "w") as f: