initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
From 7dc753ad27a8cd14c9b00be94ca89b847cf05ce9 Mon Sep 17 00:00:00 2001
|
||||
From: Carlos Santos <unixmania@gmail.com>
|
||||
Date: Mon, 23 Dec 2019 08:02:19 -0300
|
||||
Subject: [PATCH] Temporary fix for build without C++
|
||||
|
||||
C++ is required only for the fuzzing tests but AC_PROG_CXX is included
|
||||
by configure.ac even when fuzzing is not enabled (which we don't do on
|
||||
Buildroot).
|
||||
|
||||
The patch applied upstream had issues and was reverted[1]. Use a local
|
||||
patch to solve the problem temporaryly.
|
||||
|
||||
Fixes:
|
||||
http://autobuild.buildroot.net/results/13f5e37b47b255da4158bec34e5459136f7e60d4
|
||||
http://autobuild.buildroot.net/results/1c26db2509c79e00c0de1165945277eaa57b149f
|
||||
http://autobuild.buildroot.net/results/b7b6b7b7aca79e847b442cbd2305427d91fe5d70
|
||||
http://autobuild.buildroot.net/results/1cd5a82a0e799aa5027e2e2c03b246332cc3a15d
|
||||
http://autobuild.buildroot.net/results/d7ec878907f714377c83e9a496e97cbf9382d787
|
||||
http://autobuild.buildroot.net/results/1c7f0c1b3ce4871cd87bd6059b1f0a6dc4e74a9c
|
||||
http://autobuild.buildroot.net/results/196b81d580325607c8da90beeb79e1f6b8ab8b47
|
||||
http://autobuild.buildroot.net/results/f90f7b4ac710b56686635f8ae27059c11b963e47
|
||||
|
||||
1. https://github.com/tpm2-software/tpm2-tss/commit/60c26e4c4faba6ba12469485653e17092b510840
|
||||
|
||||
Signed-off-by: Carlos Santos <unixmania@gmail.com>
|
||||
---
|
||||
configure.ac | 1 -
|
||||
1 file changed, 1 deletion(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index ff59dd7c..3e4028fb 100755
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -26,7 +26,6 @@ AX_IS_RELEASE(dash-version)
|
||||
AX_CHECK_ENABLE_DEBUG([info])
|
||||
|
||||
AC_PROG_CC
|
||||
-AC_PROG_CXX
|
||||
AC_PROG_LN_S
|
||||
AC_USE_SYSTEM_EXTENSIONS
|
||||
LT_INIT()
|
||||
--
|
||||
2.26.2
|
||||
|
||||
@@ -0,0 +1,58 @@
|
||||
config BR2_PACKAGE_TPM2_TSS
|
||||
bool "tpm2-tss"
|
||||
depends on !BR2_STATIC_LIBS # dlfcn.h
|
||||
select BR2_PACKAGE_LIBURIPARSER
|
||||
select BR2_PACKAGE_OPENSSL
|
||||
select BR2_PACKAGE_OPENSSL_FORCE_LIBOPENSSL
|
||||
help
|
||||
OSS implementation of the Trusted Computing Group's (TCG) TPM2
|
||||
Software Stack (TSS). This stack consists of the following
|
||||
layers from top to bottom:
|
||||
|
||||
* System API (SAPI) as described in the system level API and
|
||||
TPM command transmission interface specification. This API
|
||||
is a 1-to-1 mapping of the TPM2 commands documented in Part
|
||||
3 of the TPM2 specification. Additionally there are
|
||||
asynchronous versions of each command. These asynchronous
|
||||
variants may be useful for integration into event-driven
|
||||
programming environments. Both the synchronous and
|
||||
asynchronous API are exposed through a single library:
|
||||
libtss2-sys.
|
||||
|
||||
* TPM Command Transmission Interface (TCTI) that is described
|
||||
in the same specification. This API provides a standard
|
||||
interface to transmit / receive TPM command / response
|
||||
buffers. It is expected that any number of libraries
|
||||
implementing the TCTI API will be implemented as a way to
|
||||
abstract various platform specific IPC mechanisms. Currently
|
||||
this repository provides two TCTI implementations:
|
||||
libtss2-tcti-device and libtss2-tcti-mssim. The prior should
|
||||
be used for direct access to the TPM through the Linux
|
||||
kernel driver. The later implements the protocol exposed by
|
||||
the Microsoft software TPM2 simulator.
|
||||
|
||||
https://github.com/tpm2-software/tpm2-tss
|
||||
|
||||
if BR2_PACKAGE_TPM2_TSS
|
||||
|
||||
config BR2_PACKAGE_TPM2_TSS_FAPI
|
||||
bool "fapi support"
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c
|
||||
select BR2_PACKAGE_JSON_C
|
||||
select BR2_PACKAGE_LIBCURL
|
||||
help
|
||||
This option allows to enable Feature API (FAPI). Feature
|
||||
API (FAPI) as described in the "TSS 2.0 Feature API
|
||||
Specification" along with "TSS 2.0 JSON Data Types and
|
||||
Policy Language Specification" This API is designed to be
|
||||
very high-level API, intended to make programming with the
|
||||
TPM as simple as possible. The API functions are exposed
|
||||
through a single library: libtss2-fapi.
|
||||
|
||||
https://trustedcomputinggroup.org/wp-content/uploads/TSS_FAPI_v0.94_r04_pubrev.pdf
|
||||
https://trustedcomputinggroup.org/wp-content/uploads/TSS_JSON_Policy_v0.7_r04_pubrev.pdf
|
||||
|
||||
endif
|
||||
|
||||
comment "tpm2-tss needs a toolchain w/ dynamic library"
|
||||
depends on BR2_STATIC_LIBS
|
||||
@@ -0,0 +1,3 @@
|
||||
# Locally computed:
|
||||
sha256 8900a6603f74310b749b65f23c3461cde6e2a23a5f61058b21004c25f9cf19e8 tpm2-tss-3.1.0.tar.gz
|
||||
sha256 18c1bf4b1ba1fb2c4ffa7398c234d83c0d55475298e470ae1e5e3a8a8bd2e448 LICENSE
|
||||
@@ -0,0 +1,44 @@
|
||||
################################################################################
|
||||
#
|
||||
# tpm2-tss
|
||||
#
|
||||
################################################################################
|
||||
|
||||
TPM2_TSS_VERSION = 3.1.0
|
||||
TPM2_TSS_SITE = https://github.com/tpm2-software/tpm2-tss/releases/download/$(TPM2_TSS_VERSION)
|
||||
TPM2_TSS_LICENSE = BSD-2-Clause
|
||||
TPM2_TSS_LICENSE_FILES = LICENSE
|
||||
TPM2_TSS_CPE_ID_VENDOR = tpm2_software_stack_project
|
||||
TPM2_TSS_CPE_ID_PRODUCT = tpm2_software_stack
|
||||
TPM2_TSS_INSTALL_STAGING = YES
|
||||
TPM2_TSS_DEPENDENCIES = liburiparser openssl host-pkgconf
|
||||
|
||||
# 0001-configure-Only-use-CXX-when-fuzzing.patch
|
||||
TPM2_TSS_AUTORECONF = YES
|
||||
|
||||
# systemd-sysusers and systemd-tmpfiles are only used at install time
|
||||
# to trigger the creation of users adn tmpfiles, which we do not care
|
||||
# about at build time. groupadd, useradd, and setfacl are used in the
|
||||
# fallback path when systemd-sysusers or systemd-tmpfiles are missing
|
||||
# and their failure is ignored anyway.
|
||||
TPM2_TSS_CONF_OPTS = \
|
||||
ac_cv_prog_result_groupadd=yes \
|
||||
ac_cv_prog_result_setfacl=yes \
|
||||
ac_cv_prog_systemd_sysusers=no \
|
||||
ac_cv_prog_systemd_tmpfiles=no \
|
||||
ac_cv_prog_result_useradd=yes \
|
||||
--with-crypto=ossl \
|
||||
--disable-doxygen-doc \
|
||||
--disable-defaultflags
|
||||
|
||||
# uses C99 code but forgets to pass -std=c99 when --disable-defaultflags is used
|
||||
TPM2_TSS_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -std=c99"
|
||||
|
||||
ifeq ($(BR2_PACKAGE_TPM2_TSS_FAPI),y)
|
||||
TPM2_TSS_DEPENDENCIES += json-c libcurl
|
||||
TPM2_TSS_CONF_OPTS += --enable-fapi
|
||||
else
|
||||
TPM2_TSS_CONF_OPTS += --disable-fapi
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user