public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3 00/11] Convert bootcount drivers to Kconfig
@ 2018-02-16 15:50 Alex Kiernan
  2018-02-16 15:50 ` [U-Boot] [PATCH v3 01/11] Merge CONFIG_BOOTCOUNT and CONFIG_BOOTCOUNT_LIMIT Alex Kiernan
                   ` (10 more replies)
  0 siblings, 11 replies; 23+ messages in thread
From: Alex Kiernan @ 2018-02-16 15:50 UTC (permalink / raw)
  To: u-boot


This patch set converts bootcount drivers to Kconfig, it also merges
CONFIG_BOOTCOUNT and CONFIG_BOOTCOUNT_LIMIT.

Green Travis build:

https://travis-ci.org/akiernan/u-boot/builds/342294699

This patch has been applied on top of u-boot/master:
SHA1: f116634cd17952a18efb7c8cc6f6a7ef42dd4b8b


Changes in v3:
- Improve commit messages
- Split rename of CONFIG_SYS_BOOTCOUNT_ADDR out to a separate series

Changes in v2:
- Fix erroneously removed line in README
- Convert CONFIG_BOOTCOUNT_EXT too - it had only been partially done
- Reword CONFIG_BOOTCOUNT_DRAM
- Update README for AT91 driver
- Remove CONFIG_BOOTCOUNT_LIMIT and CONFIG_SYS_BOOTCOUNT_SINGLEWORD
  from whitelist
- Rename CONFIG_SYS_BOOTCOUNT_ADDR to BOOTCOUNT_ADDR and remove from
  Kconfig
- Migrate CONFIG_BOOTCOUNT_ALEN to Kconfig

Alex Kiernan (11):
  Merge CONFIG_BOOTCOUNT and CONFIG_BOOTCOUNT_LIMIT
  Prepare for multiple bootcount drivers
  Convert CONFIG_BOOTCOUNT_AM33XX to Kconfig
  Convert CONFIG_BOOTCOUNT_ENV to Kconfig
  Convert CONFIG_BOOTCOUNT_RAM to Kconfig
  Convert CONFIG_BOOTCOUNT_I2C to Kconfig
  Convert CONFIG_BOOTCOUNT_EXT to Kconfig
  Integrate AT91 bootcount driver
  Migrate generic bootcount to Kconfig
  Migrate CONFIG_BOOTCOUNT_ALEN to Kconfig
  Remove CONFIG_SYS_BOOTCOUNT_SINGLEWORD

 README                                 | 32 ------------
 configs/draco_defconfig                |  1 +
 configs/etamin_defconfig               |  1 +
 configs/ge_b450v3_defconfig            |  2 +
 configs/ge_b650v3_defconfig            |  2 +
 configs/ge_b850v3_defconfig            |  2 +
 configs/ids8313_defconfig              |  1 +
 configs/km_kirkwood_128m16_defconfig   |  1 +
 configs/km_kirkwood_defconfig          |  1 +
 configs/km_kirkwood_pci_defconfig      |  1 +
 configs/kmcoge5un_defconfig            |  1 +
 configs/kmnusa_defconfig               |  1 +
 configs/kmsugp1_defconfig              |  1 +
 configs/kmsuv31_defconfig              |  1 +
 configs/mgcoge3un_defconfig            |  1 +
 configs/mx53ppd_defconfig              |  1 -
 configs/portl2_defconfig               |  1 +
 configs/pxm2_defconfig                 |  1 +
 configs/rastaban_defconfig             |  1 +
 configs/rut_defconfig                  |  1 +
 configs/theadorable_debug_defconfig    |  1 +
 configs/thuban_defconfig               |  1 +
 drivers/bootcount/Kconfig              | 89 ++++++++++++++++++++++++++--------
 drivers/bootcount/Makefile             |  5 +-
 include/configs/am335x_evm.h           |  1 -
 include/configs/am335x_sl50.h          |  1 -
 include/configs/baltos.h               |  2 -
 include/configs/bav335x.h              |  1 -
 include/configs/brppt1.h               |  1 -
 include/configs/chiliboard.h           |  1 -
 include/configs/ge_bx50v3.h            |  4 --
 include/configs/ids8313.h              |  2 -
 include/configs/km/km_arm.h            |  2 -
 include/configs/siemens-am33x-common.h |  2 -
 include/configs/theadorable.h          |  1 -
 scripts/config_whitelist.txt           |  7 ---
 36 files changed, 94 insertions(+), 81 deletions(-)

-- 
2.7.4

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

end of thread, other threads:[~2018-02-25 20:37 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-16 15:50 [U-Boot] [PATCH v3 00/11] Convert bootcount drivers to Kconfig Alex Kiernan
2018-02-16 15:50 ` [U-Boot] [PATCH v3 01/11] Merge CONFIG_BOOTCOUNT and CONFIG_BOOTCOUNT_LIMIT Alex Kiernan
2018-02-25 20:36   ` [U-Boot] [U-Boot, v3, " Tom Rini
2018-02-16 15:50 ` [U-Boot] [PATCH v3 02/11] Prepare for multiple bootcount drivers Alex Kiernan
2018-02-25 20:36   ` [U-Boot] [U-Boot, v3, " Tom Rini
2018-02-16 15:50 ` [U-Boot] [PATCH v3 03/11] Convert CONFIG_BOOTCOUNT_AM33XX to Kconfig Alex Kiernan
2018-02-25 20:37   ` [U-Boot] [U-Boot, v3, " Tom Rini
2018-02-16 15:50 ` [U-Boot] [PATCH v3 04/11] Convert CONFIG_BOOTCOUNT_ENV " Alex Kiernan
2018-02-25 20:37   ` [U-Boot] [U-Boot, v3, " Tom Rini
2018-02-16 15:50 ` [U-Boot] [PATCH v3 05/11] Convert CONFIG_BOOTCOUNT_RAM " Alex Kiernan
2018-02-25 20:37   ` [U-Boot] [U-Boot, v3, " Tom Rini
2018-02-16 15:50 ` [U-Boot] [PATCH v3 06/11] Convert CONFIG_BOOTCOUNT_I2C " Alex Kiernan
2018-02-25 20:37   ` [U-Boot] [U-Boot, v3, " Tom Rini
2018-02-16 15:50 ` [U-Boot] [PATCH v3 07/11] Convert CONFIG_BOOTCOUNT_EXT " Alex Kiernan
2018-02-25 20:37   ` [U-Boot] [U-Boot, v3, " Tom Rini
2018-02-16 15:50 ` [U-Boot] [PATCH v3 08/11] Integrate AT91 bootcount driver Alex Kiernan
2018-02-25 20:37   ` [U-Boot] [U-Boot,v3,08/11] " Tom Rini
2018-02-16 15:50 ` [U-Boot] [PATCH v3 09/11] Migrate generic bootcount to Kconfig Alex Kiernan
2018-02-25 20:37   ` [U-Boot] [U-Boot, v3, " Tom Rini
2018-02-16 15:50 ` [U-Boot] [PATCH v3 10/11] Migrate CONFIG_BOOTCOUNT_ALEN " Alex Kiernan
2018-02-25 20:37   ` [U-Boot] [U-Boot, v3, " Tom Rini
2018-02-16 15:50 ` [U-Boot] [PATCH v3 11/11] Remove CONFIG_SYS_BOOTCOUNT_SINGLEWORD Alex Kiernan
2018-02-25 20: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