/scripts/ |
D | Makefile.modinst | 89 $(call cmd,install) 90 $(call cmd,strip) 91 $(call cmd,sign) 95 $(call cmd,install) 102 $(call cmd,sign) 117 $(call cmd,gzip) 120 $(call cmd,xz) 123 $(call cmd,zstd)
|
D | ver_linux | 61 function version(cmd, ver) { 62 cmd = cmd " 2>&1" 63 while (cmd | getline > 0) { 69 close(cmd)
|
D | Kbuild.include | 95 echo-cmd = $(if $($(quiet)cmd_$(1)),\ 125 cmd = @set -e; $(echo-cmd) $($(quiet)redirect) $(delete-on-interrupt) $(cmd_$(1)) 138 cmd-check = $(filter-out $(subst $(space),$(space_escape),$(strip $(cmd_$@))), \ 141 cmd-check = $(if $(strip $(cmd_$@)),,1) 144 # Replace >$< with >$$< to preserve $ when reloading the .cmd file 146 # Replace >#< with >$(pound)< to avoid starting a comment in the .cmd file 150 make-cmd = $(call escsq,$(subst $(pound),$$(pound),$(subst $$,$$$$,$(cmd_$(1))))) 163 if-changed-cond = $(newer-prereqs)$(cmd-check)$(check-FORCE) 169 $(cmd); \ 170 printf '%s\n' 'cmd_$@ := $(make-cmd)' > $(dot-target).cmd [all …]
|
D | get_maintainer.pl | 1545 my ($cmd) = @_; 1548 my $output = `$cmd`; 1556 my ($cmd) = @_; 1559 my $output = `$cmd`; 1585 my ($cmd, $file) = @_; 1592 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd); 1624 my ($cmd) = @_; 1627 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd); 1652 my ($cmd) = @_; 1656 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd); [all …]
|
D | Makefile.modfinal | 57 if_changed_except = $(if $(call newer_prereqs_except,$(2))$(cmd-check), \ 58 $(cmd); \ 59 printf '%s\n' 'cmd_$@ := $(make-cmd)' > $(dot-target).cmd, @:) 65 +$(if $(newer-prereqs),$(call cmd,btf_ko)) 83 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
|
D | Makefile.build | 138 $(call cmd,cc_symtypes_c) 178 >> $(dot-target).cmd; \ 224 $(CONFIG_SHELL) $(srctree)/scripts/gen_ksymdeps.sh $@ >> $(dot-target).cmd 231 $(call cmd,gen_ksymdeps) 232 $(call cmd,check_local_export) 233 $(call cmd,checksrc) 234 $(call cmd,checkdoc) 235 $(call cmd,gen_objtooldep) 236 $(call cmd,gen_symversions_c) 237 $(call cmd,record_mcount) [all …]
|
D | get_feat.pl | 44 my ($cmd, $arg) = @ARGV; 46 pod2usage(2) if ($cmd ne "current" && $cmd ne "rest" && $cmd ne "validate" 47 && $cmd ne "ls" && $cmd ne "list"); 514 if ($cmd eq "current") { 519 if ($cmd eq "ls" or $cmd eq "list") { 530 if ($cmd ne "validate") {
|
D | Makefile.dtbinst | 30 $(call cmd,dtb_install) 33 $(call cmd,dtb_install)
|
D | kernel-doc | 286 my $cmd = $1; 288 if ($cmd eq "man") { 292 } elsif ($cmd eq "rst") { 296 } elsif ($cmd eq "none") { 298 } elsif ($cmd eq "module") { # not needed for XML, inherits from calling document 300 } elsif ($cmd eq "function") { # to only output specific functions 304 } elsif ($cmd eq "nosymbol") { # Exclude specific symbols 307 } elsif ($cmd eq "export") { # only exported symbols 310 } elsif ($cmd eq "internal") { # only non-exported symbols 313 } elsif ($cmd eq "export-file") { [all …]
|
D | get_abi.pl | 57 my ($cmd, $arg) = @ARGV; 59 pod2usage(2) if ($cmd ne "search" && $cmd ne "rest" && $cmd ne "validate" && $cmd ne "undefined"); 60 pod2usage(2) if ($cmd eq "search" && !$arg); 947 if ($cmd eq "undefined" || $cmd eq "search") { 960 if ($cmd eq "undefined") { 962 } elsif ($cmd eq "search") { 965 if ($cmd eq "rest") {
|
D | Makefile.asm-generic | 46 $(if $(unwanted),$(call cmd,remove)) 50 $(call cmd,wrap)
|
D | Makefile.package | 61 $(call cmd,src_tar,$(KERNELPATH),kernel.spec) 78 $(call cmd,src_tar,$(KDEB_SOURCENAME)) 99 $(call cmd,src_tar,$(KERNELPATH)) 144 $(call cmd,perf_tar)
|
D | Makefile.vmlinux_o | 57 $(call cmd,gen_objtooldep) 102 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
|
D | Makefile.headersinst | 73 $(call cmd,remove) 79 -include $(foreach f,$(existing-headers),$(dir $(f)).$(notdir $(f)).cmd)
|
D | leaking_addresses.pl | 401 open my $cmd, '-|', 'dmesg'; 402 while (<$cmd>) { 407 close $cmd;
|
D | Makefile.vmlinux | 49 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
|
D | Makefile.clean | 48 $(call cmd,clean)
|
D | sphinx-pre-install | 263 my $cmd = shift; 266 open IN, "$cmd --version 2>&1 |";
|
D | checkkconfigsymbols.py | 226 def execute(cmd): argument 229 stdout = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=False)
|
D | Makefile.modpost | 195 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
|
D | bpf_doc.py | 408 cmd = ['git', 'log', '-1', '--pretty=format:%cs', '--no-patch', 411 date = subprocess.run(cmd, cwd=linuxRoot,
|
D | Makefile.lib | 277 …ep = $(if $(objtool-enabled), { echo ; echo '$@: $$(wildcard $(objtool))' ; } >> $(dot-target).cmd) 299 $(call cmd,copy)
|
/scripts/gdb/linux/ |
D | symbols.py | 31 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/ |
D | sumversion.c | 304 char *cmd, *file, *line, *dir, *pos; in parse_source_files() local 308 cmd = NOFAIL(malloc(strlen(objfile) + sizeof("..cmd"))); in parse_source_files() 314 sprintf(cmd, "%.*s.%s.cmd", dirlen, objfile, base); in parse_source_files() 317 sprintf(cmd, ".%s.cmd", objfile); in parse_source_files() 323 file = read_text_file(cmd); in parse_source_files() 386 free(cmd); in parse_source_files()
|
/scripts/kconfig/ |
D | preprocess.c | 145 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()
|