public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v1 00/21] This patch series brings in sync DISPLAY5 internal
@ 2018-05-11 14:50 Lukasz Majewski
  2018-05-11 14:50 ` [U-Boot] [PATCH v1 01/21] display5: factory: Add support for BOOT_FROM = FACTORY switch Lukasz Majewski
                   ` (20 more replies)
  0 siblings, 21 replies; 25+ messages in thread
From: Lukasz Majewski @ 2018-05-11 14:50 UTC (permalink / raw)
  To: u-boot

This patch series brings the internal DISPLAY5 development in sync 
with mainline.

Lukasz Majewski (21):
  display5: factory: Add support for BOOT_FROM = FACTORY switch
  display5: config: factory: Setup IP config data according to LEG
    production setup
  display5: config: Add "factory" (1MiB) SPI-NOR partition in u-boot
  display5: config: Provide command to flash the whole SPI-NOR memory
  display5: spl: Check return code of the env_* functions
  display5: config: Reset the board when bootm fails
  display5: config: Remove support for Linux initramfs recovery image
    boot
  display5: config: Update SPI-NOR partition for larger
    swupdate-initramfs
  display5: config: factory: Extend mtdparts to support LEG factory
    partition
  display5: Support for the emergency PAD pressing
  display5: wdt: Enable WDT support (both SPL and u-boot)
  display5: config: Provide 'tftp_mmc_rootfs_bkp' command to write
    BACKUP rootfs
  display5: config: factory: Update BACKUP rootfs in factory mode
  display5: config: Update swupdate initramfs file name (now supporting
    ext4)
  display5: ddr: Enable support for DDR3 auto calibration
  display5: net: Add function to read ethaddr from iMX6 fuses
  display5: config: Add cma=256M to command line arguments
  display5: config: Reduce rootfs2 (BACKUP) size from 1528M to 512M
  display5: display5_defconfig: Enable support for gpt command (CMD_GPT)
    in production u-boot
  display5: config: Add GPT verification and restoration code on
    SWUpdate entry
  display5: Add missing environment.h include to avoid warning

 board/liebherr/display5/common.c   |  10 ++++
 board/liebherr/display5/common.h   |   1 +
 board/liebherr/display5/display5.c |  41 +++++++++++++++
 board/liebherr/display5/spl.c      |  78 +++++++++++++++++++++++++++-
 configs/display5_defconfig         |   6 ++-
 configs/display5_factory_defconfig |   3 +-
 include/configs/display5.h         | 102 ++++++++++++++++++++++---------------
 7 files changed, 194 insertions(+), 47 deletions(-)

-- 
2.11.0

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

end of thread, other threads:[~2018-05-16 16:14 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-11 14:50 [U-Boot] [PATCH v1 00/21] This patch series brings in sync DISPLAY5 internal Lukasz Majewski
2018-05-11 14:50 ` [U-Boot] [PATCH v1 01/21] display5: factory: Add support for BOOT_FROM = FACTORY switch Lukasz Majewski
2018-05-11 14:51 ` [U-Boot] [PATCH v1 02/21] display5: config: factory: Setup IP config data according to LEG production setup Lukasz Majewski
2018-05-11 14:51 ` [U-Boot] [PATCH v1 03/21] display5: config: Add "factory" (1MiB) SPI-NOR partition in u-boot Lukasz Majewski
2018-05-11 14:51 ` [U-Boot] [PATCH v1 04/21] display5: config: Provide command to flash the whole SPI-NOR memory Lukasz Majewski
2018-05-11 14:51 ` [U-Boot] [PATCH v1 05/21] display5: spl: Check return code of the env_* functions Lukasz Majewski
2018-05-11 14:51 ` [U-Boot] [PATCH v1 06/21] display5: config: Reset the board when bootm fails Lukasz Majewski
2018-05-11 14:51 ` [U-Boot] [PATCH v1 07/21] display5: config: Remove support for Linux initramfs recovery image boot Lukasz Majewski
2018-05-11 14:51 ` [U-Boot] [PATCH v1 08/21] display5: config: Update SPI-NOR partition for larger swupdate-initramfs Lukasz Majewski
2018-05-11 14:51 ` [U-Boot] [PATCH v1 09/21] display5: config: factory: Extend mtdparts to support LEG factory partition Lukasz Majewski
2018-05-11 14:51 ` [U-Boot] [PATCH v1 10/21] display5: Support for the emergency PAD pressing Lukasz Majewski
2018-05-11 14:51 ` [U-Boot] [PATCH v1 11/21] display5: wdt: Enable WDT support (both SPL and u-boot) Lukasz Majewski
2018-05-11 14:51 ` [U-Boot] [PATCH v1 12/21] display5: config: Provide 'tftp_mmc_rootfs_bkp' command to write BACKUP rootfs Lukasz Majewski
2018-05-11 14:51 ` [U-Boot] [PATCH v1 13/21] display5: config: factory: Update BACKUP rootfs in factory mode Lukasz Majewski
2018-05-11 14:51 ` [U-Boot] [PATCH v1 14/21] display5: config: Update swupdate initramfs file name (now supporting ext4) Lukasz Majewski
2018-05-11 14:51 ` [U-Boot] [PATCH v1 15/21] display5: ddr: Enable support for DDR3 auto calibration Lukasz Majewski
2018-05-11 14:51 ` [U-Boot] [PATCH v1 16/21] display5: net: Add function to read ethaddr from iMX6 fuses Lukasz Majewski
2018-05-15 21:16   ` Joe Hershberger
2018-05-16 14:46     ` Lukasz Majewski
2018-05-16 16:14       ` Joe Hershberger
2018-05-11 14:51 ` [U-Boot] [PATCH v1 17/21] display5: config: Add cma=256M to command line arguments Lukasz Majewski
2018-05-11 14:51 ` [U-Boot] [PATCH v1 18/21] display5: config: Reduce rootfs2 (BACKUP) size from 1528M to 512M Lukasz Majewski
2018-05-11 14:51 ` [U-Boot] [PATCH v1 19/21] display5: display5_defconfig: Enable support for gpt command (CMD_GPT) in production u-boot Lukasz Majewski
2018-05-11 14:51 ` [U-Boot] [PATCH v1 20/21] display5: config: Add GPT verification and restoration code on SWUpdate entry Lukasz Majewski
2018-05-11 14:51 ` [U-Boot] [PATCH v1 21/21] display5: Add missing environment.h include to avoid warning Lukasz Majewski

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