diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-22 05:05:24 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-05 14:13:04 -0400 |
commit | 5a0e275cbbc4f462495e9a7e04acf0f6bfbd13c5 (patch) | |
tree | 54167c15091edfcf51f6e4058218637e9c46a28a /common | |
parent | c87dc38d8f860710f5f624d9dae6cefded285b8d (diff) | |
download | u-boot-5a0e275cbbc4f462495e9a7e04acf0f6bfbd13c5.zip u-boot-5a0e275cbbc4f462495e9a7e04acf0f6bfbd13c5.tar.gz u-boot-5a0e275cbbc4f462495e9a7e04acf0f6bfbd13c5.tar.bz2 |
bootstage: Change CONFIG_BOOTSTAGE_USER_COUNT to an int
There is no good read to make this hex, and integer is more natural for
this type of setting. Update it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Kconfig b/common/Kconfig index 5c39663..3b85bf4 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -38,7 +38,7 @@ config BOOTSTAGE_REPORT 30,361,327 445,160 start_kernel config BOOTSTAGE_USER_COUNT - hex "Number of boot ID numbers available for user use" + int "Number of boot ID numbers available for user use" default 20 help This is the number of available user bootstage records. |