From: Harald Hoyer Date: Tue, 23 Jul 2013 10:26:06 +0000 (+0200) Subject: init.sh: don't check for systemd-udevd in lower version branch X-Git-Tag: 031~39 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bc6eae15abe6e5e7b7b48b5b0bda2c30e8614ab9;p=platform%2Fupstream%2Fdracut.git init.sh: don't check for systemd-udevd in lower version branch --- diff --git a/modules.d/99base/init.sh b/modules.d/99base/init.sh index f228a3a6..34be478f 100755 --- a/modules.d/99base/init.sh +++ b/modules.d/99base/init.sh @@ -278,8 +278,8 @@ if [ $UDEVVERSION -lt 168 ]; then udevadm control --stop-exec-queue HARD="" - while pidof systemd-udevd >/dev/null 2>&1; do - for pid in $(pidof systemd-udevd); do + while pidof udevd >/dev/null 2>&1; do + for pid in $(pidof udevd); do kill $HARD $pid >/dev/null 2>&1 done HARD="-9"