Home
last modified time | relevance | path

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

/scripts/
Dver_linux64 function version(cmd, ver) {
65 cmd = cmd " 2>&1"
66 while (cmd | getline > 0) {
72 close(cmd)
Dget_maintainer.pl1544 my ($cmd) = @_;
1547 my $output = `$cmd`;
1555 my ($cmd) = @_;
1558 my $output = `$cmd`;
1584 my ($cmd, $file) = @_;
1591 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
1623 my ($cmd) = @_;
1626 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
1651 my ($cmd) = @_;
1655 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
[all …]
DKbuild.include174 echo-cmd = $(if $($(quiet)cmd_$(1)),\
204 cmd = @set -e; $(echo-cmd) $($(quiet)redirect) $(delete-on-interrupt) $(cmd_$(1))
217 cmd-check = $(filter-out $(subst $(space),$(space_escape),$(strip $(cmd_$@))), \
220 cmd-check = $(if $(strip $(cmd_$@)),,1)
223 # Replace >$< with >$$< to preserve $ when reloading the .cmd file
225 # Replace >#< with >$(pound)< to avoid starting a comment in the .cmd file
229 make-cmd = $(call escsq,$(subst $(pound),$$(pound),$(subst $$,$$$$,$(cmd_$(1)))))
239 if_changed = $(if $(newer-prereqs)$(cmd-check), \
240 $(cmd); \
241 printf '%s\n' 'cmd_$@ := $(make-cmd)' > $(dot-target).cmd, @:)
[all …]
DMakefile.build139 $(call cmd,cc_symtypes_c)
247 $(CONFIG_SHELL) $(srctree)/scripts/gen_ksymdeps.sh $@ >> $(dot-target).cmd
255 $(call cmd,gen_ksymdeps)
256 $(call cmd,checksrc)
257 $(call cmd,checkdoc)
258 $(call cmd,objtool)
259 $(call cmd,modversions_c)
260 $(call cmd,record_mcount)
265 $(call cmd,gen_ksymdeps)
266 $(call cmd,objtool)
[all …]
Dkernel-doc425 my $cmd = $1;
427 if ($cmd eq "man") {
431 } elsif ($cmd eq "rst") {
435 } elsif ($cmd eq "none") {
437 } elsif ($cmd eq "module") { # not needed for XML, inherits from calling document
439 } elsif ($cmd eq "function") { # to only output specific functions
443 } elsif ($cmd eq "nosymbol") { # Exclude specific symbols
446 } elsif ($cmd eq "export") { # only exported symbols
449 } elsif ($cmd eq "internal") { # only non-exported symbols
452 } elsif ($cmd eq "export-file") {
[all …]
Dget_abi.pl37 my ($cmd, $arg) = @ARGV;
39 pod2usage(2) if ($cmd ne "search" && $cmd ne "rest" && $cmd ne "validate");
40 pod2usage(2) if ($cmd eq "search" && !$arg);
507 if ($cmd eq "search") {
510 if ($cmd eq "rest") {
DMakefile.asm-generic46 $(if $(unwanted),$(call cmd,remove))
50 $(call cmd,wrap)
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.modsign27 $(call cmd,sign_ko,$(MODLIB)/$(modinst_dir))
DMakefile.dtbinst30 $(call cmd,dtb_install)
DMakefile.modinst33 $(call cmd,modules_install,$(MODLIB)/$(modinst_dir))
DMakefile.headersinst73 $(call cmd,remove)
79 -include $(foreach f,$(existing-headers),$(dir $(f)).$(notdir $(f)).cmd)
Dleaking_addresses.pl401 open my $cmd, '-|', 'dmesg';
402 while (<$cmd>) {
407 close $cmd;
DMakefile.modpost64 $(call cmd,modpost)
182 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
DMakefile.clean57 $(call cmd,clean)
DMakefile.modfinal96 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
Dsphinx-pre-install258 my $cmd = shift;
261 open IN, "$cmd --version 2>&1 |";
Dcheckkconfigsymbols.py224 def execute(cmd): argument
227 stdout = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=False)
DMakefile.lib270 $(call cmd,shipped)
380 $(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/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()
/scripts/mod/
Dsumversion.c306 char *cmd, *file, *line, *dir, *pos; in parse_source_files() local
310 cmd = NOFAIL(malloc(strlen(objfile) + sizeof("..cmd"))); in parse_source_files()
316 sprintf(cmd, "%.*s.%s.cmd", dirlen, objfile, base); in parse_source_files()
319 sprintf(cmd, ".%s.cmd", objfile); in parse_source_files()
325 file = read_text_file(cmd); in parse_source_files()
388 free(cmd); in parse_source_files()