raspberrypi, zephyr-cp: use lib/certificates/roots-full.pem

This commit is contained in:
Dan Halbert 2025-07-23 13:53:56 -04:00
parent 03acfe8500
commit 3d980e83c2
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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(