kernel.bbclass: Remove broken and unused PARALLEL_INSTALL_MODULES

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2405 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie
2007-08-08 20:32:59 +00:00
parent c1c5e8b092
commit 4e662cb3aa
2 changed files with 0 additions and 39 deletions

View File

@@ -32,10 +32,6 @@ def get_kernelmajorversion(p):
def linux_module_packages(s, d):
import bb, os.path
suffix = ""
if (bb.data.getVar("PARALLEL_INSTALL_MODULES", d, 1) == "1"):
file = bb.data.expand('${STAGING_KERNEL_DIR}/kernel-abiversion', d)
if (os.path.exists(file)):
suffix = "-%s" % (get_kernelmajorversion(base_read_file(file)))
return " ".join(map(lambda s: "kernel-module-%s%s" % (s.lower().replace('_', '-').replace('@', '+'), suffix), s.split()))
# that's all