mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Barebox List <barebox@lists.infradead.org>
Subject: [PATCH v4] FIT support
Date: Fri, 22 Jan 2016 08:32:18 +0100	[thread overview]
Message-ID: <1453447952-30818-1-git-send-email-s.hauer@pengutronix.de> (raw)

This is the fourth version of the FIT image support. Changes to last series
include:

Changes since v3:
- Add option to force booting signed images
- Add reference to U-Boot in RSA support commit message and file
- Add reference to U-Boot in FIT image support
- Write some more Kconfig doc

Changes since v2:
- Integrate FIT support more deeply into bootm remove complexity
  from the architecture handlers
- Cleanup bootm support
- Add support for configuration names as suggested by Yegor Yefremov
- Allow to boot unsigned FIT images

----------------------------------------------------------------
Jan Luebbe (1):
      bootm: add initial FIT support

Sascha Hauer (13):
      ARM: zImage: add missing free() in appended device tree code
      bootm: Do not call uimage_close twice
      bootm: introduce bootm_get_os_size
      bootm: use names instead of numbers for image parts
      ARM: bootm: Use kernel handler to start barebox image
      bootm: Push dryrun to handlers
      bootm: move initrd code together
      bootm: move oftree code together
      bootm: Initialize bootm_data defaults in single place
      crypto: add digest_alloc_by_algo()
      crypto: add RSA support
      bootm: make verifying/hashing configurable
      bootm: Add option to force booting signed images

 arch/arm/crypto/sha1_glue.c        |   1 +
 arch/arm/crypto/sha256_glue.c      |   2 +
 arch/arm/lib/bootm.c               |  52 ++--
 arch/arm/mach-omap/omap_generic.c  |   5 +
 arch/blackfin/lib/blackfin_linux.c |   3 +
 arch/efi/efi/efi-image.c           |   9 +-
 arch/mips/lib/bootm.c              |   5 +
 arch/nios2/lib/bootm.c             |   3 +
 arch/ppc/lib/ppclinux.c            |   3 +
 commands/Kconfig                   |  25 ++
 commands/boot.c                    |  14 +-
 commands/bootm.c                   |  46 +--
 common/Kconfig                     |   9 +
 common/Makefile                    |   1 +
 common/bootm.c                     | 482 ++++++++++++++++++------------
 common/image-fit.c                 | 584 +++++++++++++++++++++++++++++++++++++
 crypto/Kconfig                     |   3 +
 crypto/Makefile                    |   1 +
 crypto/digest.c                    |  43 ++-
 crypto/md5.c                       |   1 +
 crypto/rsa.c                       | 422 +++++++++++++++++++++++++++
 crypto/sha1.c                      |   1 +
 crypto/sha2.c                      |   2 +
 crypto/sha4.c                      |   2 +
 include/asm-generic/errno.h        |   5 +
 include/boot.h                     |  28 +-
 include/digest.h                   |  23 ++
 include/image-fit.h                |  45 +++
 include/rsa.h                      |  54 ++++
 29 files changed, 1599 insertions(+), 275 deletions(-)
 create mode 100644 common/image-fit.c
 create mode 100644 crypto/rsa.c
 create mode 100644 include/image-fit.h
 create mode 100644 include/rsa.h

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

             reply	other threads:[~2016-01-22  7:32 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-22  7:32 Sascha Hauer [this message]
2016-01-22  7:32 ` [PATCH 01/14] ARM: zImage: add missing free() in appended device tree code Sascha Hauer
2016-01-22  7:32 ` [PATCH 02/14] bootm: Do not call uimage_close twice Sascha Hauer
2016-01-22  7:32 ` [PATCH 03/14] bootm: introduce bootm_get_os_size Sascha Hauer
2016-01-22  7:32 ` [PATCH 04/14] bootm: use names instead of numbers for image parts Sascha Hauer
2016-01-22  7:32 ` [PATCH 05/14] ARM: bootm: Use kernel handler to start barebox image Sascha Hauer
2016-01-22  7:32 ` [PATCH 06/14] bootm: Push dryrun to handlers Sascha Hauer
2016-01-22  7:32 ` [PATCH 07/14] bootm: move initrd code together Sascha Hauer
2016-01-22  7:32 ` [PATCH 08/14] bootm: move oftree " Sascha Hauer
2016-01-22  7:32 ` [PATCH 09/14] bootm: Initialize bootm_data defaults in single place Sascha Hauer
2016-01-22  7:32 ` [PATCH 10/14] crypto: add digest_alloc_by_algo() Sascha Hauer
2016-01-22  7:32 ` [PATCH 11/14] crypto: add RSA support Sascha Hauer
2016-01-22  7:32 ` [PATCH 12/14] bootm: make verifying/hashing configurable Sascha Hauer
2016-01-22  7:32 ` [PATCH 13/14] bootm: add initial FIT support Sascha Hauer
2016-01-22  7:32 ` [PATCH 14/14] bootm: Add option to force booting signed images Sascha Hauer

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=1453447952-30818-1-git-send-email-s.hauer@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    /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