aboutsummaryrefslogtreecommitdiff
path: root/src/initramfs-init.sh
blob: a566b57bb61a7e4acffd8aeb13f296eed3c59195 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

# mount the proc file system
mkdir /proc
mount -t proc proc /proc

insmod /usr/keylogger.ko

# run each test
echo "$(cd usr; ls -v1 tests | while read line; do tests/$line; echo; done)"

exec /bin/sh