All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/21] Various patches for verified boot support
@ 2018-11-24  4:29 Simon Glass
  2018-11-24  4:29 ` [U-Boot] [PATCH 01/21] sandbox: Fix up the debug message for the image filename Simon Glass
                   ` (38 more replies)
  0 siblings, 39 replies; 46+ messages in thread
From: Simon Glass @ 2018-11-24  4:29 UTC (permalink / raw)
  To: u-boot

This is (for now) the last series to enable Chromium OS verified boot in
U-Boot. It includes:

- Sandbox valgrind spport
- Minor TPM enhancements and fixes
- Resurection of inttypes.h
- Args checking for log functions
- Sandbox fix for time jitter
- Various other minir things


Simon Glass (21):
  sandbox: Fix up the debug message for the image filename
  sandbox: Check the filename in jump_to_image_no_args()
  sandbox: physmem: Use mapping to support sandbox
  sandbox: net: Correct name copy in eth_raw_bus_post_bind()
  sandbox: sysreset: Update to support power-on reset
  sandbox: Zero the ram buffer on startup
  sandbox: Use 'extras' to specify 'head' files
  sandbox: Allow running from valgrind
  tpm: Remove use of build-time TPM versions
  tpm: Export tpm_clear_and_reenable()
  tpm: Add non-volatile index attributes needed for v2
  tpm: Fix a logging warning in unpack_byte_string()
  cros: Correct a printf() string and comment
  cros_ec: Adjust to use v1 vboot context only
  input: i8042: Use remove() instead of exported functions
  video: backlight: Fix log message in enable_sequence()
  time: Update mdelay() to delay in one large chunk
  log: Check printf() arguments
  Add UINT32_MAX and UINT64_MAX
  Add inttypes.h
  RFC: Makefile: Build U-Boot as a library

 Makefile                            |   9 +-
 arch/sandbox/Makefile               |   4 +-
 arch/sandbox/config.mk              |   7 +-
 arch/sandbox/cpu/Makefile           |   5 +-
 arch/sandbox/cpu/os.c               |  39 ++--
 arch/sandbox/cpu/spl.c              |   8 +-
 arch/sandbox/cpu/start.c            |   7 +
 arch/sandbox/include/asm/state.h    |   1 +
 drivers/input/i8042.c               |  35 ++--
 drivers/misc/cros_ec.c              |   4 +-
 drivers/misc/cros_ec_sandbox.c      |  10 +-
 drivers/net/sandbox-raw-bus.c       |   2 +-
 drivers/sysreset/sysreset_sandbox.c |   8 +-
 drivers/video/pwm_backlight.c       |   2 +-
 include/i8042.h                     |  15 --
 include/inttypes.h                  | 271 ++++++++++++++++++++++++++++
 include/linux/delay.h               |   3 +-
 include/linux/kernel.h              |   4 +
 include/log.h                       |   3 +-
 include/tpm-common.h                |  19 ++
 include/tpm-v2.h                    |  33 ++++
 lib/physmem.c                       |   4 +-
 lib/tpm-common.c                    |   9 +-
 lib/tpm-v1.c                        |  22 +--
 scripts/Makefile.spl                |  17 +-
 test/dm/sysreset.c                  |   4 +-
 26 files changed, 462 insertions(+), 83 deletions(-)
 create mode 100644 include/inttypes.h

-- 
2.20.0.rc0.387.gc7a69e6b6c-goog

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

end of thread, other threads:[~2018-12-28 20:47 UTC | newest]

