summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorPatrick Ohly <patrick.ohly@gmx.de>2005-08-24 20:54:03 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-08-24 20:54:03 +0000
commit930e9671d7e44d8263f490e96dc619eccd56a133 (patch)
tree88d11ca623a09100efdac5d512cbce613cd573d3 /classes
parentd8e136911691c3b6888364b1a793dfb855114b5f (diff)
parent964c5ef136724d6a60d4b3520df768db8a6e6035 (diff)
merge of 889c17fb00a7db9ccb772e522e5d84a4cc218ff8
and b4bff47a815e0e0e2e911dc25e7390b6de29e41e
Diffstat (limited to 'classes')
-rw-r--r--classes/kernel.bbclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/classes/kernel.bbclass b/classes/kernel.bbclass
index 8b2186dec6..ff9aeeab78 100644
--- a/classes/kernel.bbclass
+++ b/classes/kernel.bbclass
@@ -193,6 +193,7 @@ module_autoload_rfcomm = "rfcomm"
module_autoload_sa1100-rtc = "sa1100-rtc"
# alias defaults (alphabetically sorted)
+module_conf_af_packet = "alias net-pf-17 af_packet"
module_conf_bluez = "alias net-pf-31 bluez"
module_conf_bnep = "alias bt-proto-4 bnep"
module_conf_hci_uart = "alias tty-ldisc-15 hci_uart"
@@ -229,7 +230,7 @@ python populate_packages_prepend () {
kernelver = bb.data.getVar('PV', d, 1) + bb.data.getVar('KERNEL_LOCALVERSION', d, 1)
kernelver_stripped = kernelver
- m = re.match('^(.*-hh.*)\..*$', kernelver)
+ m = re.match('^(.*-hh.*)[\.\+].*$', kernelver)
if m:
kernelver_stripped = m.group(1)
path = bb.data.getVar("PATH", d, 1)