| /scripts/kconfig/tests/choice/ |
| A D | __init__.py | 13 def test_oldask0(conf): argument 14 assert conf.oldaskconfig() == 0 18 def test_oldask1(conf): argument 23 def test_allyes(conf): argument 24 assert conf.allyesconfig() == 0 28 def test_allmod(conf): argument 29 assert conf.allmodconfig() == 0 33 def test_allno(conf): argument 34 assert conf.allnoconfig() == 0 38 def test_alldef(conf): argument [all …]
|
| /scripts/kconfig/ |
| A D | streamline_config.pl | 106 my $file = $conf->{"file"}; 111 `$conf->{"test"} $conf->{"file"} 2>/dev/null`; 115 my $exec = $conf->{"exec"}; 233 my $conf = $1; 401 foreach my $conf (@arr) { 405 my $c=$conf; 458 if (!defined($orig_configs{$conf}) || $orig_configs{$conf} eq "y") { 467 $configs{$conf} = 1; 505 if (defined($orig_configs{$conf}) && $orig_configs{$conf} ne "m") { 517 $next_config = $conf; [all …]
|
| A D | Makefile | 37 config: $(obj)/conf 74 $(simple-targets): $(obj)/conf 79 savedefconfig: $(obj)/conf 82 defconfig: $(obj)/conf 95 %_defconfig: $(obj)/conf 108 %.config: $(obj)/conf 127 testconfig: $(obj)/conf 163 conf-objs := conf.o zconf.tab.o 165 hostprogs-y := conf 225 $(obj)/.%conf-cfg: $(src)/%conf-cfg.sh FORCE [all …]
|
| A D | .gitignore | 9 conf
|
| A D | conf.c | 20 static void conf(struct menu *menu); 337 conf(child); in conf_choice() 344 static void conf(struct menu *menu) in conf() function 406 conf(child); in conf() 441 conf(rootEntry); in check_conf() 670 conf(&rootmenu); in main()
|
| A D | mconf.c | 283 static void conf(struct menu *menu, struct menu *active_menu); 452 conf(targets[i]->parent, targets[i]); in search_conf() 643 static void conf(struct menu *menu, struct menu *active_menu) in conf() function 691 conf(submenu, NULL); in conf() 697 conf(submenu, NULL); in conf() 740 conf(submenu, NULL); in conf() 1033 conf(&rootmenu, NULL); in main()
|
| A D | nconf.c | 279 static void conf(struct menu *menu); 1066 static void conf(struct menu *menu) in conf() function 1164 conf(submenu); in conf() 1174 conf(submenu); in conf() 1182 conf(submenu); in conf() 1542 conf(&rootmenu); in main()
|
| /scripts/kconfig/tests/rand_nested_choice/ |
| A D | __init__.py | 11 def test(conf): argument 13 assert conf.randconfig() == 0 14 assert (conf.config_contains('expected_stdout0') or 15 conf.config_contains('expected_stdout1') or 16 conf.config_contains('expected_stdout2'))
|
| /scripts/kconfig/tests/choice_value_with_m_dep/ |
| A D | __init__.py | 12 def test(conf): argument 13 assert conf.oldaskconfig('config', 'y') == 0 14 assert conf.config_contains('expected_config') 15 assert conf.stdout_contains('expected_stdout')
|
| /scripts/kconfig/tests/auto_submenu/ |
| A D | __init__.py | 10 def test(conf): argument 11 assert conf.oldaskconfig() == 0 12 assert conf.stdout_contains('expected_stdout')
|
| /scripts/kconfig/tests/inter_choice/ |
| A D | __init__.py | 12 def test(conf): argument 13 assert conf.defconfig('defconfig') == 0 14 assert conf.config_contains('expected_config')
|
| /scripts/kconfig/tests/new_choice_with_dep/ |
| A D | __init__.py | 12 def test(conf): argument 13 assert conf.oldconfig('config', 'y') == 0 14 assert conf.stdout_contains('expected_stdout')
|
| /scripts/kconfig/tests/no_write_if_dep_unmet/ |
| A D | __init__.py | 17 def test(conf): argument 18 assert conf.oldaskconfig('config', 'n') == 0 19 assert conf.config_matches('expected_config')
|
| /scripts/kconfig/tests/err_recursive_dep/ |
| A D | __init__.py | 8 def test(conf): argument 9 assert conf.oldaskconfig() == 1 10 assert conf.stderr_contains('expected_stderr')
|
| /scripts/kconfig/tests/err_recursive_inc/ |
| A D | __init__.py | 8 def test(conf): argument 9 assert conf.oldaskconfig() != 0 10 assert conf.stderr_contains('expected_stderr')
|
| /scripts/ |
| A D | Makefile.autoconf | 13 ifeq ($(shell grep -q '^CONFIG_SPL=y' include/config/auto.conf 2>/dev/null && echo y),y) 17 ifeq ($(shell grep -q '^CONFIG_TPL=y' include/config/auto.conf 2>/dev/null && echo y),y) 21 ifeq ($(shell grep -q '^CONFIG_VPL=y' include/config/auto.conf 2>/dev/null && echo y),y) 25 include include/config/auto.conf 48 -MQ include/config/auto.conf include/config.h > $@ || { \ 66 ! grep -q "$${line%=*}=" include/config/auto.conf; then \
|
| A D | setlocalversion | 193 if ! test -e include/config/auto.conf; then 199 config_localversion=$(sed -n 's/^CONFIG_LOCALVERSION=\(.*\)$/\1/p' include/config/auto.conf | tr -d… 202 if grep -q "^CONFIG_LOCALVERSION_AUTO=y$" include/config/auto.conf; then
|
| A D | coreboot.sed | 14 s/conf->/plat->/
|
| A D | get_maintainer.pl | 183 my $conf = which_conf(".get_maintainer.conf"); 184 if (-f $conf) { 186 open(my $conffile, '<', "$conf") 1480 my ($conf) = @_; 1483 if (-e "$path/$conf") { 1484 return "$path/$conf";
|
| A D | Makefile.build | 49 -include include/config/auto.conf
|
| A D | checkpatch.pl | 219 my $conf = which_conf($configuration_file); 220 if (-f $conf) { 222 open(my $conffile, '<', "$conf") 1475 my ($conf) = @_; 1478 if (-e "$path/$conf") { 1479 return "$path/$conf";
|
| A D | Makefile.xpl | 22 -include include/config/auto.conf
|
| /scripts/kconfig/tests/ |
| A D | conftest.py | 289 def conf(request): function
|