diff options
author | Thomas Bächler <thomas@archlinux.org> | 2010-02-07 22:10:27 +0100 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2010-02-07 22:10:27 +0100 |
commit | d677a731301297c7bf4ffbe9c6735169150c4d4b (patch) | |
tree | 08a12e91a40b24161efa11a6cf8e915af114f57b /init | |
parent | bf7b98936386ff88c0774589e40352824728ae96 (diff) | |
download | mkinitcpio-d677a731301297c7bf4ffbe9c6735169150c4d4b.tar.gz mkinitcpio-d677a731301297c7bf4ffbe9c6735169150c4d4b.tar.xz |
udev: Do not try to resolve any group/user names
There is no nss library or user/group database in initramfs, so tell udev to not try to resolve any names
Diffstat (limited to 'init')
-rw-r--r-- | init | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ echo "/sbin/modprobe" > /proc/sys/kernel/modprobe if [ -x /sbin/udevd ]; then msg ":: Starting udevd..." echo > /proc/sys/kernel/hotplug - /sbin/udevd --daemon + /sbin/udevd --daemon --resolve-names=never msg "done." fi |