Timothy Pearson (tpearson@raptorengineeringinc.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/12319
-gerrit
commit d29bc284cd3b3d1dd80591a7221120f9b6578217 Author: Timothy Pearson tpearson@raptorengineeringinc.com Date: Tue Nov 3 22:04:45 2015 -0600
src: Make maximum reboot count user configurable
In discusson with mrnuke on IRC it was suggested to make the maximum reboot count a user-configurable variable in Kconfig. The idea was to allow the user to tweak coreboot to fit his or her general use case; for example, during development on a laptop a low reboot count may be desired, while in a production situation a very high reboot count may reduce maintainance burden. Right now the user would need to manually edit the Kconfig file of his or her board to modify the maximum reboot count, which is hardly intuitive.
Change-Id: Ibe54ed14a6500eaa4a25f33f34f3c78216e6ccd6 Signed-off-by: Timothy Pearson tpearson@raptorengineeringinc.com --- src/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Kconfig b/src/Kconfig index 865f7f5..ea0499e 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -1107,7 +1107,7 @@ config REG_SCRIPT Internal option that controls whether we compile in register scripts.
config MAX_REBOOT_CNT - int + int "Maximum reboot count" default 3 help Internal option that sets the maximum number of bootblock executions allowed