aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/udev
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2013-04-17 15:48:08 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-17 22:54:38 +0100
commitcc0f22cd1e93cc25647add1a3339e150572e4fce (patch)
tree9097772047e48c5fb05b2bf1e5c1b377bf8d1536 /meta/recipes-core/udev
parentb92a3e9d093bc9421aa38a40bc6bfd559a16b3be (diff)
downloadopenembedded-core-cc0f22cd1e93cc25647add1a3339e150572e4fce.tar.gz
udev: remove explicit path to udevadm
Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/udev')
-rw-r--r--meta/recipes-core/udev/udev/init10
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
echo -e '\000\000\000\000' > /proc/sys/kernel/hotplug
@UDEVD@ -d
- /usr/bin/udevadm control --env=STARTUP=1
+ udevadm control --env=STARTUP=1
if [ "$not_first_boot" != "" ];then
- /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
- (/usr/bin/udevadm settle --timeout=3; /usr/bin/udevadm control --env=STARTUP=)&
+ 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
+ (udevadm settle --timeout=3; udevadm control --env=STARTUP=)&
else
- /usr/bin/udevadm trigger --action=add
- /usr/bin/udevadm settle
+ udevadm trigger --action=add
+ udevadm settle
fi
;;
stop)