diff options
Diffstat (limited to 'meta/classes/linux_modules.bbclass')
-rw-r--r-- | meta/classes/linux_modules.bbclass | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/classes/linux_modules.bbclass b/meta/classes/linux_modules.bbclass new file mode 100644 index 0000000000..d5c4e74ca1 --- /dev/null +++ b/meta/classes/linux_modules.bbclass | |||
@@ -0,0 +1,19 @@ | |||
1 | def get_kernelmajorversion(p): | ||
2 | import re | ||
3 | r = re.compile("([0-9]+\.[0-9]+).*") | ||
4 | m = r.match(p); | ||
5 | if m: | ||
6 | return m.group(1) | ||
7 | return None | ||
8 | |||
9 | def linux_module_packages(s, d): | ||
10 | import bb, os.path | ||
11 | suffix = "" | ||
12 | if (bb.data.getVar("PARALLEL_INSTALL_MODULES", d, 1) == "1"): | ||
13 | file = bb.data.expand('${STAGING_KERNEL_DIR}/kernel-abiversion', d) | ||
14 | if (os.path.exists(file)): | ||
15 | suffix = "-%s" % (get_kernelmajorversion(base_read_file(file))) | ||
16 | return " ".join(map(lambda s: "kernel-module-%s%s" % (s.lower().replace('_', '-').replace('@', '+'), suffix), s.split())) | ||
17 | |||
18 | # that's all | ||
19 | |||