From dc135dbec3d3ada5d7969c4c5d472daffba7bc7d Mon Sep 17 00:00:00 2001 From: Heesub Shin Date: Sat, 6 May 2017 18:02:34 +0900 Subject: [PATCH] arch: add missing arch-specific kconfig entries As a preparation step for supporting boardctl() feature, we need to add some kconfig entries for indicating whether or not the architecture can provide those capabilities. Change-Id: I65d603b166216e47a04323d36a0dca941fcbfae4 Signed-off-by: Heesub Shin --- os/arch/Kconfig | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/os/arch/Kconfig b/os/arch/Kconfig index d67670a..d355f5e 100644 --- a/os/arch/Kconfig +++ b/os/arch/Kconfig @@ -77,6 +77,14 @@ config ARCH_HAVE_EXTCLK bool default n +config ARCH_HAVE_POWEROFF + bool + default n + +config ARCH_HAVE_RESET + bool + default n + config ARCH_USE_MMU bool "Enable MMU" default n -- 2.7.4