7 lines
136 B
Text
7 lines
136 B
Text
|
#!/bin/ash
|
||
|
mount none /dev -t devfs
|
||
|
mount none /proc -t proc
|
||
|
mount_root failsafe
|
||
|
mount -o remount,rw /dev/root /
|
||
|
exec /bin/busybox init
|