Home
last modified time | relevance | path

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

/linux-6.15/scripts/kconfig/
H A 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
H A Dconfdata.c419 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()
H A Dmerge_config.sh43 CONFIG_PREFIX=${CONFIG_-CONFIG_}
H A Dmconf.c396 "(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()
H A Dnconf.c708 "(with or without \"%s\")", CONFIG_); in search_conf()
729 if (strncasecmp(dialog_input_result, CONFIG_, strlen(CONFIG_)) == 0) in search_conf()
730 dialog_input += strlen(CONFIG_); in search_conf()
H A DMakefile39 unexport CONFIG_
H A Dmenu.c763 str_printf(help, "%s%s:\n\n", CONFIG_, sym->name); in menu_get_ext_help()
/linux-6.15/scripts/
H A Dconfig8 CONFIG_="${CONFIG_-CONFIG_}"
49 $myname uses 'CONFIG_' as the default symbol prefix. Set the environment
H A Dcheckpatch.pl76 my ${CONFIG_} = "CONFIG_";
145 ${CONFIG_})
332 'kconfig-prefix=s' => \${CONFIG_},
7276 if ($rawline =~ /\bIS_ENABLED\s*\(\s*(\w+)\s*\)/ && $1 !~ /^${CONFIG_}/) {
7278 "IS_ENABLED($1) is normally used as IS_ENABLED(${CONFIG_}$1)\n" . $herecurr);
7282 …if ($line =~ /^\+\s*#\s*if\s+defined(?:\s*\(?\s*|\s+)(${CONFIG_}[A-Z_]+)\s*\)?\s*\|\|\s*defined(?:…
7285 "Prefer IS_ENABLED(<FOO>) to ${CONFIG_}<FOO> || ${CONFIG_}<FOO>_MODULE\n" . $herecurr) &&
/linux-6.15/drivers/gpu/drm/ci/
H A Dbuild.sh93 ./scripts/config --enable CONFIG_$opt
96 ./scripts/config --disable CONFIG_$opt
/linux-6.15/arch/sh/tools/
H A Dmach-types2 # MACH_<xxx> CONFIG_<xxx>
/linux-6.15/tools/testing/shared/
H A Dshared.mk69 @if ! grep -qws CONFIG_$(LONG_BIT)BIT generated/bit-length.h; then \
/linux-6.15/Documentation/translations/zh_CN/kbuild/
H A Dkconfig.rst64 ``CONFIG_``
/linux-6.15/Documentation/kbuild/
H A Dkconfig.rst65 ``CONFIG_``
66 If you set ``CONFIG_`` in the environment, Kconfig will prefix all symbols
68 default, ``CONFIG_``.
H A Dmodules.rst503 Modules often need to check for certain `CONFIG_` options to
505 kbuild this is done by referencing the `CONFIG_` variable
H A Dmakefiles.rst170 you can use the value of a ``CONFIG_`` symbol to optionally include an
272 It is good practice to use a ``CONFIG_`` variable when assigning directory
274 corresponding ``CONFIG_`` option is neither "y" nor "m".
403 2) ``CONFIG_`` options used in all prerequisite files
/linux-6.15/Documentation/arch/powerpc/
H A Dbooting.rst102 to the Makefile under the condition of your ``CONFIG_``
/linux-6.15/Documentation/netlink/
H A Dgenetlink.yaml271 the operation, without the 'CONFIG_' prefix.
H A Dgenetlink-c.yaml319 the operation, without the 'CONFIG_' prefix.
H A Dgenetlink-legacy.yaml373 the operation, without the 'CONFIG_' prefix.
/linux-6.15/Documentation/dev-tools/kunit/
H A Dstyle.rst159 * be named ``CONFIG_<name>_KUNIT_TEST``: where <name> is the name of the test
/linux-6.15/Documentation/dev-tools/
H A Dcheckpatch.rst207 Use WORD as a prefix for Kconfig symbols (default is `CONFIG_`).
/linux-6.15/drivers/tty/serial/8250/
H A D8250_pci.c3967 (IS_ENABLED(CONFIG_##option) ? 0 : (kernel_ulong_t)&#option)
/linux-6.15/lib/
H A DKconfig.debug126 turned on by many CONFIG_*DEBUG* options.