summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@gmail.com>2014-09-10 08:51:39 +0000
committerRichard Maw <richard.maw@gmail.com>2014-09-17 15:51:10 +0000
commit3703324d322e4ae8c2e061d524a37bb20e00f41b (patch)
tree0375c5f6046e36afd5296a0769498fb1a7bff500
parenta32de7934cce79dda2b8dc20be1c5ec94109869e (diff)
downloadmorph-3703324d322e4ae8c2e061d524a37bb20e00f41b.tar.gz
Remove cmdtest for builds producing a separate -kernel artifact
The notion of creating a separate kernel artifact comes from before we had deployments. It was so that we could boot a system in qemu without having to extract the kernel from the rootfs. Now we can do this by copying the kernel out at deployment time, so we don't really need to do this any more.
-rwxr-xr-xtests.as-root/rootfs-tarball-builds-rootfs-and-kernel.script50
1 files changed, 0 insertions, 50 deletions
diff --git a/tests.as-root/rootfs-tarball-builds-rootfs-and-kernel.script b/tests.as-root/rootfs-tarball-builds-rootfs-and-kernel.script
deleted file mode 100755
index ca1b1302..00000000
--- a/tests.as-root/rootfs-tarball-builds-rootfs-and-kernel.script
+++ /dev/null
@@ -1,50 +0,0 @@
-#!/bin/sh
-#
-# Copyright (C) 2011, 2012, 2013, 2014 Codethink Limited
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# 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, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-
-set -eu
-
-# Disable test on versions of Python before 2.7.
-. "$SRCDIR/scripts/python-check"
-
-cache="$DATADIR/cache/artifacts"
-
-arch=$("$SRCDIR/scripts/test-morph" print-architecture)
-
-cd "$DATADIR/kernel-repo"
-cat <<EOF >linux.morph
-name: linux
-kind: chunk
-install-commands:
- - mkdir -p "\$DESTDIR/boot"
- - touch "\$DESTDIR/boot/zImage"
-EOF
-git add linux.morph
-git commit --quiet -m 'Make the kernel create a dummy zImage'
-
-"$SRCDIR/scripts/test-morph" \
- build-morphology test:morphs master linux-system > /dev/null
-
-for suffix in kernel rootfs
-do
- if [ ! -e "$cache"/*system.linux-system-$suffix ]
- then
- echo "can't find $cache/*system.linux-system-$suffix" 1>&2
- find "$cache" 1>&2
- exit 1
- fi
-done