You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
305 B

#!/bin/sh
PATH=/bin
echo -n "Mounting filesystems ... "
mount -t proc proc /proc
mount -t devtmpfs dev /dev
mount -t sysfs sys /sys
mount -t devpts pts /dev/pts
echo done
echo Hello, World
cd /root
if [ -f ./interactive ]; then
./quicktest.sh
sh -i
else
./quicktest.sh || ./exit 1
fi
./exit