xref: /aosp_15_r20/external/libcap/kdebug/test-init.sh (revision 2810ac1b38eead2603277920c78344c84ddf3aff)
1#!/bin/sh
2PATH=/bin
3
4echo -n "Mounting filesystems ... "
5mount -t proc proc /proc
6mount -t devtmpfs dev /dev
7mount -t sysfs sys /sys
8mount -t devpts pts /dev/pts
9echo done
10
11echo Hello, World
12cd /root
13if [ -f ./interactive ]; then
14    ./quicktest.sh
15    sh -i
16else
17    ./quicktest.sh || ./exit 1
18fi
19./exit
20