soc/arm/designstart: Make XIP optional

Arm Cortex-M3 DesignStart FPGA-Xilinx edition doesn't have to use XIP.
Our board doesn't need it.  Make it optional by replacing "select" with
"imply".

Signed-off-by: Yasushi SHOJI <yashi@spacecubics.com>
This commit is contained in:
Yasushi SHOJI 2021-11-16 16:18:00 +09:00 committed by Anas Nashif
commit 611230f80e

View file

@ -8,13 +8,13 @@ choice
config SOC_ARM_DESIGNSTART_FPGA_CORTEX_M1
bool "ARM Cortex-M1 DesignStart FPGA"
select CPU_CORTEX_M1
select XIP
imply XIP
select HAS_SEGGER_RTT
config SOC_ARM_DESIGNSTART_FPGA_CORTEX_M3
bool "ARM Cortex-M3 DesignStart FPGA"
select CPU_CORTEX_M3
select XIP
imply XIP
select HAS_SEGGER_RTT
endchoice