public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3 0/6] autoboot cleanups
@ 2016-06-27  7:22 Masahiro Yamada
  2016-06-27  7:22 ` [U-Boot] [PATCH v3 1/6] ARM: socfpga: move CONFIG_BOOTDELAY to Kconfig for IS1 board Masahiro Yamada
                   ` (5 more replies)
  0 siblings, 6 replies; 14+ messages in thread
From: Masahiro Yamada @ 2016-06-27  7:22 UTC (permalink / raw)
  To: u-boot


1/6 moves CONFIG_BOOTDELAY for a new SOCFPGA board.

The rest of this series are clean-ups of autoboot code.


Masahiro Yamada (6):
  ARM: socfpga: move CONFIG_BOOTDELAY to Kconfig for IS1 board
  doc: bootdelay: drop explanation about CONFIG_BOOTDELAY from README
  autoboot: remove CONFIG_ZERO_BOOTDELAY_CHECK
  autoboot: rename abortboot_{keyed, normal} to __abortboot
  autoboot: move CONFIG_SILENT_CONSOLE handling
  autoboot: move bootdelay >= 0 check to abortboot()

 README                                             | 17 --------
 common/Kconfig                                     |  4 +-
 common/autoboot.c                                  | 49 ++++++++--------------
 configs/brppt1_mmc_defconfig                       |  2 +-
 configs/brppt1_nand_defconfig                      |  2 +-
 configs/brppt1_spi_defconfig                       |  2 +-
 configs/brxre1_defconfig                           |  2 +-
 configs/cairo_defconfig                            |  2 +-
 .../controlcenterd_TRAILBLAZER_DEVELOP_defconfig   |  2 +-
 configs/controlcenterd_TRAILBLAZER_defconfig       |  2 +-
 configs/omap3_evm_quick_mmc_defconfig              |  2 +-
 configs/omap3_evm_quick_nand_defconfig             |  2 +-
 configs/socfpga_is1_defconfig                      |  4 +-
 doc/README.autoboot                                |  8 ----
 include/configs/CPCI2DP.h                          |  2 -
 include/configs/CPCI4052.h                         |  2 -
 include/configs/MIP405.h                           |  1 -
 include/configs/PIP405.h                           |  1 -
 include/configs/PLU405.h                           |  1 -
 include/configs/PMC405DE.h                         |  1 -
 include/configs/PMC440.h                           |  1 -
 include/configs/VCMA9.h                            |  1 -
 include/configs/VOM405.h                           |  1 -
 include/configs/a3m071.h                           |  1 -
 include/configs/amcc-common.h                      |  1 -
 include/configs/apf27.h                            |  1 -
 include/configs/calimain.h                         |  1 -
 include/configs/cm_t35.h                           |  2 -
 include/configs/cm_t3517.h                         |  2 -
 include/configs/cm_t43.h                           |  1 -
 include/configs/devkit3250.h                       |  1 -
 include/configs/digsy_mtc.h                        |  1 -
 include/configs/dlvision-10g.h                     |  2 -
 include/configs/exynos-common.h                    |  2 -
 include/configs/gdppc440etx.h                      |  2 -
 include/configs/hrcon.h                            |  2 -
 include/configs/intip.h                            |  2 -
 include/configs/io.h                               |  2 -
 include/configs/io64.h                             |  2 -
 include/configs/iocon.h                            |  2 -
 include/configs/legoev3.h                          |  1 -
 include/configs/meesc.h                            |  2 -
 include/configs/omap3_logic.h                      |  1 -
 include/configs/pcm030.h                           |  5 ---
 include/configs/r7780mp.h                          |  3 --
 include/configs/s5p_goni.h                         |  2 -
 include/configs/smdk2410.h                         |  1 -
 include/configs/smdkc100.h                         |  3 --
 include/configs/snapper9260.h                      |  1 -
 include/configs/snapper9g45.h                      |  1 -
 include/configs/socfpga_is1.h                      |  1 -
 include/configs/spear-common.h                     |  1 -
 include/configs/strider.h                          |  2 -
 include/configs/theadorable.h                      |  1 -
 include/configs/tricorder.h                        |  1 -
 include/configs/uniphier.h                         |  2 -
 include/configs/vinco.h                            |  1 -
 include/configs/work_92105.h                       |  2 -
 include/configs/x600.h                             |  1 -
 include/configs/xilinx-ppc.h                       |  1 -
 60 files changed, 30 insertions(+), 141 deletions(-)

-- 
1.9.1

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

end of thread, other threads:[~2016-07-02  1:37 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-27  7:22 [U-Boot] [PATCH v3 0/6] autoboot cleanups Masahiro Yamada
2016-06-27  7:22 ` [U-Boot] [PATCH v3 1/6] ARM: socfpga: move CONFIG_BOOTDELAY to Kconfig for IS1 board Masahiro Yamada
2016-06-27  7:29   ` Stefan Roese
2016-07-02  1:37   ` [U-Boot] [U-Boot, v3, " Tom Rini
2016-06-27  7:23 ` [U-Boot] [PATCH v3 2/6] doc: bootdelay: drop explanation about CONFIG_BOOTDELAY from README Masahiro Yamada
2016-07-02  1:37   ` [U-Boot] [U-Boot, v3, " Tom Rini
2016-06-27  7:23 ` [U-Boot] [PATCH v3 3/6] autoboot: remove CONFIG_ZERO_BOOTDELAY_CHECK Masahiro Yamada
2016-07-02  1:37   ` [U-Boot] [U-Boot, v3, " Tom Rini
2016-06-27  7:23 ` [U-Boot] [PATCH v3 4/6] autoboot: rename abortboot_{keyed, normal} to __abortboot Masahiro Yamada
2016-07-02  1:37   ` [U-Boot] [U-Boot, v3, " Tom Rini
2016-06-27  7:23 ` [U-Boot] [PATCH v3 5/6] autoboot: move CONFIG_SILENT_CONSOLE handling Masahiro Yamada
2016-07-02  1:37   ` [U-Boot] [U-Boot, v3, " Tom Rini
2016-06-27  7:23 ` [U-Boot] [PATCH v3 6/6] autoboot: move bootdelay >= 0 check to abortboot() Masahiro Yamada
2016-07-02  1:37   ` [U-Boot] [U-Boot, v3, " Tom Rini

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