]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
kconfig: gconf: fix single view to display dependent symbols correctly
authorMasahiro Yamada <masahiroy@kernel.org>
Wed, 16 Jul 2025 23:24:08 +0000 (08:24 +0900)
committerMasahiro Yamada <masahiroy@kernel.org>
Sat, 26 Jul 2025 10:55:37 +0000 (19:55 +0900)
commit6d4d44254e43157bb760aa16367a394c2ab299b8
tree6093b5ca50b80fa22a89bdcfa321d54b0f4e5fd3
parentb9f75396ec107628cc5f52fb6e055c1c9dc68401
kconfig: gconf: fix single view to display dependent symbols correctly

In the following example, the symbol C was never displayed in Single
view. Fix the recursion logic so that all symbols are shown.

  menu "menu"

  config A
          bool "A"

  config B
          bool "B"
          depends on A

  config C
          bool "C"
          depends on B

  endmenu

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
scripts/kconfig/gconf.c