mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
Convert CONFIG_SYS_BOOTCOUNT_SINGLEWORD to Kconfig
This converts the following to Kconfig: CONFIG_SYS_BOOTCOUNT_SINGLEWORD Signed-off-by: Lukasz Majewski <lukma@denx.de> Tested-by: Alex Kiernan <alex.kiernan@gmail.com> Reviewed-by: Ian Ray <ian.ray@ge.com>
This commit is contained in:
parent
d1ec9461f2
commit
04e2cead60
3 changed files with 7 additions and 1 deletions
|
@ -26,6 +26,7 @@ CONFIG_EFI_PARTITION=y
|
|||
CONFIG_ENV_IS_IN_NVRAM=y
|
||||
CONFIG_SCSI_AHCI=y
|
||||
CONFIG_BOOTCOUNT_LIMIT=y
|
||||
CONFIG_SYS_BOOTCOUNT_SINGLEWORD=y
|
||||
# CONFIG_MMC is not set
|
||||
CONFIG_SCSI=y
|
||||
CONFIG_OF_LIBFDT=y
|
||||
|
|
|
@ -17,6 +17,12 @@ config BOOTCOUNT_LIMIT
|
|||
Enable checking for exceeding the boot count limit.
|
||||
More information: http://www.denx.de/wiki/DULG/UBootBootCountLimit
|
||||
|
||||
config SYS_BOOTCOUNT_SINGLEWORD
|
||||
bool "Use single word to pack boot count and magic value"
|
||||
help
|
||||
This option enables packing boot count magic value and boot count
|
||||
into single word (32 bits).
|
||||
|
||||
if BOOTCOUNT
|
||||
|
||||
config BOOTCOUNT_EXT
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
#define CONFIG_PL01x_PORTS { (void *)(0xFFF36000) }
|
||||
#define CONFIG_CONS_INDEX 0
|
||||
|
||||
#define CONFIG_SYS_BOOTCOUNT_SINGLEWORD
|
||||
#define CONFIG_SYS_BOOTCOUNT_LE /* Use little-endian accessors */
|
||||
#define CONFIG_SYS_BOOTCOUNT_ADDR 0xfff3cf0c
|
||||
|
||||
|
|
Loading…
Reference in a new issue