From 1744612df63fd81e132215b203a0992b4f6abec7 Mon Sep 17 00:00:00 2001 From: Trammell Hudson Date: Mon, 10 Apr 2017 13:11:19 -0400 Subject: [PATCH] mount only takes one filesystem --- initrd/init | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/initrd/init b/initrd/init index c78f4a2e..01b090b6 100755 --- a/initrd/init +++ b/initrd/init @@ -1,7 +1,9 @@ #!/bin/ash # First thing it is vital to mount the /dev and other system directories mkdir /proc /sys /dev /tmp /boot /media 2>&- 1>&- -mount /dev /proc /sys +mount /dev +mount /proc +mount /sys # Setup our path export PATH=/sbin:/bin