Home
last modified time | relevance | path

Searched refs:CONFIG_ (Results 1 – 18 of 18) sorted by relevance

/Linux-v5.10/scripts/kconfig/
Dlkc.h23 #ifndef CONFIG_
24 #define CONFIG_ "CONFIG_" macro
28 return getenv( "CONFIG_" ) ?: CONFIG_; in CONFIG_prefix()
30 #undef CONFIG_
31 #define CONFIG_ CONFIG_prefix() macro
Dconfdata.c417 if (memcmp(line + 2, CONFIG_, strlen(CONFIG_))) in conf_read_simple()
419 p = strchr(line + 2 + strlen(CONFIG_), ' '); in conf_read_simple()
426 sym = sym_find(line + 2 + strlen(CONFIG_)); in conf_read_simple()
432 sym = sym_lookup(line + 2 + strlen(CONFIG_), 0); in conf_read_simple()
448 } else if (memcmp(line, CONFIG_, strlen(CONFIG_)) == 0) { in conf_read_simple()
449 p = strchr(line + strlen(CONFIG_), '='); in conf_read_simple()
460 sym = sym_find(line + strlen(CONFIG_)); in conf_read_simple()
469 conf_touch_dep(line + strlen(CONFIG_)); in conf_read_simple()
602 CONFIG_, sym->name); in kconfig_print_symbol()
610 fprintf(fp, "%s%s=%s\n", CONFIG_, sym->name, value); in kconfig_print_symbol()
[all …]
Dmerge_config.sh40 CONFIG_PREFIX=${CONFIG_-CONFIG_}
Dmconf.c404 "(with or without \"%s\")", CONFIG_); in search_conf()
424 if (strncasecmp(dialog_input_result, CONFIG_, strlen(CONFIG_)) == 0) in search_conf()
425 dialog_input += strlen(CONFIG_); in search_conf()
Dnconf.c702 "(with or without \"%s\")", CONFIG_); in search_conf()
723 if (strncasecmp(dialog_input_result, CONFIG_, strlen(CONFIG_)) == 0) in search_conf()
724 dialog_input += strlen(CONFIG_); in search_conf()
Dconf.c433 printf("%s%s=%s\n", CONFIG_, sym->name, str); in check_conf()
437 printf("%s%s=%s\n", CONFIG_, sym->name, str); in check_conf()
DMakefile20 unexport CONFIG_
Dmenu.c893 str_printf(help, "%s%s:\n\n", CONFIG_, sym->name); in menu_get_ext_help()
/Linux-v5.10/scripts/
Dconfig8 CONFIG_="${CONFIG_-CONFIG_}"
48 $myname uses 'CONFIG_' as the default symbol prefix. Set the environment
DKbuild.include304 ifneq ($$(CONFIG_$(1)),"")
305 …space_escape),\$$(space),$$(patsubst "%",%,$$(subst $$(space),$$(space_escape),$$(CONFIG_$(1)))))))
Dcheckpatch.pl70 my ${CONFIG_} = "CONFIG_";
134 ${CONFIG_})
243 'kconfig-prefix=s' => \${CONFIG_},
6623 if ($rawline =~ /\bIS_ENABLED\s*\(\s*(\w+)\s*\)/ && $1 !~ /^${CONFIG_}/) {
6625 "IS_ENABLED($1) is normally used as IS_ENABLED(${CONFIG_}$1)\n" . $herecurr);
6629 …if ($line =~ /^\+\s*#\s*if\s+defined(?:\s*\(?\s*|\s+)(${CONFIG_}[A-Z_]+)\s*\)?\s*\|\|\s*defined(?:…
6632 "Prefer IS_ENABLED(<FOO>) to ${CONFIG_}<FOO> || ${CONFIG_}<FOO>_MODULE\n" . $herecurr) &&
/Linux-v5.10/arch/sh/tools/
Dmach-types2 # MACH_<xxx> CONFIG_<xxx>
/Linux-v5.10/Documentation/kbuild/
Dkconfig.rst49 `CONFIG_`
51 If you set `CONFIG_` in the environment, Kconfig will prefix all symbols
53 `CONFIG_`.
Dmodules.rst546 Modules often need to check for certain `CONFIG_` options to
548 kbuild this is done by referencing the `CONFIG_` variable
558 specific `CONFIG_` settings directly in .config. This usage is
561 in-tree modules when testing for `CONFIG_` definitions.
Dmakefiles.rst227 you can use the value of a `CONFIG_` symbol to optionally include an
320 It is good practice to use a `CONFIG_` variable when assigning directory
322 corresponding `CONFIG_` option is neither 'y' nor 'm'.
419 2) `CONFIG_` options used in all prerequisite files
/Linux-v5.10/Documentation/powerpc/
Dbooting.rst102 to the Makefile under the condition of your ``CONFIG_``
/Linux-v5.10/Documentation/dev-tools/kunit/
Dstyle.rst162 * be named ``CONFIG_<name>_KUNIT_TEST``: where <name> is the name of the test
/Linux-v5.10/lib/
DKconfig.debug115 turned on by many CONFIG_*DEBUG* options.