From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751301AbdLIQ2A (ORCPT ); Sat, 9 Dec 2017 11:28:00 -0500 Received: from mail-wm0-f67.google.com ([74.125.82.67]:42706 "EHLO mail-wm0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751014AbdLIQ14 (ORCPT ); Sat, 9 Dec 2017 11:27:56 -0500 X-Google-Smtp-Source: AGs4zMaQAaZIQ1zEnIW/MDbJZQbgz4bTQYurYgktG3oNLcJBniIn/0KZiBbzHtykTBF+83l1jhcc/g== From: Vincent Legoll To: Andrew Morton , Ingo Molnar , Byungchul Park , Peter Zijlstra , "Paul E. McKenney" , Josh Poimboeuf , Geert Uytterhoeven , Randy Dunlap , "Luis R. Rodriguez" , Nicholas Piggin , Thomas Gleixner , linux-kernel@vger.kernel.org Cc: Vincent Legoll Subject: [PATCH] make RUNTIME_TESTS a menuconfig to ease disabling it all Date: Sat, 9 Dec 2017 17:27:42 +0100 Message-Id: <20171209162742.7363-1-vincent.legoll@gmail.com> X-Mailer: git-send-email 2.14.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org No need to get into the submenu to disable all related config entries. This makes it easier to disable all RUNTIME_TESTS config options without entering the submenu. It will also enable one to see that en/dis-abled state from the outside menu. This is only intended to change menuconfig UI, not change the config dependencies. Signed-off-by: Vincent Legoll --- lib/Kconfig.debug | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 947d3e2ed5c2..9436714254b7 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -1660,7 +1660,10 @@ config DMA_API_DEBUG If unsure, say N. -menu "Runtime Testing" +menuconfig RUNTIME_TESTING_MENU + bool "Runtime Testing" + +if RUNTIME_TESTING_MENU config LKDTM tristate "Linux Kernel Dump Test Tool Module" @@ -1948,7 +1951,7 @@ config TEST_DEBUG_VIRTUAL If unsure, say N. -endmenu # runtime tests +endif # RUNTIME_TESTING_MENU config MEMTEST bool "Memtest" -- 2.14.1