aboutsummaryrefslogtreecommitdiff
path: root/src/initramfs-init.sh
blob: 07272c0b2d6cd1336c7c2559d0a3cc72bd976327 (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

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

exec /bin/sh