Mercurial > lcfOS
annotate kernel/qemutst.sh @ 354:5477e499b039
Added some sort of string functionality
author | Windel Bouwman |
---|---|
date | Thu, 13 Mar 2014 18:59:06 +0100 |
parents | c7cc54c0dfdf |
children | c05ab629976a |
rev | line source |
---|---|
340 | 1 #!/usr/bin/env bash |
2 | |
3 set -e | |
4 | |
5 echo "quit" | socat stdio stdio | |
6 | |
7 echo "Trying to run test on stellaris qemu machine" | |
8 | |
9 # -S means halt at start: | |
354 | 10 qemu-system-arm -M vexpress-a9 -m 128M -kernel kernel_arm.bin \ |
11 -serial stdio -s | |
340 | 12 |
13 #sleep 1 | |
14 | |
15 # Send quit to the monitor application | |
16 #echo "quit" | socat stdio UNIX-CONNECT:vm.sock | |
17 | |
18 #echo "Output from terminal:" | |
19 #cat output.txt | |
20 #echo "" | |
21 |