# SPDX-License-Identifier: GPL-2.0 config [31mCONFIG_A[0m bool "A" default y config [31mCONFIG_A0[0m bool "A0" depends on [31mCONFIG_A[0m default y help This depends on [31mCONFIG_A[0m, so should be a submenu of [31mCONFIG_A[0m. config [31mCONFIG_A0_0[0m bool "A1_0" depends on [31mCONFIG_A0[0m help Submenus are created recursively. This should be a submenu of [31mCONFIG_A0[0m. config [31mCONFIG_A1[0m bool "A1" depends on [31mCONFIG_A[0m default y help This should line up with [31mCONFIG_A0[0m. choice prompt "choice" depends on [31mCONFIG_A1[0m help Choice should become a submenu as well. config [31mCONFIG_A1_0[0m bool "A1_0" config [31mCONFIG_A1_1[0m bool "A1_1" endchoice config [31mCONFIG_B[0m bool "B" help This is independent of [31mCONFIG_A[0m. config [31mCONFIG_C[0m bool "C" depends on [31mCONFIG_A[0m help This depends on [31mCONFIG_A[0m, but not a consecutive item, so can/should not be a submenu. |