linux_modules.bbclass: Remove unneeded file

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2640 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie 2007-09-01 23:02:46 +00:00
parent 0ea0986a59
commit 7a284e5a05
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
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, 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