summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2016-12-21 22:30:06 +0100
committerDaniil Baturin <daniil@baturin.org>2016-12-21 22:30:06 +0100
commitcc81ba8861a22501dc4b7460161368e4c5b18c66 (patch)
tree1be8aa857fa7ef647e93472225bb2d426c066bac
parent53a878bb2d18a450f4096403d80461dd566ef29e (diff)
parentae66df2b8b764df7bf2b3b6d3895358012791feb (diff)
downloadvyos-build-cc81ba8861a22501dc4b7460161368e4c5b18c66.tar.gz
vyos-build-cc81ba8861a22501dc4b7460161368e4c5b18c66.zip
Merge branch 'current' of github.com:vyos/vyos-build into current
-rw-r--r--Makefile7
-rwxr-xr-xdata/live-build-config/hooks/04-locale.chroot1
-rwxr-xr-xdata/live-build-config/hooks/09-live.chroot5
-rwxr-xr-xdata/live-build-config/hooks/18-enable-disable_services.chroot (renamed from data/live-build-config/hooks/18-disable_services.chroot)3
-rw-r--r--data/live-build-config/includes.chroot/etc/systemd/system/sshd.service16
-rw-r--r--data/live-build-config/includes.chroot/lib/systemd/system/ssh-session-cleanup.service13
-rwxr-xr-xdata/live-build-config/includes.chroot/usr/lib/openssh/ssh-session-cleanup11
-rwxr-xr-xscripts/build-hyperv-image32
-rwxr-xr-xscripts/live-build-config2
-rwxr-xr-xtools/armada-388-clearfog.dtbbin18814 -> 19429 bytes
-rw-r--r--tools/u-boot-spl.kwbbin550316 -> 557788 bytes
11 files changed, 72 insertions, 18 deletions
diff --git a/Makefile b/Makefile
index 9d9576de..501ab041 100644
--- a/Makefile
+++ b/Makefile
@@ -52,6 +52,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/data/live-build-config/hooks/04-locale.chroot b/data/live-build-config/hooks/04-locale.chroot
index 1c02db02..89a5f954 100755
--- a/data/live-build-config/hooks/04-locale.chroot
+++ b/data/live-build-config/hooks/04-locale.chroot
@@ -6,3 +6,4 @@ LANG=en_US.UTF-8
LC_ALL=C
EOF
+sed -i 's/AcceptEnv LANG LC_\*/# AcceptEnv LANG LC_\*/g' /etc/ssh/sshd_config
diff --git a/data/live-build-config/hooks/09-live.chroot b/data/live-build-config/hooks/09-live.chroot
index e2f95ff3..f19f0ae6 100755
--- a/data/live-build-config/hooks/09-live.chroot
+++ b/data/live-build-config/hooks/09-live.chroot
@@ -1,6 +1,11 @@
#!/bin/sh
# hack live script that tries to mount ext[23] floppies as root
+# remove user settings live config scripts
sed -e '/ln -s "${devname}"/,/return 0/ s/^/: FIXME/' \
-i /usr/share/initramfs-tools/scripts/live
+
+rm -rf /lib/live/config/0030-live-debconfig_passwd
+rm -rf /lib/live/config/0030-user-setup
+rm -rf /lib/live/config/0040-sudo
diff --git a/data/live-build-config/hooks/18-disable_services.chroot b/data/live-build-config/hooks/18-enable-disable_services.chroot
index c68a6b3d..68971405 100755
--- a/data/live-build-config/hooks/18-disable_services.chroot
+++ b/data/live-build-config/hooks/18-enable-disable_services.chroot
@@ -1,6 +1,6 @@
#!/bin/sh
-echo I: Disabling services.
+echo I: Enabling/Disabling services.
systemctl disable exim4
/usr/sbin/update-rc.d -f exim4 remove
systemctl disable isc-dhcp-server
@@ -25,3 +25,4 @@ systemctl disable dnsmasq
/usr/sbin/update-rc.d -f dnsmasq remove
systemctl disable lldpd
/usr/sbin/update-rc.d -f lldpd remove
+systemctl enable ssh-session-cleanup
diff --git a/data/live-build-config/includes.chroot/etc/systemd/system/sshd.service b/data/live-build-config/includes.chroot/etc/systemd/system/sshd.service
deleted file mode 100644
index e84142bb..00000000
--- a/data/live-build-config/includes.chroot/etc/systemd/system/sshd.service
+++ /dev/null
@@ -1,16 +0,0 @@
-[Unit]
-Description=OpenBSD Secure Shell server
-After=network.target auditd.service
-ConditionPathExists=!/etc/ssh/sshd_not_to_be_run
-
-[Service]
-EnvironmentFile=-/etc/default/ssh
-ExecStart=/usr/sbin/sshd -D $SSHD_OPTS
-ExecReload=/bin/kill -HUP $MAINPID
-ExecStop=/usr/bin/killall sshd
-KillMode=process
-Restart=on-failure
-
-[Install]
-WantedBy=multi-user.target
-Alias=sshd.service
diff --git a/data/live-build-config/includes.chroot/lib/systemd/system/ssh-session-cleanup.service b/data/live-build-config/includes.chroot/lib/systemd/system/ssh-session-cleanup.service
new file mode 100644
index 00000000..b8672722
--- /dev/null
+++ b/data/live-build-config/includes.chroot/lib/systemd/system/ssh-session-cleanup.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=OpenBSD Secure Shell session cleanup
+Wants=network.target
+After=network.target
+
+[Service]
+ExecStart=/bin/true
+ExecStop=/usr/lib/openssh/ssh-session-cleanup
+RemainAfterExit=yes
+Type=oneshot
+
+[Install]
+WantedBy=multi-user.target
diff --git a/data/live-build-config/includes.chroot/usr/lib/openssh/ssh-session-cleanup b/data/live-build-config/includes.chroot/usr/lib/openssh/ssh-session-cleanup
new file mode 100755
index 00000000..f283cc96
--- /dev/null
+++ b/data/live-build-config/includes.chroot/usr/lib/openssh/ssh-session-cleanup
@@ -0,0 +1,11 @@
+#! /bin/sh
+
+ssh_session_pattern='sshd: \S.*@pts/[0-9]+'
+
+IFS="$IFS@"
+pgrep -a -f "$ssh_session_pattern" | while read pid daemon user pty; do
+ echo "Found ${daemon%:} session $pid on $pty; sending SIGTERM"
+ kill "$pid" || true
+done
+
+exit 0
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
diff --git a/scripts/live-build-config b/scripts/live-build-config
index 6ac49bd7..cb9e84dc 100755
--- a/scripts/live-build-config
+++ b/scripts/live-build-config
@@ -36,7 +36,7 @@ lb config noauto \
--architectures {{architecture}} \
--bootappend-live "boot=live components hostname=vyos username=live nopersistence noautologin nonetworking union=overlay" \
--linux-flavours {{architecture}}-vyos \
- --linux-packages linux-image-4.4.5 \
+ --linux-packages linux-image-4.4.15 \
--bootloader syslinux \
--binary-images iso-hybrid \
--debian-installer false \
diff --git a/tools/armada-388-clearfog.dtb b/tools/armada-388-clearfog.dtb
index 71d28b83..cc25d96f 100755
--- a/tools/armada-388-clearfog.dtb
+++ b/tools/armada-388-clearfog.dtb
Binary files differ
diff --git a/tools/u-boot-spl.kwb b/tools/u-boot-spl.kwb
index b7dd4c8d..1ea4d759 100644
--- a/tools/u-boot-spl.kwb
+++ b/tools/u-boot-spl.kwb
Binary files differ