mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-02 07:57:43 +00:00
package/ima-evm-utils: new package
Signed-off-by: Petr Vorel <petr.vorel@gmail.com> Tested-by: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
parent
591919bc2e
commit
8229196d41
@ -1892,6 +1892,7 @@ N: Petr Kulhavy <brain@jikos.cz>
|
|||||||
F: package/linuxptp/
|
F: package/linuxptp/
|
||||||
|
|
||||||
N: Petr Vorel <petr.vorel@gmail.com>
|
N: Petr Vorel <petr.vorel@gmail.com>
|
||||||
|
F: package/ima-evm-utils/
|
||||||
F: package/iproute2/
|
F: package/iproute2/
|
||||||
F: package/iputils/
|
F: package/iputils/
|
||||||
F: package/linux-backports/
|
F: package/linux-backports/
|
||||||
|
@ -2170,6 +2170,7 @@ endmenu
|
|||||||
|
|
||||||
menu "Security"
|
menu "Security"
|
||||||
source "package/checkpolicy/Config.in"
|
source "package/checkpolicy/Config.in"
|
||||||
|
source "package/ima-evm-utils/Config.in"
|
||||||
source "package/optee-benchmark/Config.in"
|
source "package/optee-benchmark/Config.in"
|
||||||
source "package/optee-client/Config.in"
|
source "package/optee-client/Config.in"
|
||||||
source "package/optee-examples/Config.in"
|
source "package/optee-examples/Config.in"
|
||||||
|
15
package/ima-evm-utils/Config.in
Normal file
15
package/ima-evm-utils/Config.in
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
config BR2_PACKAGE_IMA_EVM_UTILS
|
||||||
|
bool "ima-evm-utils"
|
||||||
|
depends on BR2_USE_MMU # keyutils
|
||||||
|
depends on !BR2_STATIC_LIBS # keyutils
|
||||||
|
select BR2_PACKAGE_OPENSSL
|
||||||
|
select BR2_PACKAGE_KEYUTILS
|
||||||
|
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
|
3
package/ima-evm-utils/ima-evm-utils.hash
Normal file
3
package/ima-evm-utils/ima-evm-utils.hash
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Locally computed
|
||||||
|
sha256 ad8471b58c4df29abd51c80d74b1501cfe3289b60d32d1b318618a8fd26c0c0a ima-evm-utils-1.2.1.tar.gz
|
||||||
|
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING
|
32
package/ima-evm-utils/ima-evm-utils.mk
Normal file
32
package/ima-evm-utils/ima-evm-utils.mk
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# ima-evm-utils
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
IMA_EVM_UTILS_VERSION = 1.2.1
|
||||||
|
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
|
||||||
|
|
||||||
|
# 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))
|
Loading…
x
Reference in New Issue
Block a user