From 18f823ebd10892d7a228eed5bd330161b7777f59 Mon Sep 17 00:00:00 2001 From: Gabriel Valcazar Date: Mon, 15 Dec 2025 18:09:27 +0100 Subject: [PATCH] cccs: don't change default client_cert_path for the ccimx6ul Commit 619ca8b2a8d6 changed the ccimx6ul's default endpoint URL and client cert path in order to prevent performance issues if the client cert is erased before registering the device. In reality, the client cert path doesn't really matter after this change since the remotemanager.digi.com endpoint won't make use of it, and we now ensure that /mnt/data is writable; so we might as well keep using that path. Signed-off-by: Gabriel Valcazar --- meta-digi-dey/recipes-digi/cccs/cccs_git.bb | 1 - 1 file changed, 1 deletion(-) diff --git a/meta-digi-dey/recipes-digi/cccs/cccs_git.bb b/meta-digi-dey/recipes-digi/cccs/cccs_git.bb index dc62ab2a0..965d9a899 100644 --- a/meta-digi-dey/recipes-digi/cccs/cccs_git.bb +++ b/meta-digi-dey/recipes-digi/cccs/cccs_git.bb @@ -90,7 +90,6 @@ do_install() { do_install:append:ccimx6ul() { if [ -z "${CCCS_CONF_PATH}" ]; then sed -i "/url = \"edp12.devicecloud.com\"/c\url = \"remotemanager.digi.com\"" ${D}${sysconfdir}/cccs.conf - sed -i "/client_cert_path = \"\/mnt\/data\/drm_cert.pem\"/c\client_cert_path = \"\/etc\/ssl\/certs\/drm_cert.pem\"" ${D}${sysconfdir}/cccs.conf fi }