udev: fixed obsolete udevadm syntax for udev init.d script.
authorIhar Hrachyshka <ihar.hrachyshka@gmail.com>
Sun, 24 May 2009 10:54:00 +0000 (10:54 +0000)
committerTom Rini <trini@embeddedalley.com>
Sat, 30 May 2009 21:45:40 +0000 (17:45 -0400)
Fixed the following warning message when executing udev init script:
"udevadm control commands requires the --<command> format, this will
stop working in a future release."

Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Acked-by: Tom Rini <trini@embeddedalley.com>
recipes/udev/udev-141/init
recipes/udev/udev_141.bb

index efe4470..7188b5a 100644 (file)
@@ -56,10 +56,10 @@ kill_udevd > "/dev/null" 2>&1
         echo -e '\000\000\000\000' > /proc/sys/kernel/hotplug
         /sbin/udevd -d
 
-        /sbin/udevadm control env STARTUP=1
+        /sbin/udevadm control --env STARTUP=1
                if [ "$not_first_boot" != "" ];then
                        /sbin/udevadm trigger --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
-                       (/sbin/udevadm settle --timeout=3; /sbin/udevadm control env STARTUP=)&
+                       (/sbin/udevadm settle --timeout=3; /sbin/udevadm control --env STARTUP=)&
                        if [ "$DEVCACHE" != "" ]; then
                                rm -f /tmp/uname
                                rm -f /tmp/cmdline
index e687989..040189f 100644 (file)
@@ -6,7 +6,7 @@ LICENSE = "GPL"
 # Untested
 DEFAULT_PREFERENCE = "-1"
 
-PR = "r8"
+PR = "r9"
 
 # needed for init.d script
 RDEPENDS_udev += "udev-utils"