# SPDX-License-Identifier: GPL-2.0 # depends on itself config [31mCONFIG_A[0m bool "A" depends on [31mCONFIG_A[0m # select itself config [31mCONFIG_B[0m bool select [31mCONFIG_B[0m # depends on each other config [31mCONFIG_C1[0m bool "C1" depends on [31mCONFIG_C2[0m config [31mCONFIG_C2[0m bool "C2" depends on [31mCONFIG_C1[0m # depends on and select config [31mCONFIG_D1[0m bool "D1" depends on [31mCONFIG_D2[0m select [31mCONFIG_D2[0m config [31mCONFIG_D2[0m bool # depends on and imply config [31mCONFIG_E1[0m bool "E1" depends on [31mCONFIG_E2[0m imply [31mCONFIG_E2[0m config [31mCONFIG_E2[0m bool "E2" # property config [31mCONFIG_F1[0m bool "F1" default [31mCONFIG_F2[0m config [31mCONFIG_F2[0m bool "F2" depends on [31mCONFIG_F1[0m # menu menu "menu depending on its content" depends on [31mCONFIG_G[0m config [31mCONFIG_G[0m bool "G" endmenu |