commit | 55384bdfb76af1ae38c5049fd58d398280d8f77c | [log] [tgz] |
---|---|---|
author | Andrey Pronin <apronin@google.com> | Mon Aug 01 17:33:45 2022 -0700 |
committer | Chromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon Aug 08 04:36:02 2022 +0000 |
tree | 8d326e4cf8f50075810464f902d5a447d705719a | |
parent | 15e9ca7da0f2ff4b05271f348948398c2d7cbf6f [diff] |
pinweaver: specify path relative to APP_DIR for build.lib.c.mk This CL includes build.lib.c.mk based on the location of APP_DIR instead of relative to the current path. This allows building in standalone checkout. BUG=none TEST=make build Change-Id: Ic566a3ab19a72d765f5882c9b5c12916786ca4a9 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/pinweaver/+/3803782 Tested-by: Andrey Pronin <apronin@chromium.org> Reviewed-by: Andrey Pronin <apronin@chromium.org> Reviewed-by: Edward Hill <ecgh@chromium.org> Reviewed-by: Howard Yang <hcyang@google.com> Commit-Queue: Andrey Pronin <apronin@chromium.org>
This directory contains reference PinWeaver code that can be used across implementation platforms.
It consists of:
pinweaver.h
- PinWeaver embedded API definitionpinweaver.c
- implementationpinweaver_eal.h
- API for Environment Abstraction Layer (EAL) used by PinWeavereal/**/pinweaver_eal_types.h
pinweaver_types.h
- header that is shared by PinWeaver implementation and PinWeaver clients that call it through platform-specific interface.eal/
foldereal/cr50
- implementation for cr50pinweaver_eal_types.h
- cr50-specific EAL API typespinweaver_eal.c
- cr50 implementation of EALeal/tpm_storage
- implementation for platforms that use TPM as PinWeaver data storagepinweaver_eal_types.h
- TPM-storage-specific EAL API typespinweaver_eal_tpm.h
- additional EAL functions required by TPM storagepinweaver_eal_linux.c
- implementation of non-storage EAL methods for Linux casetpm_storage_stubs.c
- empty implementation of storage EAL methodstpm_storage.c
- implementation of storage EAL methods on top of TSSmini_trunks/
- mini-TSS (TPM client software stack) used by TPM storage implementationpinweaver_eal.h
+ pinweaver_eal_tpm.h
EAL methodstss.h
+ *authorization_delegate.h
A platform implementation that uses TPM storage EAL option needs to implement all EAL methods implemented in pinweaver_eal_linux.c
(or use it as-is, if Linux compatible).