Thread overview: 46+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-24  4:29 [U-Boot] [PATCH 00/21] Various patches for verified boot support Simon Glass
2018-11-24  4:29 ` [U-Boot] [PATCH 01/21] sandbox: Fix up the debug message for the image filename Simon Glass
2018-11-24  4:29 ` [U-Boot] [PATCH 02/21] sandbox: Check the filename in jump_to_image_no_args() Simon Glass
2018-11-24  4:29 ` [U-Boot] [PATCH 03/21] sandbox: physmem: Use mapping to support sandbox Simon Glass
2018-11-24  4:29 ` [U-Boot] [PATCH 04/21] sandbox: net: Correct name copy in eth_raw_bus_post_bind() Simon Glass
2018-11-24  4:29 ` [U-Boot] [PATCH 05/21] sandbox: sysreset: Update to support power-on reset Simon Glass
2018-11-24  4:29 ` [U-Boot] [PATCH 06/21] sandbox: Zero the ram buffer on startup Simon Glass
2018-11-24  4:29 ` [U-Boot] [PATCH 07/21] sandbox: Use 'extras' to specify 'head' files Simon Glass
2018-11-24  4:29 ` [U-Boot] [PATCH 08/21] sandbox: Allow running from valgrind Simon Glass
2018-11-24 21:31   ` Alexander Graf
2018-11-26  9:30     ` Christian Borntraeger
2018-11-24  4:29 ` [U-Boot] [PATCH 09/21] tpm: Remove use of build-time TPM versions Simon Glass
2018-11-24  4:29 ` [U-Boot] [PATCH 10/21] tpm: Export tpm_clear_and_reenable() Simon Glass
2018-11-24  4:29 ` [U-Boot] [PATCH 11/21] tpm: Add non-volatile index attributes needed for v2 Simon Glass
2018-11-24  4:29 ` [U-Boot] [PATCH 12/21] tpm: Fix a logging warning in unpack_byte_string() Simon Glass
2018-11-24  4:29 ` [U-Boot] [PATCH 13/21] cros: Correct a printf() string and comment Simon Glass
2018-11-24  4:29 ` [U-Boot] [PATCH 14/21] cros_ec: Adjust to use v1 vboot context only Simon Glass
2018-11-24  4:29 ` [U-Boot] [PATCH 15/21] input: i8042: Use remove() instead of exported functions Simon Glass
2018-11-24  4:29 ` [U-Boot] [PATCH 16/21] video: backlight: Fix log message in enable_sequence() Simon Glass
2018-11-24 10:24   ` Anatolij Gustschin
2018-12-05 23:10   ` sjg at google.com
2018-11-24  4:29 ` [U-Boot] [PATCH 17/21] time: Update mdelay() to delay in one large chunk Simon Glass
2018-11-24  4:29 ` [U-Boot] [PATCH 18/21] log: Check printf() arguments Simon Glass
2018-11-24  4:29 ` [U-Boot] [PATCH 19/21] Add UINT32_MAX and UINT64_MAX Simon Glass
2018-11-24  4:29 ` [U-Boot] [PATCH 20/21] Add inttypes.h Simon Glass
2018-12-06  5:50   ` Masahiro Yamada
2018-12-10 21:05     ` Simon Glass
2018-11-24  4:29 ` [U-Boot] [PATCH 21/21] RFC: Makefile: Build U-Boot as a library Simon Glass
2018-12-05 23:10 ` [U-Boot] [PATCH 19/21] Add UINT32_MAX and UINT64_MAX sjg at google.com
2018-12-05 23:10 ` [U-Boot] [PATCH 20/21] Add inttypes.h sjg at google.com
2018-12-05 23:10 ` [U-Boot] [PATCH 17/21] time: Update mdelay() to delay in one large chunk sjg at google.com
2018-12-05 23:10 ` [U-Boot] [PATCH 15/21] input: i8042: Use remove() instead of exported functions sjg at google.com
2018-12-05 23:10 ` [U-Boot] [PATCH 14/21] cros_ec: Adjust to use v1 vboot context only sjg at google.com
2018-12-05 23:10 ` [U-Boot] [PATCH 13/21] cros: Correct a printf() string and comment sjg at google.com
2018-12-05 23:10 ` [U-Boot] [PATCH 12/21] tpm: Fix a logging warning in unpack_byte_string() sjg at google.com
2018-12-05 23:10 ` [U-Boot] [PATCH 11/21] tpm: Add non-volatile index attributes needed for v2 sjg at google.com
2018-12-05 23:10 ` [U-Boot] [PATCH 09/21] tpm: Remove use of build-time TPM versions sjg at google.com
2018-12-05 23:10 ` [U-Boot] [PATCH 10/21] tpm: Export tpm_clear_and_reenable() sjg at google.com
2018-12-05 23:10 ` [U-Boot] [PATCH 07/21] sandbox: Use 'extras' to specify 'head' files sjg at google.com
2018-12-05 23:10 ` [U-Boot] [PATCH 05/21] sandbox: sysreset: Update to support power-on reset sjg at google.com
2018-12-05 23:10 ` [U-Boot] [PATCH 06/21] sandbox: Zero the ram buffer on startup sjg at google.com
2018-12-05 23:10 ` [U-Boot] [PATCH 04/21] sandbox: net: Correct name copy in eth_raw_bus_post_bind() sjg at google.com
2018-12-05 23:11 ` [U-Boot] [PATCH 03/21] sandbox: physmem: Use mapping to support sandbox sjg at google.com
2018-12-05 23:11 ` [U-Boot] [PATCH 02/21] sandbox: Check the filename in jump_to_image_no_args() sjg at google.com
2018-12-05 23:11 ` [U-Boot] [PATCH 01/21] sandbox: Fix up the debug message for the image filename sjg at google.com
2018-12-28 20:47 ` [U-Boot] [PATCH 18/21] log: Check printf() arguments sjg at google.com

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.