diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-28 10:10:06 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-09-23 20:31:18 +0100 |
commit | 2cbab459e471abbddba8badc64805e7226e864be (patch) | |
tree | 1005e79daebb1f6cba2ef6258da00995e2572263 /meta/classes | |
parent | a94574f189a2840ddb9cf78c050384d4c833d291 (diff) | |
download | poky-2cbab459e471abbddba8badc64805e7226e864be.tar.gz |
uninative: Add uninative - a way of reusing native/cross over multiple distros
These patches are the start of a new idea, a way of allowing a single set of
cross/native sstate to work over mutliple distros, even old ones.
The assumption is that our own C library is basically up to date. We build
and share a small tarball (~2MB) of a prebuilt copy of this along with a
patchelf binary (which sadly is C++ based so libstdc++ is in there). This
tarball can be generated from our usual SDK generation process through
the supplied recipe, uninative-tarball.
At the start of the build, if its not been extracted into the sysroot, this
tarball is extracted there and configured for the specified path.
When we install binaries from a "uninative" sstate feed, we change the
dynamic loader to point at this dynamic loader and C librbary. This works
exactly the same way as our relocatable SDK does. The only real difference
is a switch to use patchelf, so even if the interpreter section is too small,
it can still adjust the binary.
Right now this implements a working proof of concept. If you build the tarball
and place it at the head of the tree (in COREBASE), you can run a build from
sstate and successfully build packages and construct images.
There is some improvement needed, its hardcoded for x86_64 right now, its trivial
to add 32 bit support too. The tarball isn't fetched right now, there is just a
harcoded path assumption and there is no error handling. I haven't figured
out the best delivery mechanism for that yet. BuildStarted is probably not
the right event to hook on either.
I've merged this to illustrate how with a small change, we might make the
native/cross sstate much more reusable and hence improve the accessibility
of lower overhead builds. With this change, its possible the Yocto Project may
be able to support a configured sstate mirror out the box. This also has
positive implications for our developer workflow/SDK improvements.
(From OE-Core rev: e66c96ae9c7ba21ebd04a4807390f0031238a85a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/uninative.bbclass | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/meta/classes/uninative.bbclass b/meta/classes/uninative.bbclass new file mode 100644 index 0000000000..51391dbc4a --- /dev/null +++ b/meta/classes/uninative.bbclass | |||
@@ -0,0 +1,44 @@ | |||
1 | NATIVELSBSTRING = "universal" | ||
2 | |||
3 | UNINATIVE_LOADER = "${STAGING_DIR_NATIVE}/lib/ld-linux-x86-64.so.2" | ||
4 | |||
5 | addhandler uninative_eventhandler | ||
6 | uninative_eventhandler[eventmask] = "bb.event.BuildStarted" | ||
7 | |||
8 | python uninative_eventhandler() { | ||
9 | loader = e.data.getVar("UNINATIVE_LOADER", True) | ||
10 | if not os.path.exists(loader): | ||
11 | import subprocess | ||
12 | cmd = e.data.expand("mkdir -p ${STAGING_DIR}; cd ${STAGING_DIR}; tar -xjf ${COREBASE}/${BUILD_ARCH}-nativesdk-libc.tar.bz2; ${STAGING_DIR}/relocate_sdk.py ${STAGING_DIR_NATIVE} ${UNINATIVE_LOADER} ${UNINATIVE_LOADER} ${STAGING_BINDIR_NATIVE}/patchelf-uninative") | ||
13 | #bb.warn("nativesdk lib extraction: " + cmd) | ||
14 | subprocess.check_call(cmd, shell=True) | ||
15 | } | ||
16 | |||
17 | SSTATEPOSTUNPACKFUNCS_append = " uninative_changeinterp" | ||
18 | |||
19 | python uninative_changeinterp () { | ||
20 | import subprocess | ||
21 | import stat | ||
22 | import oe.qa | ||
23 | |||
24 | if not (bb.data.inherits_class('native', d) or bb.data.inherits_class('crosssdk', d) or bb.data.inherits_class('cross', d)): | ||
25 | return | ||
26 | |||
27 | sstateinst = d.getVar('SSTATE_INSTDIR', True) | ||
28 | for walkroot, dirs, files in os.walk(sstateinst): | ||
29 | for file in files: | ||
30 | f = os.path.join(walkroot, file) | ||
31 | if os.path.islink(f): | ||
32 | continue | ||
33 | s = os.stat(f) | ||
34 | if not ((s[stat.ST_MODE] & stat.S_IXUSR) or (s[stat.ST_MODE] & stat.S_IXGRP) or (s[stat.ST_MODE] & stat.S_IXOTH)): | ||
35 | continue | ||
36 | elf = oe.qa.ELFFile(f) | ||
37 | try: | ||
38 | elf.open() | ||
39 | except: | ||
40 | continue | ||
41 | |||
42 | #bb.warn("patchelf-uninative --set-interpreter %s %s" % (d.getVar("UNINATIVE_LOADER", True), f)) | ||
43 | subprocess.call("patchelf-uninative --set-interpreter %s %s" % (d.getVar("UNINATIVE_LOADER", True), f), shell=True) | ||
44 | } | ||