Skip to content

Commit 3d980e8

Browse files
committed
raspberrypi, zephyr-cp: use lib/certificates/roots-full.pem
1 parent 03acfe8 commit 3d980e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ports/raspberrypi/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ CFLAGS += \
655655
-isystem $(TOP)/lib/mbedtls/include \
656656
-DMBEDTLS_CONFIG_FILE='"$(TOP)/lib/mbedtls_config/mbedtls_config.h"' \
657657

658-
$(BUILD)/x509_crt_bundle.S: $(TOP)/lib/certificates/data/roots.pem $(TOP)/tools/gen_crt_bundle.py
658+
$(BUILD)/x509_crt_bundle.S: $(TOP)/lib/certificates/data/roots-full.pem $(TOP)/tools/gen_crt_bundle.py
659659
$(Q)$(PYTHON) $(TOP)/tools/gen_crt_bundle.py -i $< -o $@ --asm
660660
OBJ_MBEDTLS := $(BUILD)/x509_crt_bundle.o
661661
$(patsubst %.c,$(BUILD)/%.o,$(SRC_MBEDTLS))): CFLAGS += -Wno-suggest-attribute=format

ports/zephyr-cp/cptools/build_circuitpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ async def build_circuitpython():
530530

531531
if "ssl" in enabled_modules:
532532
crt_bundle = builddir / "x509_crt_bundle.S"
533-
roots_pem = srcdir / "lib/certificates/data/roots.pem"
533+
roots_pem = srcdir / "lib/certificates/data/roots-full.pem"
534534
generator = srcdir / "tools/gen_crt_bundle.py"
535535
tg.create_task(
536536
cpbuild.run_command(

0 commit comments

Comments
 (0)