summaryrefslogtreecommitdiffstats
path: root/meta/classes/linux-kernel-base.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/linux-kernel-base.bbclass')
-rw-r--r--meta/classes/linux-kernel-base.bbclass4
1 files changed, 0 insertions, 4 deletions
diff --git a/meta/classes/linux-kernel-base.bbclass b/meta/classes/linux-kernel-base.bbclass
index e58c228080..4e2e2da373 100644
--- a/meta/classes/linux-kernel-base.bbclass
+++ b/meta/classes/linux-kernel-base.bbclass
@@ -32,10 +32,6 @@ def get_kernelmajorversion(p):
32def linux_module_packages(s, d): 32def linux_module_packages(s, d):
33 import bb, os.path 33 import bb, os.path
34 suffix = "" 34 suffix = ""
35 if (bb.data.getVar("PARALLEL_INSTALL_MODULES", d, 1) == "1"):
36 file = bb.data.expand('${STAGING_KERNEL_DIR}/kernel-abiversion', d)
37 if (os.path.exists(file)):
38 suffix = "-%s" % (get_kernelmajorversion(base_read_file(file)))
39 return " ".join(map(lambda s: "kernel-module-%s%s" % (s.lower().replace('_', '-').replace('@', '+'), suffix), s.split())) 35 return " ".join(map(lambda s: "kernel-module-%s%s" % (s.lower().replace('_', '-').replace('@', '+'), suffix), s.split()))
40 36
41# that's all 37# that's all