summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorYuya Kusakabe <yuya.kusakabe@gmail.com>2016-03-04 14:33:32 +0900
committerYuya Kusakabe <yuya.kusakabe@gmail.com>2016-03-04 23:39:23 +0900
commit3e56d7456e55b46ceb1dbca6a8f5cbc5150e18f5 (patch)
tree5915979baf9ddc4f509c28f028b0befb0526cd5a /tools
parenta05a3660eaf913689d89dd2187415d8b211aabb2 (diff)
downloadvyos-build-3e56d7456e55b46ceb1dbca6a8f5cbc5150e18f5.tar.gz
vyos-build-3e56d7456e55b46ceb1dbca6a8f5cbc5150e18f5.zip
Add qemu image build scripts
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run-qemu-image.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/run-qemu-image.sh b/tools/run-qemu-image.sh
new file mode 100755
index 00000000..b021ebd6
--- /dev/null
+++ b/tools/run-qemu-image.sh
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+VM_NAME='vyos_qemu'
+VM_IMAGE='./packer_build/qemu/vyos_qemu_image.img'
+MEMORY_SIZE='1024'
+NCPUS=1
+SSH_PORT=2222
+
+qemu-system-x86_64 \
+ -name "${VM_NAME}" \
+ -m ${MEMORY_SIZE} \
+ -net nic,vlan=0,model=virtio \
+ -net user,vlan=0,hostfwd=tcp::"${SSH_PORT}"-:22,hostname="${VM_NAME}" \
+ -drive if=virtio,file=${VM_IMAGE} \
+ -machine accel=kvm \
+ -cpu host -smp ${NCPUS}