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 '/cgit/'>index : multitech-oe.git
Multi-Tech CoreCDP 1.x OpenEmbedded TreeMulti-Tech Systems
summaryrefslogtreecommitdiff
path: root/packages/ltrace
AgeCommit message (Expand)AuthorFiles
2008-02-28ltrace: Improve staging variablesRichard Purdie1
2007-10-24ltrace: DEPENDS on binutilsMichael Lauer1
2007-03-26ltrace: make it buildable on misc architectures (copied some stuff from linux...Marcin Juszkiewicz1
2007-03-19ltrace: fix configure.ac to not search in /usr/include for header filesHolger Schurig3
2006-11-20another set of parse errors fixingMarcin Juszkiewicz1
2006-09-19ltrace: remove 0.3.36 and add 0.4Michael Lauer4
2006-09-17ltrace: fix building for ARCH=i686 and ARCH=i586Michael Lauer1
2006-08-30ltrace: add mvista-toolchain specific version, fix building w/ gnueabiMichael Lauer4
2006-05-12ltrace: remove do_installMichael Lauer1
2006-05-11ltrace: add 0.3.36, bring back from nonworkingMichael Lauer2