From 8449563df408c437dd162b87417c3e16ea7974bd Mon Sep 17 00:00:00 2001 From: Gerardo Exequiel Pozzi Date: Mon, 29 Aug 2011 21:19:43 -0300 Subject: [mkinitcpio] Remove early redirection 2>/dev/null such node does not exists. An empty file will be created in any case, does not cause any harm, but for correctness. Signed-off-by: Gerardo Exequiel Pozzi --- init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init b/init index 855a054..cd012c9 100644 --- a/init +++ b/init @@ -9,7 +9,7 @@ busybox --install -s mkdir -p /new_root mount -t proc proc /proc -o nosuid,noexec,nodev mount -t sysfs sys /sys -o nosuid,noexec,nodev -if grep -q devtmpfs /proc/filesystems 2>/dev/null; then +if grep -q devtmpfs /proc/filesystems; then mount -n -t devtmpfs udev /dev -o mode=0755,size=10M,nosuid devtmpfs_mounted=1 else -- cgit v1.2.3-24-g4f1b