initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
config BR2_PACKAGE_IMA_EVM_UTILS
|
||||
bool "ima-evm-utils"
|
||||
depends on BR2_USE_MMU # keyutils
|
||||
depends on !BR2_STATIC_LIBS # keyutils, tpm2-tss
|
||||
select BR2_PACKAGE_OPENSSL
|
||||
select BR2_PACKAGE_KEYUTILS
|
||||
select BR2_PACKAGE_TPM2_TSS
|
||||
help
|
||||
Linux Integrity Measurement Architecture (IMA)
|
||||
Extended Verification Module (EVM) tools.
|
||||
|
||||
https://sourceforge.net/p/linux-ima/wiki/Home/
|
||||
|
||||
comment "ima-evm-utils needs dynamic library support"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_STATIC_LIBS
|
||||
@@ -0,0 +1,4 @@
|
||||
# sha1 from sourceforge, sha256 locally computed
|
||||
sha1 034d163533ae5f9c06001b375ec7e5a1b09a3853 ima-evm-utils-1.3.2.tar.gz
|
||||
sha256 c2b206e7f9fbe62a938b7ae59e31906fefae4d5351fe01db739bd8346b75d4a7 ima-evm-utils-1.3.2.tar.gz
|
||||
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING
|
||||
@@ -0,0 +1,32 @@
|
||||
################################################################################
|
||||
#
|
||||
# ima-evm-utils
|
||||
#
|
||||
################################################################################
|
||||
|
||||
IMA_EVM_UTILS_VERSION = 1.3.2
|
||||
IMA_EVM_UTILS_SITE = http://downloads.sourceforge.net/project/linux-ima/ima-evm-utils
|
||||
IMA_EVM_UTILS_LICENSE = GPL-2.0
|
||||
IMA_EVM_UTILS_LICENSE_FILES = COPYING
|
||||
IMA_EVM_UTILS_DEPENDENCIES = host-pkgconf keyutils openssl tpm2-tss
|
||||
|
||||
# Tarball doesn't contain configure
|
||||
IMA_EVM_UTILS_AUTORECONF = YES
|
||||
|
||||
# Build and install in the src subdirectory. This avoids building the
|
||||
# documentation, which requires asciidoc and xsltproc. Note that configure still
|
||||
# needs to be run from the top dir, so _SUBDIR can't be used.
|
||||
|
||||
define IMA_EVM_UTILS_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/src all
|
||||
endef
|
||||
|
||||
define IMA_EVM_UTILS_INSTALL_STAGING_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) DESTDIR="$(STAGING_DIR)" -C $(@D)/src install
|
||||
endef
|
||||
|
||||
define IMA_EVM_UTILS_INSTALL_TARGET_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) DESTDIR="$(TARGET_DIR)" -C $(@D)/src install
|
||||
endef
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user