respect PARALLEL_INSTALL_MODULES
authorPhil Blundell <philb@gnu.org>
Mon, 27 Jun 2005 16:27:26 +0000 (16:27 +0000)
committerPhil Blundell <philb@gnu.org>
Mon, 27 Jun 2005 16:27:26 +0000 (16:27 +0000)
BKrev: 42c028eePdyvKCUGWCioz2Zgc1TqBg

classes/linux_modules.bbclass

index e69de29..62ebb58 100644 (file)
@@ -0,0 +1,18 @@
+def get_kernelmajorversion(p):
+       import re
+       r = re.compile("([0-9]+\.[0-9]+).*")
+       m = r.match(p);
+       if m:
+               return m.group(1)
+       return None
+
+def linux_module_packages(s, d):
+       import bb
+       if (bb.data.getVar("PARALLEL_INSTALL_MODULES", d, 1) == "1"):
+               suffix = "-%s" % (get_kernelmajorversion(base_read_file(bb.data.expand('${STAGING_KERNEL_DIR}/kernel-abiversion', d))))
+       else:
+               suffix = ""
+       return " ".join(map(lambda s: "kernel-module-%s%s" % (s.lower().replace('_', '-').replace('@', '+'), suffix), s.split()))
+
+# that's all
+