diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-05-31 20:37:45 +0200 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-05-31 20:37:45 +0200 |
commit | 7da05acc4665dcfcd008e6ce698169b8e9503b33 (patch) | |
tree | 23dbbecb3003d3d013bab8ae947cd7c3f1c91fd8 | |
parent | d273a777b49902a8c3f1a8cef11e5ff85c7b3cf9 (diff) | |
download | meta-openembedded-7da05acc4665dcfcd008e6ce698169b8e9503b33.tar.gz |
udev-extra-rules: remove modprobe rule, it has moved back to udev
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
-rw-r--r-- | meta-oe/recipes-core/udev/udev-extra-rules.bb | 2 | ||||
-rw-r--r-- | meta-oe/recipes-core/udev/udev-extra-rules/local.rules | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/meta-oe/recipes-core/udev/udev-extra-rules.bb b/meta-oe/recipes-core/udev/udev-extra-rules.bb index bacf152d0..f114b1a46 100644 --- a/meta-oe/recipes-core/udev/udev-extra-rules.bb +++ b/meta-oe/recipes-core/udev/udev-extra-rules.bb | |||
@@ -2,6 +2,8 @@ DESCRIPTION = "Extra udev rules" | |||
2 | LICENSE = "MIT" | 2 | LICENSE = "MIT" |
3 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" | 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" |
4 | 4 | ||
5 | PR = "r1" | ||
6 | |||
5 | SRC_URI = " \ | 7 | SRC_URI = " \ |
6 | file://automount.rules \ | 8 | file://automount.rules \ |
7 | file://mount.sh \ | 9 | file://mount.sh \ |
diff --git a/meta-oe/recipes-core/udev/udev-extra-rules/local.rules b/meta-oe/recipes-core/udev/udev-extra-rules/local.rules index 900a05a93..4eaa8ca9b 100644 --- a/meta-oe/recipes-core/udev/udev-extra-rules/local.rules +++ b/meta-oe/recipes-core/udev/udev-extra-rules/local.rules | |||
@@ -19,6 +19,3 @@ KERNEL=="rtc0", SYMLINK+="rtc" | |||
19 | #The first framebuffer is symlinked to /dev/fb | 19 | #The first framebuffer is symlinked to /dev/fb |
20 | KERNEL=="fb0", SYMLINK+="fb" | 20 | KERNEL=="fb0", SYMLINK+="fb" |
21 | 21 | ||
22 | # Try and modprobe for drivers for new hardware | ||
23 | ACTION=="add", DEVPATH=="/devices/*", ENV{MODALIAS}=="?*", RUN+="/sbin/modprobe $env{MODALIAS}" | ||
24 | |||