mirror of
https://xff.cz/git/u-boot/
synced 2025-09-26 21:11:18 +02:00
lib: do not build OID registry in SPL
The OID registry is only used by crypto functions that are not built in
SPL. So we should not build it in SPL.
Fixes: a9b45e6e83
("lib: add oid registry utility")
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
committed by
Tom Rini
parent
b21c08a12b
commit
4f4d526f59
@@ -120,6 +120,7 @@ obj-$(CONFIG_$(SPL_TPL_)STRTO) += strto.o
|
|||||||
else
|
else
|
||||||
# Main U-Boot always uses the full printf support
|
# Main U-Boot always uses the full printf support
|
||||||
obj-y += vsprintf.o strto.o
|
obj-y += vsprintf.o strto.o
|
||||||
|
obj-$(CONFIG_OID_REGISTRY) += oid_registry.o
|
||||||
endif
|
endif
|
||||||
|
|
||||||
obj-y += date.o
|
obj-y += date.o
|
||||||
@@ -128,8 +129,6 @@ obj-$(CONFIG_LIB_ELF) += elf.o
|
|||||||
#
|
#
|
||||||
# Build a fast OID lookup registry from include/linux/oid_registry.h
|
# Build a fast OID lookup registry from include/linux/oid_registry.h
|
||||||
#
|
#
|
||||||
obj-$(CONFIG_OID_REGISTRY) += oid_registry.o
|
|
||||||
|
|
||||||
$(obj)/oid_registry.o: $(obj)/oid_registry_data.c
|
$(obj)/oid_registry.o: $(obj)/oid_registry_data.c
|
||||||
|
|
||||||
$(obj)/oid_registry_data.c: $(srctree)/include/linux/oid_registry.h \
|
$(obj)/oid_registry_data.c: $(srctree)/include/linux/oid_registry.h \
|
||||||
|
Reference in New Issue
Block a user