diff options
| author | Simon Glass <[email protected]> | 2023-01-07 14:57:20 -0700 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2023-01-18 11:49:13 -0700 |
| commit | 0c16fca927751fbb9be6f026ec8534d289156d3c (patch) | |
| tree | 555502c11f55ed85c2694860eb474d0bad55bfc8 /lib/Makefile | |
| parent | d81d17637a04746341fb6ae2e55597cd61a92c07 (diff) | |
tpm: Add a proper Kconfig option for crc8 in SPL
The current approach is a bit of a hack and only works for the tpm
subsystem. Add a Kconfig so that crc8 can be enabled in SPL for other
purposes.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'lib/Makefile')
| -rw-r--r-- | lib/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index d77b33e7f48..a282e40258c 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -57,12 +57,13 @@ endif obj-$(CONFIG_$(SPL_TPL_)TPM) += tpm-common.o ifeq ($(CONFIG_$(SPL_TPL_)TPM),y) -obj-y += crc8.o obj-$(CONFIG_TPM) += tpm_api.o obj-$(CONFIG_TPM_V1) += tpm-v1.o obj-$(CONFIG_TPM_V2) += tpm-v2.o endif +obj-$(CONFIG_$(SPL_TPL_)CRC8) += crc8.o + obj-y += crypto/ obj-$(CONFIG_$(SPL_TPL_)GENERATE_ACPI_TABLE) += acpi/ |
