Searched refs:CONFIG_ (Results 1 – 9 of 9) sorted by relevance
| /scripts/kconfig/ |
| D | lkc.h | 23 #ifndef CONFIG_ 24 #define CONFIG_ "CONFIG_" macro 28 return getenv( "CONFIG_" ) ?: CONFIG_; in CONFIG_prefix() 30 #undef CONFIG_ 31 #define CONFIG_ CONFIG_prefix() macro
|
| D | confdata.c | 419 if (memcmp(p, CONFIG_, strlen(CONFIG_))) in conf_read_simple() 421 sym_name = p + strlen(CONFIG_); in conf_read_simple() 431 if (memcmp(line, CONFIG_, strlen(CONFIG_))) { in conf_read_simple() 436 sym_name = line + strlen(CONFIG_); in conf_read_simple() 624 fprintf(fp, "# %s%s is not set\n", CONFIG_, sym->name); in __print_symbol() 633 fprintf(fp, "%s%s=%s\n", CONFIG_, sym->name, val); in __print_symbol() 689 fprintf(fp, "#define %s%s%s %s%s\n", CONFIG_, sym->name, sym_suffix, in print_symbol_for_c() 727 fprintf(fp, "--cfg=%s%s\n", CONFIG_, sym->name); in print_symbol_for_rustccfg() 748 fprintf(fp, "--cfg=%s%s=%s\n", CONFIG_, sym->name, val); in print_symbol_for_rustccfg()
|
| D | merge_config.sh | 43 CONFIG_PREFIX=${CONFIG_-CONFIG_}
|
| D | mconf.c | 396 "(with or without \"%s\")", CONFIG_); in search_conf() 416 if (strncasecmp(dialog_input_result, CONFIG_, strlen(CONFIG_)) == 0) in search_conf() 417 dialog_input += strlen(CONFIG_); in search_conf()
|
| D | nconf.c | 710 "(with or without \"%s\")", CONFIG_); in search_conf() 731 if (strncasecmp(dialog_input_result, CONFIG_, strlen(CONFIG_)) == 0) in search_conf() 732 dialog_input += strlen(CONFIG_); in search_conf()
|
| D | Makefile | 39 unexport CONFIG_
|
| D | menu.c | 763 str_printf(help, "%s%s:\n\n", CONFIG_, sym->name); in menu_get_ext_help()
|
| /scripts/ |
| D | config | 8 CONFIG_="${CONFIG_-CONFIG_}" 49 $myname uses 'CONFIG_' as the default symbol prefix. Set the environment
|
| D | checkpatch.pl | 76 my ${CONFIG_} = "CONFIG_"; 144 ${CONFIG_}) 331 'kconfig-prefix=s' => \${CONFIG_}, 7297 if ($rawline =~ /\bIS_ENABLED\s*\(\s*(\w+)\s*\)/ && $1 !~ /^${CONFIG_}/) { 7299 "IS_ENABLED($1) is normally used as IS_ENABLED(${CONFIG_}$1)\n" . $herecurr); 7303 …if ($line =~ /^\+\s*#\s*if\s+defined(?:\s*\(?\s*|\s+)(${CONFIG_}[A-Z_]+)\s*\)?\s*\|\|\s*defined(?:… 7306 "Prefer IS_ENABLED(<FOO>) to ${CONFIG_}<FOO> || ${CONFIG_}<FOO>_MODULE\n" . $herecurr) &&
|