Home
last modified time | relevance | path

Searched refs:cmd (Results 1 – 22 of 22) sorted by relevance

/scripts/
Dver_linux72 function version(cmd, ver) {
73 cmd = cmd " 2>&1"
74 while (cmd | getline > 0) {
80 close(cmd)
Dget_maintainer.pl1537 my ($cmd) = @_;
1540 my $output = `$cmd`;
1548 my ($cmd) = @_;
1551 my $output = `$cmd`;
1577 my ($cmd, $file) = @_;
1584 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
1616 my ($cmd) = @_;
1619 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
1644 my ($cmd) = @_;
1648 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
[all …]
DKbuild.include182 echo-cmd = $(if $($(quiet)cmd_$(1)),\
186 cmd = @set -e; $(echo-cmd) $(cmd_$(1))
199 cmd-check = $(filter-out $(subst $(space),$(space_escape),$(strip $(cmd_$@))), \
202 cmd-check = $(if $(strip $(cmd_$@)),,1)
205 # Replace >$< with >$$< to preserve $ when reloading the .cmd file
207 # Replace >#< with >$(pound)< to avoid starting a comment in the .cmd file
211 make-cmd = $(call escsq,$(subst $(pound),$$(pound),$(subst $$,$$$$,$(cmd_$(1)))))
218 if_changed = $(if $(any-prereq)$(cmd-check), \
219 $(cmd); \
220 printf '%s\n' 'cmd_$@ := $(make-cmd)' > $(dot-target).cmd, @:)
[all …]
DMakefile.build121 $(call cmd,cc_symtypes_c)
257 $(CONFIG_SHELL) $(srctree)/scripts/gen_ksymdeps.sh $@ >> $(dot-target).cmd
261 $(call cmd,checksrc)
263 $(call cmd,gen_ksymdeps)
264 $(call cmd,checkdoc)
265 $(call cmd,objtool)
266 $(call cmd,modversions_c)
267 $(call cmd,record_mcount)
272 $(call cmd,gen_ksymdeps)
273 $(call cmd,objtool)
[all …]
Dget_abi.pl27 my ($cmd, $arg) = @ARGV;
29 pod2usage(2) if ($cmd ne "search" && $cmd ne "rest" && $cmd ne "validate");
30 pod2usage(2) if ($cmd eq "search" && !$arg);
370 if ($cmd eq "rest") {
372 } elsif ($cmd eq "search") {
DMakefile.asm-generic46 $(if $(unwanted),$(call cmd,remove))
50 $(call cmd,wrap)
Dkernel-doc398 my $cmd = $1;
400 if ($cmd eq "man") {
404 } elsif ($cmd eq "rst") {
408 } elsif ($cmd eq "none") {
410 } elsif ($cmd eq "module") { # not needed for XML, inherits from calling document
412 } elsif ($cmd eq "function") { # to only output specific functions
416 } elsif ($cmd eq "nofunction") { # output all except specific functions
420 } elsif ($cmd eq "export") { # only exported symbols
423 } elsif ($cmd eq "internal") { # only non-exported symbols
426 } elsif ($cmd eq "export-file") {
[all …]
DMakefile.package58 $(call cmd,src_tar,$(KERNELPATH),kernel.spec)
75 $(call cmd,src_tar,$(KDEB_SOURCENAME))
96 $(call cmd,src_tar,$(KERNELPATH))
139 $(call cmd,perf_tar)
DMakefile.headersinst76 $(call cmd,remove)
82 -include $(foreach f,$(existing-headers),$(dir $(f)).$(notdir $(f)).cmd)
92 $(call cmd,check)
DMakefile.modpost66 $(call cmd,modpost)
114 $(call cmd,modpost)
DMakefile.modsign27 $(call cmd,sign_ko,$(MODLIB)/$(modinst_dir))
DMakefile.modinst33 $(call cmd,modules_install,$(MODLIB)/$(modinst_dir))
DMakefile.dtbinst32 $(call cmd,dtb_install,$(install-dir))
Dleaking_addresses.pl401 open my $cmd, '-|', 'dmesg';
402 while (<$cmd>) {
407 close $cmd;
DMakefile.clean53 $(call cmd,clean)
DMakefile.modfinal75 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
Dcheckkconfigsymbols.py224 def execute(cmd): argument
227 stdout = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=False)
DMakefile.lib212 $(call cmd,shipped)
310 $(call cmd,dtb_check)
/scripts/gdb/linux/
Dsymbols.py31 cmd = self.gdb_command
34 cmd.module_files_updated = False
43 if module_name in cmd.loaded_modules:
46 cmd.load_all_symbols()
48 cmd.load_module_symbols(module)
/scripts/mod/
Dsumversion.c307 char *cmd, *file, *line, *dir; in parse_source_files() local
312 cmd = NOFAIL(malloc(strlen(objfile) + sizeof("..cmd"))); in parse_source_files()
318 sprintf(cmd, "%.*s.%s.cmd", dirlen, objfile, base); in parse_source_files()
321 sprintf(cmd, ".%s.cmd", objfile); in parse_source_files()
327 file = grab_file(cmd, &flen); in parse_source_files()
329 warn("could not find %s for %s\n", cmd, objfile); in parse_source_files()
388 free(cmd); in parse_source_files()
/scripts/kconfig/
Dpreprocess.c145 char *cmd; in do_shell() local
149 cmd = argv[0]; in do_shell()
151 p = popen(cmd, "r"); in do_shell()
153 perror(cmd); in do_shell()
174 perror(cmd); in do_shell()
DMakefile193 $(call cmd,moc)