diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/kernel.bbclass | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index 9d3b2bbd8a..59de148cc8 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass | |||
@@ -292,13 +292,16 @@ module_conf_rfcomm = "alias bt-proto-3 rfcomm" | |||
292 | 292 | ||
293 | python populate_packages_prepend () { | 293 | python populate_packages_prepend () { |
294 | def extract_modinfo(file): | 294 | def extract_modinfo(file): |
295 | import re | 295 | import tempfile, re |
296 | tmpfile = os.tmpnam() | 296 | tempfile.tempdir = bb.data.getVar("WORKDIR", d, 1) |
297 | tf = tempfile.mkstemp() | ||
298 | tmpfile = tf[1] | ||
297 | cmd = "PATH=\"%s\" %sobjcopy -j .modinfo -O binary %s %s" % (bb.data.getVar("PATH", d, 1), bb.data.getVar("HOST_PREFIX", d, 1) or "", file, tmpfile) | 299 | cmd = "PATH=\"%s\" %sobjcopy -j .modinfo -O binary %s %s" % (bb.data.getVar("PATH", d, 1), bb.data.getVar("HOST_PREFIX", d, 1) or "", file, tmpfile) |
298 | os.system(cmd) | 300 | os.system(cmd) |
299 | f = open(tmpfile) | 301 | f = open(tmpfile) |
300 | l = f.read().split("\000") | 302 | l = f.read().split("\000") |
301 | f.close() | 303 | f.close() |
304 | os.close(tf[0]) | ||
302 | os.unlink(tmpfile) | 305 | os.unlink(tmpfile) |
303 | exp = re.compile("([^=]+)=(.*)") | 306 | exp = re.compile("([^=]+)=(.*)") |
304 | vals = {} | 307 | vals = {} |