mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2025-12-10 07:44:53 +01:00
patman: Support the 'reverse' option for 'git log'
This option is currently not supported, but needs to be, for buildman to operate as expected. Reported-by: York Sun <yorksun@freescale.com> Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
7bee1c91a9
commit
042a732cf5
1 changed files with 2 additions and 0 deletions
|
|
@ -38,6 +38,8 @@ def LogCmd(commit_range, git_dir=None, oneline=False, reverse=False,
|
|||
cmd.append('--oneline')
|
||||
if use_no_decorate:
|
||||
cmd.append('--no-decorate')
|
||||
if reverse:
|
||||
cmd.append('--reverse')
|
||||
if count is not None:
|
||||
cmd.append('-n%d' % count)
|
||||
if commit_range:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue