Home
last modified time | relevance | path

Searched refs:command (Results 1 – 8 of 8) sorted by relevance

/scripts/
Dchecktransupdate.py44 command = f"git log --pretty=format:%H%n%aD%n%cD%n%n%B {commit} -1 -- {file_path}"
45 logging.debug(command)
46 pipe = os.popen(command)
74 command = f"git log --pretty=format:%H {commit1}...{commit2} -- {opath}"
75 logging.debug(command)
76 pipe = os.popen(command)
85 command = f"git log --pretty='format:%h (\"%s\")' -1 {commit}"
86 logging.debug(command)
87 pipe = os.popen(command)
DKconfig.include14 # $(if-success,<command>,<then>,<else>)
15 # Return <then> if <command> exits with 0, <else> otherwise.
18 # $(success,<command>)
19 # Return y if <command> exits with 0, n otherwise
22 # $(failure,<command>)
23 # Return n if <command> exits with 0, y otherwise
40 $(error-if,$(failure,command -v $(CC)),C compiler '$(CC)' not found)
41 $(error-if,$(failure,command -v $(LD)),linker '$(LD)' not found)
DKbuild.include23 # Otherwise, fall back to the 'test' shell command.
125 # If quiet is empty, print short log and whole command
156 # if_changed - execute command if any prerequisite is newer than
157 # target, or command line has changed
196 # Execute command if command has changed or prerequisite(s) are updated.
203 # Execute the command and also postprocess generated .d dependencies file.
223 # (4) - due to command line change
229 # (4) The command line stored in the file named dir/.target.cmd
230 # differed from actual command line. This happens when compiler
232 # (5) No dir/.target.cmd file (used to store command line)
[all …]
Dbpf_doc.py211 command = self.parse_element()
212 self.commands.append(command)
213 self.desc_syscalls.append(command.proto)
644 def print_one(self, command): argument
645 print('**%s**' % (command.proto))
646 self.print_elem(command)
Dsubarch.include2 # first, and if a usermode build is happening, the "ARCH=um" on the command
Dspelling.txt341 comand||command
349 commmand||command
/scripts/kconfig/tests/
Dconftest.py51 command = [CONF_PATH, mode, 'Kconfig']
69 ps = subprocess.Popen(command,
104 print("[command]\n{}\n".format(' '.join(command)))
/scripts/kconfig/tests/preprocess/builtin_func/
DKconfig17 # 'shell' executes a command, and returns its stdout.