ARM_V7M is a concept tied to the architecture. Move it to the target/arm/ directory to keep the hardware/architecture separation clearer. Signed-off-by: Philippe Mathieu-Daudé <philmd@xxxxxxxxxx> --- hw/arm/Kconfig | 3 --- target/Kconfig | 2 +- target/arm/Kconfig | 2 ++ 3 files changed, 3 insertions(+), 4 deletions(-) create mode 100644 target/arm/Kconfig diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig index e5a876c8d1..e3d7e7694a 100644 --- a/hw/arm/Kconfig +++ b/hw/arm/Kconfig @@ -285,9 +285,6 @@ config ZYNQ select XILINX_SPIPS select ZYNQ_DEVCFG -config ARM_V7M - bool - config ALLWINNER_A10 bool select AHCI diff --git a/target/Kconfig b/target/Kconfig index 8b13789179..130d0c7a85 100644 --- a/target/Kconfig +++ b/target/Kconfig @@ -1 +1 @@ - +source arm/Kconfig diff --git a/target/arm/Kconfig b/target/arm/Kconfig new file mode 100644 index 0000000000..e68c71a6ff --- /dev/null +++ b/target/arm/Kconfig @@ -0,0 +1,2 @@ +config ARM_V7M + bool -- 2.21.1