Home
last modified time | relevance | path

Searched refs:config (Results 1 – 20 of 20) sorted by relevance

/scripts/
Ddiffconfig51 def print_config(op, config, value, new_value): argument
57 print "# CONFIG_%s is not set" % config
59 print "CONFIG_%s=%s" % (config, new_value)
62 print "-%s %s" % (config, value)
64 print "+%s %s" % (config, new_value)
66 print " %s %s -> %s" % (config, value, new_value)
102 for config in a:
103 if config not in b:
104 old.append(config)
106 for config in old:
[all …]
Dconfig6 Manipulate options in a .config file from the command line.
8 config options command ...
29 --file .config file to change (default .config)
31 config doesn't check the validity of the .config file. This is done at next
Dsetlocalversion70 if git config --get svn-remote.svn.url >/dev/null; then
145 if test -e include/config/auto.conf; then
146 . include/config/auto.conf
DMakefile.modbuiltin10 -include include/config/auto.conf
13 -include include/config/tristate.conf
DMakefile.fwinst13 -include $(objtree)/.config
DMakefile.modpost42 include include/config/auto.conf
Dtags.sh67 find ${tree}include $ignore -name config -prune -o -name "$1" -print;
DMakefile.build34 -include include/config/auto.conf
DKbuild.include195 # including used config symbols
Dcheckpatch.pl1712 $line =~ /.\s*config\s+/) {
1736 if ($f =~ /^\s*config\s/) {
/scripts/kconfig/
DMakefile5 PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config \
23 config: $(obj)/conf target
38 $(Q)perl $< --$@ $(srctree) $(Kconfig) > .tmp.config
39 $(Q)if [ -f .config ]; then \
40 cmp -s .tmp.config .config || \
41 (mv -f .config .config.old.1; \
42 mv -f .tmp.config .config; \
44 mv -f .config.old.1 .config.old) \
46 mv -f .tmp.config .config; \
49 $(Q)rm -f .tmp.config
[all …]
Dstreamline_config.pl48 my $config = ".config";
146 my $config;
187 $config = $2;
191 $depends{$config} .= " " . $ifdeps[$i];
193 $depends{$config} = $ifdeps[$i];
201 $depends{$config} = $1;
203 $depends{$config} .= " " . $1;
208 $selects{$1} .= " " . $config;
210 $selects{$1} = $config;
216 $prompts{$config} = 1;
[all …]
Dmerge_config.sh73 TMP_FILE=$(mktemp ./.tmp.config.XXXXXXXXXX)
103 cp $TMP_FILE .config
121 ACTUAL_VAL=$(grep -w -e "$CFG" .config)
D.gitignore4 config*
Dzconf.gperf22 config, T_CONFIG, TF_COMMAND keyword
Dqconf.cc1403 Q3PopupMenu* config = new Q3PopupMenu(this); in ConfigMainWindow() local
1404 menu->insertItem(_("&File"), config); in ConfigMainWindow()
1405 loadAction->addTo(config); in ConfigMainWindow()
1406 saveAction->addTo(config); in ConfigMainWindow()
1407 saveAsAction->addTo(config); in ConfigMainWindow()
1408 config->insertSeparator(); in ConfigMainWindow()
1409 quitAction->addTo(config); in ConfigMainWindow()
Dzconf.hash.c_shipped119 char kconf_id_strings_str46[sizeof("config")];
154 "config",
Dzconf.tab.c_shipped1676 …printd(DEBUG_PARSE, "%s:%d:config %s\n", zconf_curname(), zconf_lineno(), (yyvsp[(2) - (3)].string…
/scripts/selinux/
Dinstall_policy.sh35 if [ ! -f /etc/selinux/config ]; then
36 cat > /etc/selinux/config << EOF
41 TYPE=`cat /etc/selinux/config | grep "^SELINUXTYPE" | tail -1 | awk -F= '{ print $2 '}`
50 mv /etc/selinux/config /etc/selinux/config.mdpbak
51 grep -v "^SELINUXTYPE" /etc/selinux/config.mdpbak >> /etc/selinux/config
52 echo "SELINUXTYPE=dummy" >> /etc/selinux/config
/scripts/package/
Dbuilddeb44 debarch=mips$(grep -q CPU_LITTLE_ENDIAN=y .config && echo el) ;;
46 debarch=arm$(grep -q CONFIG_AEABI=y .config && echo el) ;;
109 cp .config "$tmpdir/usr/share/doc/$packagename/config"
114 cp .config "$tmpdir/boot/config-$version"
123 if grep -q '^CONFIG_MODULES=y' .config ; then