Split QEMU run, automate GDB debugging

This commit is contained in:
Ciro Santilli
2017-05-20 11:17:37 +01:00
parent c886a85f58
commit 7f6b148dc4
6 changed files with 120 additions and 33 deletions

8
rootfs_overlay/count.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
# Generate infinitely many system calls :-)
i=0
while true; do
echo "$i"
i=$(($i+1))
sleep 1
done