From 9235eb83608f8d91e1ded3e467918da0e459a397 Mon Sep 17 00:00:00 2001 From: Kai Vehmanen Date: Mon, 17 May 2021 16:56:19 +0300 Subject: [PATCH] kconfig: move BUILD_VM_ROM Kconfig.xtos-build The BUILD_VM_ROM option only affects SOF XTOS builds, so move the option to a separate file. Signed-off-by: Kai Vehmanen --- Kconfig | 6 ------ Kconfig.xtos-build | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Kconfig b/Kconfig index 5160d1c8c..9ebf8a613 100644 --- a/Kconfig +++ b/Kconfig @@ -157,12 +157,6 @@ config DEBUG_LOCKS_VERBOSE In addition to DEBUG_LOCKS it also adds spinlock traces every time the lock is acquired. -config BUILD_VM_ROM - bool "Build VM ROM" - default n - help - Select if you want to build VM ROM - config DEBUG_IPC_COUNTERS bool "IPC counters" depends on CAVS diff --git a/Kconfig.xtos-build b/Kconfig.xtos-build index 310154338..b2956a46b 100644 --- a/Kconfig.xtos-build +++ b/Kconfig.xtos-build @@ -35,3 +35,9 @@ config OPTIMIZE_FOR_NONE It means -O0 for GCC or equivalent for other compilers. endchoice + +config BUILD_VM_ROM + bool "Build VM ROM" + default n + help + Select if you want to build VM ROM