u-boot.lists.denx.de archive mirror
 help / color / mirror / Atom feed
From: Simon Glass <sjg@chromium.org>
To: U-Boot Mailing List <u-boot@lists.denx.de>
Cc: Tom Rini <trini@konsulko.com>
Subject: Re: Please pull u-boot-dm/next
Date: Tue, 5 Jul 2022 03:59:10 -0600	[thread overview]
Message-ID: <CAPnjgZ1DzwMxFCc71McbBB8JeHKr7thWKrz+tOKVc1gLnBfC_g@mail.gmail.com> (raw)
In-Reply-To: <CAPnjgZ3e9EukBXR2GWBbg4QesMEAqLf-cE41uL30ez7Zm87ebg@mail.gmail.com>

Hi Tom,

On Tue, 28 Jun 2022 at 07:41, Simon Glass <sjg@chromium.org> wrote:
>
> Hi Tom,
>
> This is for the -next branch.
>
> https://source.denx.de/u-boot/custodians/u-boot-dm/-/commit/e87da5704ffa6fc782d93d137fa30a37a5df3566
>
>
> The following changes since commit ea82ed8c2eaee0a0f7dee31016aaee4ce88e9ea7:
>
>   Merge branch '2022-06-27-add-armv8-sha1-sha256-support' into next
> (2022-06-27 13:39:19 -0400)
>
> are available in the Git repository at:
>
>   git://git.denx.de/u-boot-dm.git tags/dm-pull-28jun22
>
> for you to fetch changes up to e87da5704ffa6fc782d93d137fa30a37a5df3566:
>
>   armv8: u-boot-spl.lds: mark __image_copy_start as symbol (2022-06-28
> 03:09:52 +0100)
>
> ----------------------------------------------------------------
> nman external-symbol improvements
> Driver model memory-usage reporting
> patman test-reporting improvements
> Add bloblist design goals
>
> ----------------------------------------------------------------
> Alper Nebi Yasak (12):
>       patman: test_util: Fix printing results for failed tests
>       patman: test_util: Handle nonexistent tests while loading tests
>       patman: test_util: Use unittest text runner to print test results
>       patman: test_util: Customize unittest test results for more info
>       patman: test_util: Print test stdout/stderr within test summaries
>       spl: binman: Fix use of undeclared u_boot_any symbols
>       spl: binman: Make TPL_BINMAN_SYMBOLS depend on TPL_FRAMEWORK
>       spl: binman: Declare extern symbols for VPL as well
>       spl: binman: Split binman symbols support from enabling binman
>       spl: binman: Add config options for binman symbols in VPL
>       spl: binman: Check at runtime if binman symbols were filled in
>       spl: binman: Disable u_boot_any symbols for i.MX8M boards
>
> Heinrich Schuchardt (6):
>       sandbox: add function os_printf()
>       sandbox: show error if the device-tree cannot be loaded
>       dm: fix formatting of uclass dump
>       sandbox: raise SANDBOX_RAM_SIZE_MB default to 256
>       test: fix some pylint errors in test_bind.py
>       sandbox: cast to pointer from integer of different size
>
> Peng Fan (1):
>       armv8: u-boot-spl.lds: mark __image_copy_start as symbol
>
> Sean Anderson (4):
>       sandbox: usb: Fix out-of-bounds read when fd=-1
>       dm: core: Provide fallbacks for ofnode_conf_read_...
>       dm: core: Use device_foreach_child where possible
>       patman: Fix defaults not propagating to subparsers
>
> Simon Glass (11):
>       bloblist: Describe the design goals
>       dtoc: Update fdt tests to use test_util
>       dm: core: Rename dm_dump_all()
>       dm: core: Sort dm subcommands
>       dm: core: Fix addresses in the dm static command
>       dm: core: Add documentation for the dm command
>       dm: core: Switch the testbus driver to use a new struct
>       dm: core: Support accessing core tags
>       dm: core: Add a way to collect memory usage
>       dm: core: Add a command to show driver model statistics
>       dm: spl: Allow SPL to show memory usage
>
>  arch/arm/cpu/armv8/u-boot-spl.lds           |   2 +-
>  arch/sandbox/Kconfig                        |   4 +-
>  arch/sandbox/cpu/cpu.c                      |   8 +-
>  arch/sandbox/cpu/os.c                       |  13 +
>  cmd/dm.c                                    |  72 ++--
>  common/spl/Kconfig                          |  23 +-
>  common/spl/Kconfig.tpl                      |  27 +-
>  common/spl/Kconfig.vpl                      |  25 ++
>  common/spl/spl.c                            |  25 +-
>  common/spl/spl_ram.c                        |   2 +-
>  doc/develop/bloblist.rst                    |   2 +
>  doc/usage/cmd/dm.rst                        | 487 ++++++++++++++++++++++++++++
>  doc/usage/index.rst                         |   1 +
>  drivers/core/Kconfig                        |  21 ++
>  drivers/core/device-remove.c                |   4 +-
>  drivers/core/device.c                       |  86 ++++-
>  drivers/core/devres.c                       |   2 +-
>  drivers/core/dump.c                         |  83 ++++-
>  drivers/core/root.c                         |  53 +++
>  drivers/core/tag.c                          |  29 ++
>  drivers/misc/qfw_sandbox.c                  |   2 +-
>  drivers/misc/test_drv.c                     |   6 +-
>  drivers/usb/emul/sandbox_flash.c            |   5 +-
>  include/binman_sym.h                        |  51 ++-
>  include/bloblist.h                          |  62 +++-
>  include/dm/device.h                         |  25 ++
>  include/dm/ofnode.h                         |  66 ++--
>  include/dm/root.h                           |  45 +++
>  include/dm/tag.h                            |  32 +-
>  include/dm/test.h                           |   7 +
>  include/dm/util.h                           |  11 +-
>  include/os.h                                |   7 +
>  include/spl.h                               |   2 +
>  test/dm/core.c                              |  91 ++++++
>  test/py/tests/test_bind.py                  | 345 ++++++++++----------
>  tools/binman/elf.py                         |  12 +-
>  tools/binman/elf_test.py                    |  12 +-
>  tools/binman/ftest.py                       |  33 +-
>  tools/binman/main.py                        |   8 +-
>  tools/binman/test/021_image_pad.dts         |   2 +-
>  tools/binman/test/024_sorted.dts            |   2 +-
>  tools/binman/test/028_pack_4gb_outside.dts  |   2 +-
>  tools/binman/test/029_x86_rom.dts           |   6 +-
>  tools/binman/test/053_symbols.dts           |   2 +-
>  tools/binman/test/149_symbols_tpl.dts       |   4 +-
>  tools/binman/test/155_symbols_tpl_x86.dts   |   4 +-
>  tools/binman/test/187_symbols_sub.dts       |   2 +-
>  tools/binman/test/Makefile                  |   2 +-
>  tools/binman/test/generated/autoconf.h      |   3 +
>  tools/binman/test/u_boot_binman_syms.c      |   6 +-
>  tools/binman/test/u_boot_binman_syms_size.c |   6 +-
>  tools/buildman/main.py                      |   8 +-
>  tools/concurrencytest/concurrencytest.py    |  83 ++++-
>  tools/dtoc/main.py                          |   9 +-
>  tools/dtoc/test_dtoc.py                     |   6 +-
>  tools/dtoc/test_fdt.py                      |  29 +-
>  tools/patman/main.py                        |   8 +-
>  tools/patman/settings.py                    |   7 +-
>  tools/patman/test_util.py                   | 150 ++++++---
>  59 files changed, 1723 insertions(+), 409 deletions(-)
>  create mode 100644 doc/usage/cmd/dm.rst
>  create mode 100644 tools/binman/test/generated/autoconf.h
>
> Regards,
> Simon

