From cb4eea0e483402892ad6ba00a95a3ceae810b5cc Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sun, 1 Apr 2012 18:28:00 -0400 Subject: init: fix location of udevd We've gotta stop moving this around... Signed-off-by: Dave Reisner --- init | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init b/init index 1f5f865..8e9ad90 100644 --- a/init +++ b/init @@ -13,9 +13,9 @@ mkdir -m755 /run/initramfs parse_cmdline # if available, start udevd at this stage -if [ -x /lib/udev/udevd ]; then +if [ -x /usr/lib/udev/udevd ]; then msg ":: Starting udevd..." - /lib/udev/udevd --daemon --resolve-names=never + /usr/lib/udev/udevd --daemon --resolve-names=never udevd_running=1 msg "done." else -- cgit v1.2.3-24-g4f1b