nrf54L15 problems with SDK v3.1.0 and v3.1.1

To generate build configuration and build the app, you first need to:
touch ncs/v3.1.x/bootloader/mcuboot/boot/zephyr/boards/nrf54l15dk_nrf54l15_cpuapp.conf

or copy it from v3.0.2.

Then, if I enable bluetooth:
CONFIG_BT=y

build fails with a bunch of same errors in SDK's nrfx_cracen.c (only from different functions):
ncs/v3.1.0/modules/hal/nordic/nrfx/drivers/src/nrfx_cracen.c:350:34: error: 'NRF_CRACENCORE' undeclared (first use in this function); did you mean 'NRF_CRACENCORE_S'?

What happened to nrf54L15 supported in these newer SDKs?

Any workarounds?

Thanks!

Parents
  • So, it turned out the first problem was related to a project sysbuild.cmake, while the other one was only experienced on a custom board.

    That was down to a change in zephyr/boards/nordic/nrf54l15dk/nrf54l15dk_nrf54l10_cpuapp_ns.dts:

    chosen {
    zephyr,code-partition = &slot0_ns_partition;
    zephyr,sram = &sram0_ns;
    zephyr,entropy = &psa_rng;
    };

    /delete-node/ rng;

    psa_rng: psa-rng {
    status = "okay";
    };

    I've been through migration guide, but did not find any mentions of requiring custom board DTS updates. I guess it would not make sense to create new custom boards from scratch each time a new SDK is used?

Reply
  • So, it turned out the first problem was related to a project sysbuild.cmake, while the other one was only experienced on a custom board.

    That was down to a change in zephyr/boards/nordic/nrf54l15dk/nrf54l15dk_nrf54l10_cpuapp_ns.dts:

    chosen {
    zephyr,code-partition = &slot0_ns_partition;
    zephyr,sram = &sram0_ns;
    zephyr,entropy = &psa_rng;
    };

    /delete-node/ rng;

    psa_rng: psa-rng {
    status = "okay";
    };

    I've been through migration guide, but did not find any mentions of requiring custom board DTS updates. I guess it would not make sense to create new custom boards from scratch each time a new SDK is used?

Children
Related