raspberrypi, zephyr-cp: use lib/certificates/roots-full.pem
This commit is contained in:
parent
03acfe8500
commit
3d980e83c2
2 changed files with 2 additions and 2 deletions
|
|
@ -655,7 +655,7 @@ CFLAGS += \
|
|||
-isystem $(TOP)/lib/mbedtls/include \
|
||||
-DMBEDTLS_CONFIG_FILE='"$(TOP)/lib/mbedtls_config/mbedtls_config.h"' \
|
||||
|
||||
$(BUILD)/x509_crt_bundle.S: $(TOP)/lib/certificates/data/roots.pem $(TOP)/tools/gen_crt_bundle.py
|
||||
$(BUILD)/x509_crt_bundle.S: $(TOP)/lib/certificates/data/roots-full.pem $(TOP)/tools/gen_crt_bundle.py
|
||||
$(Q)$(PYTHON) $(TOP)/tools/gen_crt_bundle.py -i $< -o $@ --asm
|
||||
OBJ_MBEDTLS := $(BUILD)/x509_crt_bundle.o
|
||||
$(patsubst %.c,$(BUILD)/%.o,$(SRC_MBEDTLS))): CFLAGS += -Wno-suggest-attribute=format
|
||||
|
|
|
|||
|
|
@ -530,7 +530,7 @@ async def build_circuitpython():
|
|||
|
||||
if "ssl" in enabled_modules:
|
||||
crt_bundle = builddir / "x509_crt_bundle.S"
|
||||
roots_pem = srcdir / "lib/certificates/data/roots.pem"
|
||||
roots_pem = srcdir / "lib/certificates/data/roots-full.pem"
|
||||
generator = srcdir / "tools/gen_crt_bundle.py"
|
||||
tg.create_task(
|
||||
cpbuild.run_command(
|
||||
|
|
|
|||
Loading…
Reference in a new issue