From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Thu, 5 Nov 2020 10:22:56 -0700 Subject: Please pull u-boot-dm Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Tom, The following changes since commit 35b7ca768f7d826b77d5d3d6ccd6b1b8ed21f186: arch: Move NEEDS_MANUAL_RELOC symbol to Kconfig (2020-11-04 10:13:44 -0500) are available in the Git repository at: git://git.denx.de/u-boot-dm.git tags/dm-pull5nov20 for you to fetch changes up to dc4b2a9770b5b932cd6d98c33ebff6dc46de6849: patman: Support listing comments from patchwork (2020-11-05 09:11:31 -0700) ---------------------------------------------------------------- patman status subcommand to collect tags from Patchwork patman showing email replies from Patchwork sandbox poweroff command minor fixes in binman, tests ---------------------------------------------------------------- Alper Nebi Yasak (1): cros_ec: Support keyboard scanning with EC_CMD_GET_NEXT_EVENT Heinrich Schuchardt (10): sandbox: eth-raw: do not close the console input sandbox: enable poweroff command test/py: test poweroff sandbox: use O_CLOEXEC in os_open() sandbox: implement reset test: adjust sysreset tests sandbox: update function descriptions in os.h doc: add sandbox API test: test/bloblist.c depends on asm/state.h test: linking test/compression.c fails Michal Simek (2): binman: Call helper function binman_set_rom_offset() to fill offset binman: Fix typo in kernel-doc format for binman_symname() Simon Glass (31): binman: Update intel_ifwi to store padded section binman: Correct calculation for image-pos patman: Correct operation of -n azure/gitLab/travis: Add pygit2 as a dependency for tests patman: Update how tests are run patman: Fix whitespace errors in func_test patman: Use capture_sys_output() consistently patman: Fix remaining pylint3 warnings in func_test patman: Allow linking a series with patchwork patman: Fix indenting in patchstream patman: Fix constant style in patchstream patman: Rename functions in patchstream patman: Rename variables in patchstream patman: Drop unused args in patchstream patman: Fix up argument/return docs in patchstream patman: Move warning collection to a function patman: Attach warnings to individual patches patman: Convert 'Series-xxx' tag errors into warnings patman: Drop unused signoff member patman: Add a test for PatchStream tags patman: Add some tests for warnings patman: Convert testBasic() to use an interator patman: Fix spelling of plural for warning patman: Don't ignore lines starting with hash patman: Allow showing a Commit as a string patman: Improve handling of files patman: Detect missing upstream in CountCommitsToBranch patman: Support checking for review tags in patchwork patman: Support updating a branch with review tags patman: Support parsing of review snippets patman: Support listing comments from patchwork .azure-pipelines.yml | 2 +- .gitlab-ci.yml | 2 +- .travis.yml | 1 + arch/Kconfig | 3 +- arch/sandbox/cpu/eth-raw-os.c | 8 +- arch/sandbox/cpu/os.c | 16 +- arch/sandbox/cpu/start.c | 26 ++ arch/sandbox/cpu/state.c | 1 + arch/sandbox/include/asm/u-boot-sandbox.h | 10 + doc/api/index.rst | 1 + doc/api/sandbox.rst | 9 + drivers/input/cros_ec_keyb.c | 32 +- drivers/misc/cros_ec.c | 15 + drivers/sysreset/sysreset_sandbox.c | 3 + include/binman_sym.h | 2 +- include/cros_ec.h | 11 + include/os.h | 236 ++++++----- lib/binman.c | 4 +- test/Kconfig | 9 + test/Makefile | 4 +- test/dm/sysreset.c | 11 +- test/py/tests/test_sandbox_exit.py | 8 +- tools/binman/entry.py | 18 +- tools/binman/etype/intel_ifwi.py | 2 +- tools/buildman/control.py | 6 +- tools/patman/README | 110 +++++- tools/patman/checkpatch.py | 18 +- tools/patman/commit.py | 5 + tools/patman/control.py | 71 +++- tools/patman/func_test.py | 983 ++++++++++++++++++++++++++++++++++++++++++---- tools/patman/gitutil.py | 10 +- tools/patman/main.py | 42 +- tools/patman/patchstream.py | 485 ++++++++++++++++------- tools/patman/series.py | 8 +- tools/patman/status.py | 482 +++++++++++++++++++++++ tools/patman/terminal.py | 21 +- tools/patman/test_checkpatch.py | 6 +- 37 files changed, 2293 insertions(+), 388 deletions(-) create mode 100644 doc/api/sandbox.rst create mode 100644 tools/patman/status.py Regards, Simon