mount only takes one filesystem

This commit is contained in:
Trammell Hudson 2017-04-10 13:11:19 -04:00
parent 4c982856a3
commit 1744612df6
Failed to extract signature

View File

@ -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