Message ID | 20200316160634.3386-10-philmd@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Support disabling TCG on ARM (part 2) | expand |
On 3/16/20 9:06 AM, Philippe Mathieu-Daudé wrote: > 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@redhat.com> > --- > hw/arm/Kconfig | 3 --- > target/Kconfig | 2 +- > target/arm/Kconfig | 2 ++ > 3 files changed, 3 insertions(+), 4 deletions(-) > create mode 100644 target/arm/Kconfig Acked-by: Richard Henderson <richard.henderson@linaro.org> r~
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
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@redhat.com> --- hw/arm/Kconfig | 3 --- target/Kconfig | 2 +- target/arm/Kconfig | 2 ++ 3 files changed, 3 insertions(+), 4 deletions(-) create mode 100644 target/arm/Kconfig