1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
#!/bin/bash
#
# Copyright (C) 2017 - 2022, Stephan Mueller <smueller@chronox.de>
#
# License: see LICENSE file in root directory
#
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF
# WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
# OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
# USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH
# DAMAGE.
#
DIRNAME="$(dirname "$0")"
. "$DIRNAME/libtest.sh"
###################################################################
# Test configuration - may be changed
###################################################################
# The KERNEL_BASE points to the directory where the linux kernel sources
# are located. These kernel sources must be properly configured as
# documented in https://github.com/vincentbernat/eudyptula-boot
#
# If needed, the kernel is automatically compiled and installed
# for use by eudyptula-boot.
#
# Note, this must be an absolute path name
KERNEL_BASE=$1
if [ -z "$KERNEL_BASE" -a -h "./kernel-sources" ]
then
KERNEL_BASE="$(readlink ./kernel-sources)"
else
echo_deact "Linux kernel sources directory not found - skipping eudyptula-boot tests"
exit 0
fi
# TESTKERNELS specifies the kernel versions (i.e. Linux kernel
# source code directories) to be used and tested
TESTKERNELS="linux-5.12 linux-5.9 linux-5.8 linux-5.1 linux-4.20 linux-4.17 linux-4.13 linux-4.12 linux-4.10 linux-4.7 linux-4.5 linux-4.4.86 linux-4.3.6"
###################################################################
# General variables - do not change
###################################################################
# We need to provide an absolute path name
if [ x"${a:0:1}" = x"/" ]
then
SCRIPT="$DIRNAME/test-invocation.sh"
else
SCRIPT="$(pwd)/$DIRNAME/test-invocation.sh"
fi
EUDYPTULA="${EUDYPTULA:-"${HOME}/bin/eudyptula-boot"}"
###################################################################
# Code - do not change
###################################################################
execvirt()
{
local script=$1
local kernel_ver=$2
local depmod=0
local kernel_src="${KERNEL_BASE}/${kernel_ver}"
local kernel_build="${KERNEL_BASE}/build/${kernel_ver}"
local kernel_binary=""
local moddir=""
echo "Testing Linux kernel version $kernel_ver in directory $KERNEL_BASE"
if [ ! -d "$kernel_src" ]
then
echo "No kernel source directory found"
exit 1
fi
cd $kernel_src
if [ ! -f .config ]
then
echo "No configured kernel found in $(pwd)"
exit 1
fi
if ! grep -q "CONFIG_9P_FS=y" .config
then
echo "No virtme compliant kernel config found"
exit 1
fi
# Build and install fully configured kernel
if [ ! -d ${kernel_build} ]
then
make -j2
make modules_install install INSTALL_MOD_PATH=${kernel_build} INSTALL_PATH=${kernel_build}
depmod=1
fi
# get latest modules directory
moddir=${kernel_build}/lib/modules
local version=$(ls -t ${moddir} | head -n1)
moddir=${moddir}/$version
if [ ! -d "$moddir" ]
then
echo "No directory $moddir"
exit 1
fi
kernel_binary=${kernel_build}/vmlinuz-$version
if [ ! -f $kernel_binary ]
then
echo "Kernel binary $kernel_binary not found"
exit 1
fi
if [ $depmod -ne 0 ]
then
depmod -b ${kernel_build} $version
fi
$EUDYPTULA --kernel $kernel_binary $script
if [ $? -ne 0 ]
then
local ret=$?
echo_fail "Test for kernel version $kernel_ver failed"
exit $ret
fi
}
if [ ! -x $EUDYPTULA ]
then
echo_deact "$EUDYPTULA not found"
exit 0
fi
for i in ${TESTKERNELS}
do
execvirt $SCRIPT $i
done
|