diff options
| author | Heinrich Schuchardt <[email protected]> | 2025-04-30 09:34:05 +0200 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2025-05-01 09:24:56 +0200 |
| commit | c0546426724099d94a497ea11ad79862daf37767 (patch) | |
| tree | 92974748fcb42ef99e1363fbe1a9f4615ee0b36a | |
| parent | ac3b51ef727b052fce3b36e9a8b9b5984fd454c6 (diff) | |
boot: let BOOTSTAGE_RECORD_COUNT default to 50
BOOTSTAGE_RECORD_COUNT=30 is too small to record booting a FIT image
with EFI kernel, initrd, dtb as seen on the StarFive VisionFive 2
board.
Increase the default for BOOTSTAGE_RECORD_COUNT to 50.
Reviewed-by: Ilias Apalodimas <[email protected]>
Reviewed-by: Mattijs Korpershoek <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Signed-off-by: Heinrich Schuchardt <[email protected]>
| -rw-r--r-- | boot/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/Kconfig b/boot/Kconfig index fb37d912bc9..2456856a572 100644 --- a/boot/Kconfig +++ b/boot/Kconfig @@ -1170,7 +1170,7 @@ config BOOTSTAGE_REPORT config BOOTSTAGE_RECORD_COUNT int "Number of boot stage records to store" depends on BOOTSTAGE - default 30 + default 50 help This is the size of the bootstage record list and is the maximum number of bootstage records that can be recorded. |
