summaryrefslogtreecommitdiff
path: root/classes/kernel.bbclass
diff options
context:
space:
mode:
authorFlorian Boor <florian.boor@kernelconcepts.de>2005-08-25 09:40:49 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-08-25 09:40:49 +0000
commit08230069ad4b4ab6686d0467546e5f0125d54e3a (patch)
tree2ff044ba1c38f78921d60e78b5923ee33ffa4d1d /classes/kernel.bbclass
parent3ee0828904266168540bcc2672d20604666c4976 (diff)
parent0898ace54cb976203eefd94af7db6ef2917409f0 (diff)
merge of 1dee375784a345fa0f5a64a238267569e93342c5
and 3aec9f1e3ffb99d10a3a1025fe75aa3bcbef3e23
Diffstat (limited to 'classes/kernel.bbclass')
-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)