summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuya Kusakabe <yuya.kusakabe@gmail.com>2016-10-26 14:41:26 +0900
committerYuya Kusakabe <yuya.kusakabe@gmail.com>2016-10-26 14:41:26 +0900
commitae66df2b8b764df7bf2b3b6d3895358012791feb (patch)
treee0d3bcaad442c16c8cc5039aa5dbfec8972d6049
parent146a2390cf6dad358f861c656e76b145c8ea373b (diff)
downloadvyos-build-ae66df2b8b764df7bf2b3b6d3895358012791feb.tar.gz
vyos-build-ae66df2b8b764df7bf2b3b6d3895358012791feb.zip
Initial Hyper-V image
-rw-r--r--Makefile7
-rwxr-xr-xscripts/build-hyperv-image32
2 files changed, 39 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 8889604d..8dbb7a92 100644
--- a/Makefile
+++ b/Makefile
@@ -51,6 +51,13 @@ vmware:
@scripts/check-vm-build-env
@scripts/build-vmware-image
+.PHONY: hyperv
+.ONESHELL:
+hyperv:
+ @set -e
+ @scripts/check-vm-build-env
+ @scripts/build-hyperv-image
+
.PHONY: clearfog
.ONESHELL:
clearfog: clean prepare
diff --git a/scripts/build-hyperv-image b/scripts/build-hyperv-image
new file mode 100755
index 00000000..40c0c828
--- /dev/null
+++ b/scripts/build-hyperv-image
@@ -0,0 +1,32 @@
+#!/bin/sh
+#
+# Copyright (C) 2016 VyOS maintainers and contributors
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 2 or later as
+# published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+# File: build-hyperv-image
+# Purpose:
+# Build VyOS image for Hyper-V.
+
+export PACKER_BUILD_DIR=packer_build
+
+DST_DIR=${PACKER_BUILD_DIR}/hyperv
+mkdir -p ${DST_DIR}
+
+# Convert raw image to VHD
+source_image=${PACKER_BUILD_DIR}/qemu/vyos_qemu_image.img
+vhd=${DST_DIR}/vyos_hyperv_image.vhd
+qemu-img convert -f raw ${source_image} -O vpc ${vhd}
+if [ "$?" = "0" ]; then
+ echo "Hyper-V image successfully created to ./${vhd}"
+fi