comparison test/m3_bare/qemutst.sh @ 337:b00219172a42

Added cool lm3s811 qemu project
author Windel Bouwman
date Thu, 20 Feb 2014 20:04:52 +0100
parents
children
comparison
equal deleted inserted replaced
336:d1ecc493384e 337:b00219172a42
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 qemu-system-arm -M lm3s811evb -m 128M -nographic -kernel bare.bin \
10 -monitor unix:vm.sock,server,nowait -serial file:output.txt &
11
12 sleep 1
13
14 # Send quit to the monitor application
15 echo "quit" | socat stdio UNIX-CONNECT:vm.sock
16
17 echo "Output from terminal:"
18 cat output.txt
19 echo ""
20