patman: Convert camel case in command.py

Convert this file to snake case and update all files which use it.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2022-01-29 14:14:05 -07:00
parent c1aa66e75d
commit d98006997c
18 changed files with 70 additions and 70 deletions

View File

@@ -285,7 +285,7 @@ SECTIONS
cc, args = tools.get_target_compile_tool('cc')
args += ['-static', '-nostdlib', '-Wl,--build-id=none', '-m32', '-T',
lds_file, '-o', elf_fname, s_file]
stdout = command.Output(cc, *args)
stdout = command.output(cc, *args)
shutil.rmtree(outdir)
def DecodeElf(data, location):