-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Closed
Labels
Description
Describe the bug
Hello,
I am trying to run west build -t guiconfig, make some changes, they are writen to zephyr/.config, but still not used by west build.
To Reproduce
west init test2
cd test2`
west update
cd zephyr
zephyr-env.cmd
west build -b nrf52810_pca10040 samples\bluetooth\peripheral
builds fine
west build -t guiconfig
select Boot options - MCUBoot support (BOOTLOADER_MCUBOOT)
save
settins are saved to build\zephyr\.config
west build -b nrf52810_pca10040 samples\bluetooth\peripheral
still no MCUBOOT support, same parition scheme
I have to manualy modify samples\bluetooth\peripheral\prj.conf and add
CONFIG_BOOTLOADER_MCUBOOT=y
then
west build -b nrf52810_pca10040 samples\bluetooth\peripheral starts to build with new flash partition schema (and doesn't finish linking, because for nrf52810 FW partition size if 54kB, but compiled binary takes 140kB - does anybody know how to make it smaller? to remove debug info or something? but this is for anothe thread may be)
Expected behavior
changes I make in GUI should be used while building
Impact
I have to search config defines and do the editing of prj.conf manuly
Environment (please complete the following information):
- OS: Windows 7 64bit
- Toolchain Zephyr, Arm toolchain 9-2019-q4
- Commit SHA or Version used: aae2c84