From patchwork Sat Feb 9 22:09:55 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/3] udev: Modify init script to use the correct path of udevadm Date: Sat, 09 Feb 2013 22:09:55 -0000 From: Andrei Gherzan X-Patchwork-Id: 44411 Message-Id: <1360447797-10187-1-git-send-email-andrei@gherzan.ro> To: openembedded-core@lists.openembedded.org udevadm is installed in /usr/bin not in /usr/sbin. Init script modified accordingly. Signed-off-by: Andrei Gherzan --- meta/recipes-core/udev/udev/init | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/meta/recipes-core/udev/udev/init b/meta/recipes-core/udev/udev/init index 8ac1ff7..95d2672 100644 --- a/meta/recipes-core/udev/udev/init +++ b/meta/recipes-core/udev/udev/init @@ -73,13 +73,13 @@ case "$1" in echo -e '\000\000\000\000' > /proc/sys/kernel/hotplug /lib/udev/udevd -d - /usr/sbin/udevadm control --env=STARTUP=1 + /usr/bin/udevadm control --env=STARTUP=1 if [ "$not_first_boot" != "" ];then - /usr/sbin/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/sbin/udevadm settle --timeout=3; /sbin/udevadm control --env=STARTUP=)& + /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=)& else - /usr/sbin/udevadm trigger --action=add - /usr/sbin/udevadm settle + /usr/bin/udevadm trigger --action=add + /usr/bin/udevadm settle fi ;; stop)