
evmctl provides signing support for IMA/EVM. Functionality includes signing of file content (IMA), file metadata (EVM), importing public keys into kernel keyring. Signed-off-by: Dmitry Kasatkin <dmitry.kasatkin@intel.com>
17 lines
283 B
Bash
Executable File
17 lines
283 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
# new way
|
|
# strange, but need this for Makefile.am, because it has -I m4
|
|
test -d m4 || mkdir m4
|
|
autoreconf -f -i
|
|
|
|
# old way
|
|
#libtoolize --automake --copy --force
|
|
#aclocal
|
|
#autoconf --force
|
|
#autoheader --force
|
|
#automake --add-missing --copy --force-missing --gnu
|
|
|