diff options
author | Ross Burton <ross.burton@intel.com> | 2013-04-17 15:48:08 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-18 00:37:57 +0100 |
commit | f6ae64553dcf859e5fff683dc3000fcd3698cba5 (patch) | |
tree | db97ceeb1e74b7ffe17e3836ba70277e60d016d7 /meta/recipes-core | |
parent | 2cb729a211e4e527f9099e1bd4870cd70a3c7609 (diff) | |
download | poky-f6ae64553dcf859e5fff683dc3000fcd3698cba5.tar.gz |
udev: remove explicit path to udevadm
(From OE-Core rev: cc0f22cd1e93cc25647add1a3339e150572e4fce)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/udev/udev/init | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/recipes-core/udev/udev/init b/meta/recipes-core/udev/udev/init index 2a95ab747d..1f871da956 100644 --- a/meta/recipes-core/udev/udev/init +++ b/meta/recipes-core/udev/udev/init | |||
@@ -81,13 +81,13 @@ case "$1" in | |||
81 | echo -e '\000\000\000\000' > /proc/sys/kernel/hotplug | 81 | echo -e '\000\000\000\000' > /proc/sys/kernel/hotplug |
82 | @UDEVD@ -d | 82 | @UDEVD@ -d |
83 | 83 | ||
84 | /usr/bin/udevadm control --env=STARTUP=1 | 84 | udevadm control --env=STARTUP=1 |
85 | if [ "$not_first_boot" != "" ];then | 85 | if [ "$not_first_boot" != "" ];then |
86 | /usr/bin/udevadm trigger --action=add --subsystem-nomatch=tty --subsystem-nomatch=mem --subsystem-nomatch=vc --subsystem-nomatch=vtconsole --subsystem-nomatch=misc --subsystem-nomatch=dcon --subsystem-nomatch=pci_bus --subsystem-nomatch=graphics --subsystem-nomatch=backlight --subsystem-nomatch=video4linux --subsystem-nomatch=platform | 86 | udevadm trigger --action=add --subsystem-nomatch=tty --subsystem-nomatch=mem --subsystem-nomatch=vc --subsystem-nomatch=vtconsole --subsystem-nomatch=misc --subsystem-nomatch=dcon --subsystem-nomatch=pci_bus --subsystem-nomatch=graphics --subsystem-nomatch=backlight --subsystem-nomatch=video4linux --subsystem-nomatch=platform |
87 | (/usr/bin/udevadm settle --timeout=3; /usr/bin/udevadm control --env=STARTUP=)& | 87 | (udevadm settle --timeout=3; udevadm control --env=STARTUP=)& |
88 | else | 88 | else |
89 | /usr/bin/udevadm trigger --action=add | 89 | udevadm trigger --action=add |
90 | /usr/bin/udevadm settle | 90 | udevadm settle |
91 | fi | 91 | fi |
92 | ;; | 92 | ;; |
93 | stop) | 93 | stop) |