I would like to modify the way the SPM is built, specifically by setting CONFIG_BOOT_BANNER=n but do not want to modify any files under the ncs directory. I tried the solution I found here: https://devzone.nordicsemi.com/f/nordic-q-a/56459/watchdog-with-bootloader-on-nrf9160 but the partition_manager script chokes with an error. This happens with the zephyr samples also. I'm using ncs release v1.2.0. You can reproduce it by:
add the following line to CMakeLists.txt:
set(spm_CONF_FILE ${CMAKE_CURRENT_SOURCE_DIR}/spm.conf)
create the spm.conf file with the following (or anything, really) line:
CONFIG_BOOT_BANNER=n
then try to build:
west build -b nrf9160_pca10090ns
If this is the wrong way to do this, can you suggest the right way?