swupdate: explicitly enable SIGALG_RAWRSA when signed images are enabled

In previous versions of swupdate, only one SIGALG_* option could be chosen at
build-time, with SIGALG_RAWRSA being the default option. However, in 2025.12,
multiple SIGALG_* options can now be configured at build-time, allowing users
to choose the signature verification algorithm used at runtime via the
"digest-provider" parameter. We weren't explicitly setting any of these
algorithms in our defconfig, so the resulting builds didn't have any digest
providers, causing swupdate to fail early on when signed images are enabled.

To restore the behavior of previous swupdate versions, explicitly enable
SIGALG_RAWRSA when signed images are enabled. Since we only enable one digest
provider, it will be chosen automatically, without having to explicitly set the
"digest-provider" parameter at runtime.

Signed-off-by: Gabriel Valcazar <gabriel.valcazar@digi.com>
This commit is contained in:
Gabriel Valcazar 2026-01-19 15:08:17 +01:00
parent 8393625473
commit 291bddcf4c
1 changed files with 1 additions and 0 deletions

View File

@ -1,2 +1,3 @@
# Add SIGNED_IMAGES support
CONFIG_SIGNED_IMAGES=y
CONFIG_SIGALG_RAWRSA=y