Mercurial > lcfOS
annotate kernel/qemutst.sh @ 359:b4ac28efcdf4
Reorganize files
author | Windel Bouwman |
---|---|
date | Fri, 14 Mar 2014 15:41:55 +0100 |
parents | 5477e499b039 |
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 |