U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/14] testb: Various tweaks and fixes for Labgrid
@ 2024-06-23 20:30 Simon Glass
  2024-06-23 20:30 ` [PATCH 01/14] trace: Update test to tolerate different trace-cmd version Simon Glass
                   ` (15 more replies)
  0 siblings, 16 replies; 36+ messages in thread
From: Simon Glass @ 2024-06-23 20:30 UTC (permalink / raw)
  To: U-Boot Mailing List
  Cc: Tom Rini, Simon Glass, Alexander Gendin, Allen Martin,
	Andre Przywara, Bin Meng, Caleb Connolly, Dan Carpenter,
	Francis Laniel, Heinrich Schuchardt, Ilias Apalodimas,
	Jaehoon Chung, Jagan Teki, Jerome Brunet, Marcel Ziswiler,
	Marek Vasut, Marek Vasut, Michal Simek, Michal Suchánek,
	Neil Armstrong, Nishanth Menon, Pavel Herrmann, Peter Robinson,
	Samuel Holland, Sughosh Ganu, Svyatoslav Ryhel, Trevor Woerner,
	u-boot-amlogic

This series includes a number of mostly unrelated changes which are in
service of running U-Boot on a lab using Labgrid.

Changes in v2:
- Add new patch to update u-boot.cfg with CFG_... options

Simon Glass (14):
  trace: Update test to tolerate different trace-cmd version
  dm: core: Enhance comments on bind_drivers_pass()
  initcall: Correct use of relocation offset
  am33xx: Provide a function to set up the debug UART
  sunxi: Mark scp as optional
  google: Disable TPMv2 on most Chromebooks
  meson: Correct driver declaration for meson_axg_gpio
  test: Make bootstd init run only on sandbox
  log: Allow tests to pass with CONFIG_LOGF_FUNC_PAD set
  test: dm: Show failing driver name
  test: Decode exceptions only with sandbox
  test: Check help output
  Update u-boot.cfg to include CFG also
  smbios: Correct error handling when writing tables

 arch/arm/dts/sunxi-u-boot.dtsi                |  1 +
 arch/arm/mach-omap2/am33xx/board.c            | 18 +++++++++++++++---
 configs/chromebook_link64_defconfig           |  1 +
 configs/chromebook_link_defconfig             |  1 +
 configs/chromebook_samus_defconfig            |  1 +
 configs/chromebook_samus_tpl_defconfig        |  1 +
 configs/nyan-big_defconfig                    |  4 +---
 configs/snow_defconfig                        |  1 +
 drivers/core/lists.c                          | 16 ++++++++++++++++
 drivers/pinctrl/meson/pinctrl-meson-axg-pmx.c |  2 +-
 drivers/pinctrl/meson/pinctrl-meson-axg.c     |  4 ++--
 drivers/pinctrl/meson/pinctrl-meson-axg.h     |  2 +-
 drivers/pinctrl/meson/pinctrl-meson-g12a.c    |  4 ++--
 lib/initcall.c                                |  6 ++++--
 lib/smbios.c                                  | 10 ++++++++--
 scripts/Makefile.autoconf                     |  2 +-
 test/py/tests/test_dm.py                      |  5 ++++-
 test/py/tests/test_help.py                    |  6 +++++-
 test/py/tests/test_log.py                     | 11 +++++++----
 test/py/tests/test_trace.py                   |  6 +++---
 test/py/tests/test_ut.py                      |  1 +
 test/py/u_boot_console_sandbox.py             |  2 +-
 test/py/u_boot_spawn.py                       | 10 ++++++----
 23 files changed, 84 insertions(+), 31 deletions(-)

-- 
2.34.1


^ permalink raw reply	[flat|nested] 36+ messages in thread

end of thread, other threads:[~2024-09-25 12:50 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-23 20:30 [PATCH 00/14] testb: Various tweaks and fixes for Labgrid Simon Glass
2024-06-23 20:30 ` [PATCH 01/14] trace: Update test to tolerate different trace-cmd version Simon Glass
2024-06-23 20:30 ` [PATCH 02/14] dm: core: Enhance comments on bind_drivers_pass() Simon Glass
2024-06-23 20:30 ` [PATCH 03/14] initcall: Correct use of relocation offset Simon Glass
2024-06-23 20:30 ` [PATCH 04/14] am33xx: Provide a function to set up the debug UART Simon Glass
2024-06-23 20:30 ` [PATCH 05/14] sunxi: Mark scp as optional Simon Glass
2024-06-24  9:36   ` Andre Przywara
2024-06-24 15:50   ` Dragan Simic
2024-06-23 20:30 ` [PATCH 06/14] google: Disable TPMv2 on most Chromebooks Simon Glass
2024-06-23 20:30 ` [PATCH 07/14] meson: Correct driver declaration for meson_axg_gpio Simon Glass
2024-06-23 20:30 ` [PATCH 08/14] test: Make bootstd init run only on sandbox Simon Glass
2024-06-23 20:30 ` [PATCH 09/14] log: Allow tests to pass with CONFIG_LOGF_FUNC_PAD set Simon Glass
2024-06-23 20:30 ` [PATCH 10/14] test: dm: Show failing driver name Simon Glass
2024-06-23 20:30 ` [PATCH 11/14] test: Decode exceptions only with sandbox Simon Glass
2024-06-23 20:30 ` [PATCH 12/14] test: Check help output Simon Glass
2024-06-23 20:30 ` [PATCH 13/14] Update u-boot.cfg to include CFG also Simon Glass
2024-06-24 18:29   ` Tom Rini
2024-06-25 12:38     ` Simon Glass
2024-06-25 14:14       ` Tom Rini
2024-06-26  8:00         ` Simon Glass
2024-06-26 14:07           ` Tom Rini
2024-06-27  8:37             ` Simon Glass
2024-06-27 14:42               ` Tom Rini
2024-06-28  7:33                 ` Simon Glass
2024-07-28 19:36                   ` Simon Glass
2024-07-29 18:17                     ` Tom Rini
2024-07-31 14:39                       ` Simon Glass
2024-07-31 17:17                         ` Tom Rini
2024-09-19 14:13                           ` Simon Glass
2024-09-23 20:35                             ` Tom Rini
2024-09-25 12:49                               ` Simon Glass
2024-06-23 20:30 ` [PATCH 14/14] smbios: Correct error handling when writing tables Simon Glass
2024-06-24  4:36   ` Heinrich Schuchardt
2024-06-25 12:30     ` Simon Glass
2024-06-26  9:43 ` (subset) [PATCH 00/14] testb: Various tweaks and fixes for Labgrid Neil Armstrong
2024-07-04 18:50 ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox