/linux/scripts/ |
H A D | config | 7 # If no prefix forced, use the default CONFIG_ 8 CONFIG_="${CONFIG_-CONFIG_}" 48 $myname uses 'CONFIG_' as the default symbol prefix. Set the environment 49 variable CONFIG_ to the prefix to use. Eg.: CONFIG_="FOO_" $myname ... 60 ${CONFIG_}*) 61 ARG="${ARG/${CONFIG_}/}" 166 set_var "${CONFIG_}$ARG" "${CONFIG_}$ARG=y" 170 set_var "${CONFIG_}$ARG" "# ${CONFIG_}$ARG is not set" 174 set_var "${CONFIG_}$ARG" "${CONFIG_}$ARG=m" 179 set_var "${CONFIG_}$ARG" "${CONFIG_}$ARG=\"${1//\"/\\\\\"}\"" [all …]
|
H A D | diffconfig | 44 if line[:7] == "CONFIG_": 57 print("# CONFIG_%s is not set" % config) 59 print("CONFIG_%s=%s" % (config, new_value))
|
H A D | headers_install.sh | 44 # Remove /* ... */ style comments, and find CONFIG_ references in code 59 s:^\(CONFIG_[[:alnum:]_]*\):\1\n:
|
H A D | generate_rust_target.rs | 161 /// The argument must be passed without the `CONFIG_` prefix. 165 let option = "CONFIG_".to_owned() + option; in has()
|
/linux/scripts/kconfig/ |
H A 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
|
H A D | merge_config.sh | 34 echo "Used prefix: '$CONFIG_PREFIX'. You can redefine it with \$CONFIG_ environment variable." 43 CONFIG_PREFIX=${CONFIG_-CONFIG_} 147 …if [ "$BUILTIN" = "true" ] && [ "${NEW_VAL#CONFIG_*=}" = "m" ] && [ "${PREV_VAL#CONFIG_*=}" = "y" … 198 # allnoconfig: Fills in any missing symbols with # CONFIG_* is not set
|
H A D | confdata.c | 413 if (memcmp(p, CONFIG_, strlen(CONFIG_))) in conf_read_simple() 415 sym_name = p + strlen(CONFIG_); in conf_read_simple() 425 if (memcmp(line, CONFIG_, strlen(CONFIG_))) { in conf_read_simple() 430 sym_name = line + strlen(CONFIG_); in conf_read_simple() 615 fprintf(fp, "# %s%s is not set\n", CONFIG_, sym->name); in __print_symbol() 624 fprintf(fp, "%s%s=%s\n", CONFIG_, sym->name, val); in __print_symbol() 680 fprintf(fp, "#define %s%s%s %s%s\n", CONFIG_, sym->name, sym_suffix, in print_symbol_for_c() 718 fprintf(fp, "--cfg=%s%s\n", CONFIG_, sym->name); in print_symbol_for_rustccfg() 739 fprintf(fp, "--cfg=%s%s=%s\n", CONFIG_, sym->name, val); in print_symbol_for_rustccfg()
|
H A D | streamline_config.pl | 205 $config2kfile{"CONFIG_$config"} = $kconfig; 320 if (/obj-\$[({](CONFIG_[^})]*)[)}]\s*[+:]?=\s*(.*)/) { 406 $c =~ s/^CONFIG_//; 429 if (/(CONFIG_[$valid]*)=(m|y)/) { 453 my $conf = "CONFIG_" . $1; 494 my $conf = "CONFIG_" . $1; 556 $config =~ s/^CONFIG_//; 576 $config =~ s/^CONFIG_//;
|
/linux/tools/testing/kunit/ |
H A D | kunit_config.py | 13 CONFIG_IS_NOT_SET_PATTERN = r'^# CONFIG_(\w+) is not set$' 14 CONFIG_PATTERN = r'^CONFIG_(\w+)=(\S+|".*")$' 23 return f'# CONFIG_{self.name} is not set' 24 return f'CONFIG_{self.name}={self.value}'
|
/linux/tools/testing/selftests/rcutorture/bin/ |
H A D | configcheck.sh | 41 grep '^CONFIG_.*=n$' $T/ConfigFragment | 44 grep -v '^CONFIG_.*=n$' $T/ConfigFragment | grep '^CONFIG_' |
|
/linux/scripts/dtc/ |
H A D | dt_to_config | 386 ($configs !~ /CONFIG_/) && 402 } elsif (($config_file) && ($configs =~ /CONFIG_/)) { 470 if ($configs !~ /CONFIG_/) { 495 if ($configs !~ /CONFIG_/) { 509 if ($configs !~ /CONFIG_/) { 592 …($null, $ifeq_config, $ifeq_config_val ) = $line =~ /^([ ]\s*|)ifeq\b.*\b(CONFIG_[A-Za-z0-9_]*)(… 593 …($null, $ifneq_config, $ifneq_config_val) = $line =~ /^([ ]\s*|)ifneq\b.*\b(CONFIG_[A-Za-z0-9_]*)… 594 …($null, $ifdef_config) = $line =~ /^([ ]\s*|)ifdef\b.*\b(CONFIG_[A-Za-z0-9_]*)… 595 …null, $ifndef_config) = $line =~ /^([ ]\s*|)ifndef\b.*\b(CONFIG_[A-Za-z0-9_]*)/; 602 # Order of tests is important. Prefer "CONFIG_*" regex match over [all …]
|
/linux/drivers/media/platform/mediatek/mdp3/ |
H A D | mtk-img-ipi.h | 124 #define _CFG_OFST(plat, cfg, ofst) ((void *)(&((cfg)->config_##plat) + (ofst))) 128 #define _CFG_ADDR(plat, cfg, mem) (&((cfg)->config_##plat.mem)) 132 #define _CFG_GET(plat, cfg, mem) ((cfg)->config_##plat.mem)
|
/linux/usr/include/ |
H A D | headers_check.pl | 20 # 3) Check for leaked CONFIG_ symbols 87 if ($line =~ m/[^a-zA-Z0-9_]+CONFIG_([a-zA-Z0-9_]+)[^a-zA-Z0-9_]/) { 88 printf STDERR "$filename:$lineno: leaks CONFIG_$1 to userspace where it is not valid\n";
|
/linux/arch/arm/tools/ |
H A D | gen-mach-types | 12 config[nr] = "CONFIG_"$2; 19 config[nr] = "CONFIG_"$2;
|
/linux/tools/testing/shared/ |
H A D | shared.mk | 69 @if ! grep -qws CONFIG_$(LONG_BIT)BIT generated/bit-length.h; then \ 71 echo "#define CONFIG_$(LONG_BIT)BIT 1" > $@; \
|
/linux/arch/microblaze/ |
H A D | Makefile | 15 # Use cpu-related CONFIG_ vars to set compile options. 22 # 3. All other FPGa/CPU ver combos, we can trust the CONFIG_ settings
|
/linux/Documentation/kbuild/ |
H A D | kconfig.rst | 65 ``CONFIG_`` 66 If you set ``CONFIG_`` in the environment, Kconfig will prefix all symbols 68 default, ``CONFIG_``.
|
/linux/scripts/kconfig/tests/no_write_if_dep_unmet/ |
H A D | __init__.py | 5 "# CONFIG_... is not set" should not be written into the .config file
|
/linux/arch/sh/tools/ |
H A D | mach-types | 2 # MACH_<xxx> CONFIG_<xxx>
|
H A D | gen-mach-types | 13 config[nr] = "CONFIG_"$2;
|
/linux/drivers/gpu/drm/ci/ |
H A D | build.sh | 92 ./scripts/config --enable CONFIG_$opt 95 ./scripts/config --disable CONFIG_$opt
|
/linux/tools/arch/mips/include/asm/ |
H A D | barrier.h | 9 * CONFIG_ needed for properly doing that.
|
/linux/scripts/basic/ |
H A D | fixdep.c | 85 * unrelated CONFIG_ options all over the place, it's not an 167 * Record the use of a CONFIG_* word. 194 while ((p = strstr(p, "CONFIG_"))) { in parse_config_file()
|
/linux/tools/include/tools/ |
H A D | config.h | 11 * Helper macros to use CONFIG_ options in C/CPP expressions. Note that
|
/linux/arch/mips/vdso/ |
H A D | elf.S | 27 * CONFIG_* because we need to match the particular ABI we are building the
|