aboutsummaryrefslogtreecommitdiffstats
path: root/classes/kernel.bbclass
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2009-01-12 18:33:47 +0100
committerMarcin Juszkiewicz <hrw@openembedded.org>2009-01-12 18:50:17 +0100
commite1f4964de0b74991a2c84f639a27ce50d220bc02 (patch)
tree4564ae0639affdc346dfb243d998ce42cd64eeaa /classes/kernel.bbclass
parent640cdb6192e48a06bbf072c3b4dec292673f273f (diff)
downloadopenembedded-e1f4964de0b74991a2c84f639a27ce50d220bc02.tar.gz
kernel.bbclass: do not use insecure tmpnam() function for generating unique names
Diffstat (limited to 'classes/kernel.bbclass')
-rw-r--r--classes/kernel.bbclass5
1 files changed, 3 insertions, 2 deletions
diff --git a/classes/kernel.bbclass b/classes/kernel.bbclass
index e8f2fb6d71..c864782d4d 100644
--- a/classes/kernel.bbclass
+++ b/classes/kernel.bbclass
@@ -293,8 +293,9 @@ module_conf_rfcomm = "alias bt-proto-3 rfcomm"
python populate_packages_prepend () {
def extract_modinfo(file):
- import os, re
- tmpfile = os.tmpnam()
+ import tempfile, os, re
+ tempfile.tempdir = bb.data.getVar("WORKDIR", d, 1)
+ tmpfile = tempfile.mkstemp()[1]
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)
os.system(cmd)
f = open(tmpfile)