Skip to content

Commit 5b0d0d5

Browse files
authored
fix(firmware): restore omi/sysbuild/mcuboot.conf as regular file (#6350) (#6845)
Commit 32ccac5 intended to replace a symlink with a regular Kconfig file, but git saved the new content as the symlink's target string, producing a broken symlink. ls reports mode lrwxr-xr-x and the "target" is the 717-byte Kconfig body, so the path is unresolvable and the MCUboot build fails with 'undefined reference to __device_dts_ord_149'. Replace the broken symlink with a regular file holding the same content. The body is byte-identical to omi/firmware/bootloader/mcuboot/mcuboot.conf, so this matches what a correct symlink would have resolved to. Fixes #6350 Co-authored-by: Matt Van Horn <455140+mvanhorn@users.noreply.github.com>
1 parent 4b230d3 commit 5b0d0d5

1 file changed

File tree

omi/firmware/omi/sysbuild/mcuboot.conf

Lines changed: 0 additions & 27 deletions
This file was deleted.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Example of sample specific Kconfig changes when building sample with MCUboot
2+
# when using sysbuild.
3+
CONFIG_SPI_NOR=y
4+
CONFIG_MCUBOOT_LOG_LEVEL_WRN=y
5+
CONFIG_BOOT_UPGRADE_ONLY=y
6+
CONFIG_MCUBOOT_DOWNGRADE_PREVENTION=y
7+
CONFIG_NCS_SAMPLE_MCUMGR_BT_OTA_DFU=y
8+
9+
CONFIG_NORDIC_QSPI_NOR=n
10+
CONFIG_BOOT_MAX_IMG_SECTORS=256
11+
CONFIG_GPIO=y
12+
CONFIG_SPI=y
13+
CONFIG_FLASH=y
14+
CONFIG_FLASH_JESD216_API=y
15+
CONFIG_SPI_NOR_SFDP_DEVICETREE=y
16+
CONFIG_SPI_NOR_FLASH_LAYOUT_PAGE_SIZE=4096
17+
CONFIG_MULTITHREADING=y
18+
CONFIG_DISK_DRIVER_SDMMC=y
19+
CONFIG_DISK_ACCESS=y
20+
CONFIG_DISK_DRIVER_SDMMC=y
21+
22+
CONFIG_FLASH_LOG_LEVEL_DBG=n
23+
24+
CONFIG_NRF53_MULTI_IMAGE_UPDATE=y
25+
CONFIG_BOOT_UPGRADE_ONLY=y
26+
CONFIG_BOOT_MAX_IMG_SECTORS=256
27+
CONFIG_MCUBOOT_DOWNGRADE_PREVENTION=y

0 commit comments

Comments
 (0)