summaryrefslogtreecommitdiff
path: root/classes/linux-kernel-base.bbclass
diff options
context:
space:
mode:
authorRolf Leggewie <oe-devel@rolf.leggewie.biz>2007-02-15 06:36:07 +0000
committerRolf Leggewie <oe-devel@rolf.leggewie.biz>2007-02-15 06:36:07 +0000
commit154641298d7cb2c336bc6a5a38e51d9f7e14abc2 (patch)
tree98bc3958b1f6473ff24001701b608f0a86c556a8 /classes/linux-kernel-base.bbclass
parentd761c689e1a013a698f5b032cb95d516c7ba22da (diff)
parent1c4bf67a97a157e0d7cf5756f29f78bac1139a57 (diff)
merge of '0c4f9a61dfdb0b3267c7794453ccf15dbc4e600c'
and 'd99679b234416670dd8c8e3c87704e7479b4a1e2'
Diffstat (limited to 'classes/linux-kernel-base.bbclass')
-rw-r--r--classes/linux-kernel-base.bbclass4
1 files changed, 0 insertions, 4 deletions
diff --git a/classes/linux-kernel-base.bbclass b/classes/linux-kernel-base.bbclass
index e58c228080..4e2e2da373 100644
--- a/classes/linux-kernel-base.bbclass
+++ b/classes/linux-kernel-base.bbclass
@@ -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