diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2012-07-26 14:04:31 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-15 14:26:42 +0100 |
commit | b6bbf40996e6242349843658e46d3752cea3a534 (patch) | |
tree | e12307f119797b4512307822205b3a4ba2c12053 /meta/classes | |
parent | 2d1f0cae655635465da06a6dd1bca8eec6a8734d (diff) | |
download | poky-b6bbf40996e6242349843658e46d3752cea3a534.tar.gz |
kernel.bbclass: remove default module_autoload and module_conf values
kernel.bbclass is a common class for many different kernel versions,
and as such the default module_autoload and module_conf values that
it contains are not relevant, or out of date for most builds.
Individual kernel recipes or distros can better specify these
values to meet their needs.
(From OE-Core rev: a134efa7743edc3b7ca8abb651add6d2045c3b44)
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/kernel.bbclass | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index e2f2441802..0b970d7ba5 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass | |||
@@ -295,25 +295,6 @@ if [ x"$D" = "x" ]; then | |||
295 | fi | 295 | fi |
296 | } | 296 | } |
297 | 297 | ||
298 | # autoload defaults (alphabetically sorted) | ||
299 | module_autoload_hidp = "hidp" | ||
300 | module_autoload_ipv6 = "ipv6" | ||
301 | module_autoload_ipsec = "ipsec" | ||
302 | module_autoload_ircomm-tty = "ircomm-tty" | ||
303 | module_autoload_rfcomm = "rfcomm" | ||
304 | module_autoload_sa1100-rtc = "sa1100-rtc" | ||
305 | # sa1100-rtc was renamed in 2.6.23 onwards | ||
306 | module_autoload_rtc-sa1100 = "rtc-sa1100" | ||
307 | |||
308 | # alias defaults (alphabetically sorted) | ||
309 | module_conf_af_packet = "alias net-pf-17 af_packet" | ||
310 | module_conf_bluez = "alias net-pf-31 bluez" | ||
311 | module_conf_bnep = "alias bt-proto-4 bnep" | ||
312 | module_conf_hci_uart = "alias tty-ldisc-15 hci_uart" | ||
313 | module_conf_l2cap = "alias bt-proto-0 l2cap" | ||
314 | module_conf_sco = "alias bt-proto-2 sco" | ||
315 | module_conf_rfcomm = "alias bt-proto-3 rfcomm" | ||
316 | |||
317 | python populate_packages_prepend () { | 298 | python populate_packages_prepend () { |
318 | def extract_modinfo(file): | 299 | def extract_modinfo(file): |
319 | import tempfile, re, subprocess | 300 | import tempfile, re, subprocess |