diff options
author | Dave Reisner <dreisner@archlinux.org> | 2012-04-02 00:28:00 +0200 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2012-04-02 00:28:00 +0200 |
commit | cb4eea0e483402892ad6ba00a95a3ceae810b5cc (patch) | |
tree | 60a6a7fd3fe8afe0f37c9fe5174452041fbfad16 /init | |
parent | d397043814a47f0762175a9999a01f3ec0088152 (diff) | |
download | mkinitcpio-cb4eea0e483402892ad6ba00a95a3ceae810b5cc.tar.gz mkinitcpio-cb4eea0e483402892ad6ba00a95a3ceae810b5cc.tar.xz |
init: fix location of udevd
We've gotta stop moving this around...
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Diffstat (limited to 'init')
-rw-r--r-- | init | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |