Mercurial > lcfOS
annotate kernel/qemutst.sh @ 340:c7cc54c0dfdf devel
Test featurebranch
author | Windel Bouwman |
---|---|
date | Sun, 23 Feb 2014 16:24:01 +0100 |
parents | |
children | 5477e499b039 |
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: | |
10 qemu-system-arm -M vexpress-a9 -m 128M -kernel kernel.bin \ | |
11 -monitor unix:vm.sock,server -serial file:output.txt -S -s | |
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 |