From 94d3f04ee1f2e3761d663a89e708977bfbfdc480 Mon Sep 17 00:00:00 2001 From: Phil Wise Date: Thu, 16 Feb 2017 17:07:03 +0100 Subject: Add example run-qemu script --- meta-sota-qemux86-64/scripts/run-qemu | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 meta-sota-qemux86-64/scripts/run-qemu diff --git a/meta-sota-qemux86-64/scripts/run-qemu b/meta-sota-qemux86-64/scripts/run-qemu new file mode 100755 index 0000000..d4c0240 --- /dev/null +++ b/meta-sota-qemux86-64/scripts/run-qemu @@ -0,0 +1,17 @@ +DIR=tmp/deploy/images/qemux86-64 +IMAGE=$DIR/core-image-minimal-qemux86-64.otaimg + +qemu-system-x86_64 \ + -bios $DIR/u-boot-qemux86-64.rom \ + -drive file=$IMAGE,format=raw \ + -vga std -m 512 \ + -serial stdio \ + -serial tcp:127.0.0.1:8990,server,nowait \ + -net user,hostfwd=tcp:0.0.0.0:2222-:22,restrict=off \ + -net nic \ + -usb \ + -cpu core2duo \ + -nographic \ + -display none + +# -enable-kvm \ -- cgit v1.2.3-54-g00ecf