summaryrefslogtreecommitdiffstats
path: root/init
diff options
context:
space:
mode:
authorThomas Bächler <thomas@archlinux.org>2010-02-07 22:10:27 +0100
committerThomas Bächler <thomas@archlinux.org>2010-02-07 22:10:27 +0100
commitd677a731301297c7bf4ffbe9c6735169150c4d4b (patch)
tree08a12e91a40b24161efa11a6cf8e915af114f57b /init
parentbf7b98936386ff88c0774589e40352824728ae96 (diff)
downloadmkinitcpio-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--init2
1 files changed, 1 insertions, 1 deletions
diff --git a/init b/init
index 6a78965..823355c 100644
--- a/init
+++ b/init
@@ -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