Just checking on this one?

Regards,
Simon

  reply	other threads:[~2022-07-05 10:00 UTC|newest]

Thread overview: 46+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-28 13:41 Please pull u-boot-dm/next Simon Glass
2022-07-05  9:59 ` Simon Glass [this message]
2022-07-08 21:52 ` Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2024-01-08  0:21 Simon Glass
2024-01-08 17:00 ` Tom Rini
2023-12-13 20:50 Simon Glass
2023-12-13 23:39 ` Tom Rini
2023-09-23 19:52 Simon Glass
2023-09-24 21:14 ` Tom Rini
2023-09-29  9:23   ` Manorit Chawdhry
2023-09-29 11:44     ` Tom Rini
2023-08-14 22:48 Simon Glass
2023-08-15 14:42 ` Tom Rini
2023-04-02 21:35 Simon Glass
2023-04-03 20:39 ` Tom Rini
2023-03-13  3:10 Simon Glass
2023-03-13 19:36 ` Tom Rini
2023-03-14 22:07   ` Simon Glass
2023-03-15 14:49     ` Tom Rini
2023-03-16 13:58       ` Simon Glass
2023-03-16 14:56         ` Tom Rini
2023-03-16 16:15           ` Tom Rini
2023-03-16 19:26 ` Tom Rini
2023-01-06  3:40 Simon Glass
2023-01-06 13:05 ` Tom Rini
2022-09-25 21:15 Simon Glass
2022-09-26  1:10 ` Tom Rini
2022-03-19  3:46 Simon Glass
2022-03-19 16:05 ` Tom Rini
2021-12-17 19:43 Simon Glass
2021-12-18  3:00 ` Tom Rini
2021-12-05 19:53 Simon Glass
2021-12-06  1:27 ` Tom Rini
2021-11-29  1:29 Simon Glass
2021-11-29 14:34 ` Tom Rini
2021-09-27 14:58 Simon Glass
2021-09-27 21:01 ` Tom Rini
2021-03-28 16:59 Simon Glass
2021-03-29 12:54 ` Tom Rini
2020-06-13  3:17 Simon Glass
2020-06-14 16:00 ` Tom Rini
2020-06-22 13:43   ` Bin Meng
2020-06-22 13:58     ` Tom Rini
2020-06-22 14:01       ` Bin Meng
2020-06-22 14:02         ` Tom Rini
2020-06-23  0:47           ` Bin Meng

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAPnjgZ1DzwMxFCc71McbBB8JeHKr7thWKrz+tOKVc1gLnBfC_g@mail.gmail.com \
    --to=sjg@chromium.org \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).