diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2007-02-14 00:42:44 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2007-02-14 00:42:44 +0000 |
commit | 8dc182e9960996f5010edcc598fbfaa8a12faceb (patch) | |
tree | feddc644841ce41c1dc42e73af855b1cd82d0bd0 /classes/linux-kernel-base.bbclass | |
parent | d7ad2da4354c1776cbf9d0eec173a9bfa584b4bf (diff) |
kernel.bbclass: Remove PARALLEL_INSTALL_MODULES. If we want to do this we should rethink and have something that works for multiple kernel versions generically not just a 2.4/2.6 split. There are certainly better ways to do it than this.
Diffstat (limited to 'classes/linux-kernel-base.bbclass')
-rw-r--r-- | classes/linux-kernel-base.bbclass | 4 |
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 |