diff options
author | Javier Viguera <javier.viguera@digi.com> | 2015-03-17 14:06:50 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-20 23:56:02 +0000 |
commit | 740770c0098c414240b74f789ec874f3e51da77a (patch) | |
tree | 81271e61e3f699c74044c3e7c75d8ef960bc3258 | |
parent | 31f15d6e8ab5980a407bbf316d955b12e8a8d2c9 (diff) | |
download | poky-740770c0098c414240b74f789ec874f3e51da77a.tar.gz |
udev: remove 'modprobe' local rule
Since udev version 176 (udev commit 06316d9) udev switched modprobe
explicit rules by the builtin kmod support.
The rule using the builtin kmod support is in
'/lib/udev/rules.d/80-drivers.rules':
DRIVER!="?*", ENV{MODALIAS}=="?*", IMPORT{builtin}="kmod load $env{MODALIAS}"
(From OE-Core rev: a6f256b0d6cf4e76228627eaa00c1dbe02e2e622)
Signed-off-by: Javier Viguera <javier.viguera@digi.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/udev/udev/local.rules | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/meta/recipes-core/udev/udev/local.rules b/meta/recipes-core/udev/udev/local.rules index 9d4da493f7..d502cdd6ba 100644 --- a/meta/recipes-core/udev/udev/local.rules +++ b/meta/recipes-core/udev/udev/local.rules | |||
@@ -13,9 +13,6 @@ | |||
13 | # %% the '%' char itself | 13 | # %% the '%' char itself |
14 | # | 14 | # |
15 | 15 | ||
16 | # Try and modprobe for drivers for new hardware | ||
17 | ACTION=="add", DEVPATH=="/devices/*", ENV{MODALIAS}=="?*", RUN+="/sbin/modprobe $env{MODALIAS}" | ||
18 | |||
19 | # Create a symlink to any touchscreen input device | 16 | # Create a symlink to any touchscreen input device |
20 | # Trigger based on input type, that the evbit (-e) has EV_SYN and EV_ABS, | 17 | # Trigger based on input type, that the evbit (-e) has EV_SYN and EV_ABS, |
21 | # has an EV_ABS value (-a) which is used for touchscreen type devices. | 18 | # has an EV_ABS value (-a) which is used for touchscreen type devices. |