├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── array_size.h ├── conf.c ├── confdata.c ├── expr.c ├── expr.h ├── gconf-cfg.sh ├── gconf.c ├── gconf.glade ├── hashtable.h ├── images.c ├── images.h ├── internal.h ├── lexer.l ├── list.h ├── list_types.h ├── lkc.h ├── lkc_proto.h ├── lxdialog ├── BIG.FAT.WARNING ├── checklist.c ├── dialog.h ├── inputbox.c ├── menubox.c ├── textbox.c ├── util.c └── yesno.c ├── mconf-cfg.sh ├── mconf.c ├── menu.c ├── merge_config.sh ├── mnconf-common.c ├── mnconf-common.h ├── nconf-cfg.sh ├── nconf.c ├── nconf.gui.c ├── nconf.h ├── parser.y ├── preprocess.c ├── preprocess.h ├── qconf-cfg.sh ├── qconf.cc ├── qconf.h ├── streamline_config.pl ├── symbol.c ├── tests ├── auto_submenu │ ├── Kconfig │ ├── __init__.py │ └── expected_stdout ├── choice │ ├── Kconfig │ ├── __init__.py │ ├── alldef_expected_config │ ├── allmod_expected_config │ ├── allno_expected_config │ ├── allyes_expected_config │ ├── oldask0_expected_stdout │ ├── oldask1_config │ └── oldask1_expected_stdout ├── choice_randomize │ ├── Kconfig │ ├── __init__.py │ ├── expected_config0 │ ├── expected_config1 │ └── expected_config2 ├── choice_randomize2 │ ├── Kconfig │ ├── __init__.py │ ├── expected_config0 │ ├── expected_config1 │ └── expected_config2 ├── choice_value_with_m_dep │ ├── Kconfig │ ├── __init__.py │ ├── config │ ├── expected_config │ └── expected_stdout ├── conftest.py ├── err_recursive_dep │ ├── Kconfig │ ├── __init__.py │ └── expected_stderr ├── err_recursive_inc │ ├── Kconfig │ ├── Kconfig.inc1 │ ├── Kconfig.inc2 │ ├── Kconfig.inc3 │ ├── __init__.py │ └── expected_stderr ├── inter_choice │ ├── Kconfig │ ├── __init__.py │ ├── defconfig │ └── expected_config ├── new_choice_with_dep │ ├── Kconfig │ ├── __init__.py │ ├── config │ └── expected_stdout ├── no_write_if_dep_unmet │ ├── Kconfig │ ├── __init__.py │ ├── config │ └── expected_config ├── preprocess │ ├── builtin_func │ │ ├── Kconfig │ │ ├── __init__.py │ │ ├── expected_stderr │ │ └── expected_stdout │ ├── circular_expansion │ │ ├── Kconfig │ │ ├── __init__.py │ │ └── expected_stderr │ ├── escape │ │ ├── Kconfig │ │ ├── __init__.py │ │ └── expected_stderr │ └── variable │ │ ├── Kconfig │ │ ├── __init__.py │ │ └── expected_stderr └── pytest.ini └── util.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/README.md -------------------------------------------------------------------------------- /array_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/array_size.h -------------------------------------------------------------------------------- /conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/conf.c -------------------------------------------------------------------------------- /confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/confdata.c -------------------------------------------------------------------------------- /expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/expr.c -------------------------------------------------------------------------------- /expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/expr.h -------------------------------------------------------------------------------- /gconf-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/gconf-cfg.sh -------------------------------------------------------------------------------- /gconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/gconf.c -------------------------------------------------------------------------------- /gconf.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/gconf.glade -------------------------------------------------------------------------------- /hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/hashtable.h -------------------------------------------------------------------------------- /images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/images.c -------------------------------------------------------------------------------- /images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/images.h -------------------------------------------------------------------------------- /internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/internal.h -------------------------------------------------------------------------------- /lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/lexer.l -------------------------------------------------------------------------------- /list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/list.h -------------------------------------------------------------------------------- /list_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/list_types.h -------------------------------------------------------------------------------- /lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/lkc.h -------------------------------------------------------------------------------- /lkc_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/lkc_proto.h -------------------------------------------------------------------------------- /lxdialog/BIG.FAT.WARNING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/lxdialog/BIG.FAT.WARNING -------------------------------------------------------------------------------- /lxdialog/checklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/lxdialog/checklist.c -------------------------------------------------------------------------------- /lxdialog/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/lxdialog/dialog.h -------------------------------------------------------------------------------- /lxdialog/inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/lxdialog/inputbox.c -------------------------------------------------------------------------------- /lxdialog/menubox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/lxdialog/menubox.c -------------------------------------------------------------------------------- /lxdialog/textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/lxdialog/textbox.c -------------------------------------------------------------------------------- /lxdialog/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/lxdialog/util.c -------------------------------------------------------------------------------- /lxdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/lxdialog/yesno.c -------------------------------------------------------------------------------- /mconf-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/mconf-cfg.sh -------------------------------------------------------------------------------- /mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/mconf.c -------------------------------------------------------------------------------- /menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/menu.c -------------------------------------------------------------------------------- /merge_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/merge_config.sh -------------------------------------------------------------------------------- /mnconf-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/mnconf-common.c -------------------------------------------------------------------------------- /mnconf-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/mnconf-common.h -------------------------------------------------------------------------------- /nconf-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/nconf-cfg.sh -------------------------------------------------------------------------------- /nconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/nconf.c -------------------------------------------------------------------------------- /nconf.gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/nconf.gui.c -------------------------------------------------------------------------------- /nconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/nconf.h -------------------------------------------------------------------------------- /parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/parser.y -------------------------------------------------------------------------------- /preprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/preprocess.c -------------------------------------------------------------------------------- /preprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/preprocess.h -------------------------------------------------------------------------------- /qconf-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/qconf-cfg.sh -------------------------------------------------------------------------------- /qconf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/qconf.cc -------------------------------------------------------------------------------- /qconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/qconf.h -------------------------------------------------------------------------------- /streamline_config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/streamline_config.pl -------------------------------------------------------------------------------- /symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/symbol.c -------------------------------------------------------------------------------- /tests/auto_submenu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/auto_submenu/Kconfig -------------------------------------------------------------------------------- /tests/auto_submenu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/auto_submenu/__init__.py -------------------------------------------------------------------------------- /tests/auto_submenu/expected_stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/auto_submenu/expected_stdout -------------------------------------------------------------------------------- /tests/choice/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice/Kconfig -------------------------------------------------------------------------------- /tests/choice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice/__init__.py -------------------------------------------------------------------------------- /tests/choice/alldef_expected_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice/alldef_expected_config -------------------------------------------------------------------------------- /tests/choice/allmod_expected_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice/allmod_expected_config -------------------------------------------------------------------------------- /tests/choice/allno_expected_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice/allno_expected_config -------------------------------------------------------------------------------- /tests/choice/allyes_expected_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice/allyes_expected_config -------------------------------------------------------------------------------- /tests/choice/oldask0_expected_stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice/oldask0_expected_stdout -------------------------------------------------------------------------------- /tests/choice/oldask1_config: -------------------------------------------------------------------------------- 1 | # CONFIG_MODULES is not set 2 | -------------------------------------------------------------------------------- /tests/choice/oldask1_expected_stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice/oldask1_expected_stdout -------------------------------------------------------------------------------- /tests/choice_randomize/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice_randomize/Kconfig -------------------------------------------------------------------------------- /tests/choice_randomize/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice_randomize/__init__.py -------------------------------------------------------------------------------- /tests/choice_randomize/expected_config0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice_randomize/expected_config0 -------------------------------------------------------------------------------- /tests/choice_randomize/expected_config1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice_randomize/expected_config1 -------------------------------------------------------------------------------- /tests/choice_randomize/expected_config2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice_randomize/expected_config2 -------------------------------------------------------------------------------- /tests/choice_randomize2/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice_randomize2/Kconfig -------------------------------------------------------------------------------- /tests/choice_randomize2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice_randomize2/__init__.py -------------------------------------------------------------------------------- /tests/choice_randomize2/expected_config0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice_randomize2/expected_config0 -------------------------------------------------------------------------------- /tests/choice_randomize2/expected_config1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice_randomize2/expected_config1 -------------------------------------------------------------------------------- /tests/choice_randomize2/expected_config2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice_randomize2/expected_config2 -------------------------------------------------------------------------------- /tests/choice_value_with_m_dep/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice_value_with_m_dep/Kconfig -------------------------------------------------------------------------------- /tests/choice_value_with_m_dep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice_value_with_m_dep/__init__.py -------------------------------------------------------------------------------- /tests/choice_value_with_m_dep/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice_value_with_m_dep/config -------------------------------------------------------------------------------- /tests/choice_value_with_m_dep/expected_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice_value_with_m_dep/expected_config -------------------------------------------------------------------------------- /tests/choice_value_with_m_dep/expected_stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/choice_value_with_m_dep/expected_stdout -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/err_recursive_dep/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/err_recursive_dep/Kconfig -------------------------------------------------------------------------------- /tests/err_recursive_dep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/err_recursive_dep/__init__.py -------------------------------------------------------------------------------- /tests/err_recursive_dep/expected_stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/err_recursive_dep/expected_stderr -------------------------------------------------------------------------------- /tests/err_recursive_inc/Kconfig: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | source "Kconfig.inc1" 3 | -------------------------------------------------------------------------------- /tests/err_recursive_inc/Kconfig.inc1: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | 3 | 4 | 5 | source "Kconfig.inc2" 6 | -------------------------------------------------------------------------------- /tests/err_recursive_inc/Kconfig.inc2: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | 3 | 4 | source "Kconfig.inc3" 5 | -------------------------------------------------------------------------------- /tests/err_recursive_inc/Kconfig.inc3: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | source "Kconfig.inc1" 3 | -------------------------------------------------------------------------------- /tests/err_recursive_inc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/err_recursive_inc/__init__.py -------------------------------------------------------------------------------- /tests/err_recursive_inc/expected_stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/err_recursive_inc/expected_stderr -------------------------------------------------------------------------------- /tests/inter_choice/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/inter_choice/Kconfig -------------------------------------------------------------------------------- /tests/inter_choice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/inter_choice/__init__.py -------------------------------------------------------------------------------- /tests/inter_choice/defconfig: -------------------------------------------------------------------------------- 1 | CONFIG_CHOICE_VAL0=y 2 | -------------------------------------------------------------------------------- /tests/inter_choice/expected_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/inter_choice/expected_config -------------------------------------------------------------------------------- /tests/new_choice_with_dep/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/new_choice_with_dep/Kconfig -------------------------------------------------------------------------------- /tests/new_choice_with_dep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/new_choice_with_dep/__init__.py -------------------------------------------------------------------------------- /tests/new_choice_with_dep/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/new_choice_with_dep/config -------------------------------------------------------------------------------- /tests/new_choice_with_dep/expected_stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/new_choice_with_dep/expected_stdout -------------------------------------------------------------------------------- /tests/no_write_if_dep_unmet/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/no_write_if_dep_unmet/Kconfig -------------------------------------------------------------------------------- /tests/no_write_if_dep_unmet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/no_write_if_dep_unmet/__init__.py -------------------------------------------------------------------------------- /tests/no_write_if_dep_unmet/config: -------------------------------------------------------------------------------- 1 | CONFIG_A=y 2 | -------------------------------------------------------------------------------- /tests/no_write_if_dep_unmet/expected_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/no_write_if_dep_unmet/expected_config -------------------------------------------------------------------------------- /tests/preprocess/builtin_func/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/preprocess/builtin_func/Kconfig -------------------------------------------------------------------------------- /tests/preprocess/builtin_func/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/preprocess/builtin_func/__init__.py -------------------------------------------------------------------------------- /tests/preprocess/builtin_func/expected_stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/preprocess/builtin_func/expected_stderr -------------------------------------------------------------------------------- /tests/preprocess/builtin_func/expected_stdout: -------------------------------------------------------------------------------- 1 | hello world 0 2 | -------------------------------------------------------------------------------- /tests/preprocess/circular_expansion/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/preprocess/circular_expansion/Kconfig -------------------------------------------------------------------------------- /tests/preprocess/circular_expansion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/preprocess/circular_expansion/__init__.py -------------------------------------------------------------------------------- /tests/preprocess/circular_expansion/expected_stderr: -------------------------------------------------------------------------------- 1 | Kconfig:5: Recursive variable 'X' references itself (eventually) 2 | -------------------------------------------------------------------------------- /tests/preprocess/escape/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/preprocess/escape/Kconfig -------------------------------------------------------------------------------- /tests/preprocess/escape/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/preprocess/escape/__init__.py -------------------------------------------------------------------------------- /tests/preprocess/escape/expected_stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/preprocess/escape/expected_stderr -------------------------------------------------------------------------------- /tests/preprocess/variable/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/preprocess/variable/Kconfig -------------------------------------------------------------------------------- /tests/preprocess/variable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/preprocess/variable/__init__.py -------------------------------------------------------------------------------- /tests/preprocess/variable/expected_stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/preprocess/variable/expected_stderr -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anatol/menuconfig/HEAD/util.c --------------------------------------------------------------------------------