summaryrefslogtreecommitdiffstats
path: root/meta/classes/insane.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-03-04 16:27:11 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-03-07 00:11:39 +0000
commit0b84897ea813a4f7a8b198efcc7ac335debf19d9 (patch)
treeba827f0c0486936de4616efc8eeb24876e90474f /meta/classes/insane.bbclass
parent6b564ae35d35693476513141ab9ae49aa734c7eb (diff)
downloadpoky-0b84897ea813a4f7a8b198efcc7ac335debf19d9.tar.gz
insane/prelink: Handle nonstandard library paths
Prelink contains some hardcoded assumptions about the path layout of the target system. Unfortunately if the system doesn't match, prelink doesn't work. This breaks: a) prelink of those images b) the unsafe-references-in-binaries QA test (which uses prelink-rtld) One way to work around this is to construct an ld.so.conf file which lists the library paths in question. We do this in sanity QA check and in the rootfs prelink code, being careful not to trample any existing target ld.so.conf. There is an additional problem that $LIB references in RPATHs won't be handled correctly, I've not see any system use these in reality though so this change at least improves things. (From OE-Core rev: 7fd1d7e639c2ed7e0699937a5cb245c187b7c811) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/insane.bbclass')
-rw-r--r--meta/classes/insane.bbclass5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass
index ebf92ac621..7ac945d4cd 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -1094,12 +1094,17 @@ python do_package_qa () {
1094 continue 1094 continue
1095 if w in testmatrix and testmatrix[w] in g: 1095 if w in testmatrix and testmatrix[w] in g:
1096 warnchecks.append(g[testmatrix[w]]) 1096 warnchecks.append(g[testmatrix[w]])
1097 if w == 'unsafe-references-in-binaries':
1098 oe.utils.write_ld_so_conf(d)
1099
1097 errorchecks = [] 1100 errorchecks = []
1098 for e in (d.getVar("ERROR_QA", True) or "").split(): 1101 for e in (d.getVar("ERROR_QA", True) or "").split():
1099 if e in skip: 1102 if e in skip:
1100 continue 1103 continue
1101 if e in testmatrix and testmatrix[e] in g: 1104 if e in testmatrix and testmatrix[e] in g:
1102 errorchecks.append(g[testmatrix[e]]) 1105 errorchecks.append(g[testmatrix[e]])
1106 if e == 'unsafe-references-in-binaries':
1107 oe.utils.write_ld_so_conf(d)
1103 1108
1104 bb.note("Checking Package: %s" % package) 1109 bb.note("Checking Package: %s" % package)
1105 # Check package name 1110 # Check package name