mirror of
https://git.code.sf.net/p/linux-ima/ima-evm-utils
synced 2025-04-28 14:43:37 +02:00

The "boot_aggregate.test" requires either a hardware or software TPM. Support using the swtpm, if packaged for the distro, in addition to tpm_server. Note: Some travis/<distro>.sh scripts are links to other scripts. Don't fail the build of the linked script if the swtpm package doesn't exist. Signed-off-by: Mimi Zohar <zohar@linux.ibm.com> Reviewed-by: Petr Vorel <pvorel@suse.cz> Acked-by: Bruno Meneguele <bmeneg@redhat.com>
45 lines
695 B
Bash
Executable File
45 lines
695 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (c) 2020 Petr Vorel <pvorel@suse.cz>
|
|
set -e
|
|
|
|
if [ -z "$CC" ]; then
|
|
echo "missing \$CC!" >&2
|
|
exit 1
|
|
fi
|
|
|
|
case "$TSS" in
|
|
ibmtss) TSS="tss2-devel";;
|
|
tpm2-tss) TSS="tpm2-tss-devel";;
|
|
'') echo "Missing TSS!" >&2; exit 1;;
|
|
*) echo "Unsupported TSS: '$TSS'!" >&2; exit 1;;
|
|
esac
|
|
|
|
# ibmswtpm2 requires gcc
|
|
[ "$CC" = "gcc" ] || CC="gcc $CC"
|
|
|
|
yum -y install \
|
|
$CC $TSS \
|
|
asciidoc \
|
|
attr \
|
|
autoconf \
|
|
automake \
|
|
diffutils \
|
|
docbook-xsl \
|
|
gzip \
|
|
keyutils-libs-devel \
|
|
libattr-devel \
|
|
libtool \
|
|
libxslt \
|
|
make \
|
|
openssl \
|
|
openssl-devel \
|
|
pkg-config \
|
|
procps \
|
|
sudo \
|
|
vim-common \
|
|
wget \
|
|
which
|
|
|
|
yum -y install docbook5-style-xsl || true
|
|
yum -y install swtpm || true
|