Timothy Pearson (tpearson@raptorengineeringinc.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/12320
-gerrit
commit 59a23170c3e45e7f42f976e9117582c184e8f725 Author: Timothy Pearson tpearson@raptorengineeringinc.com Date: Tue Nov 3 22:11:51 2015 -0600
mainboard/asus: Increase reboot count on boards with recovery jumper
On server boards with a recovery jumper, having the fallback path less sensitive to power fluctuations or BMC issues makes sense.
Increase the maximum number of boot attempts before automatic fallback to 10 on these boards.
Change-Id: Iabe0b0cbf332686db8e9380a8b65a1477173599c Signed-off-by: Timothy Pearson tpearson@raptorengineeringinc.com --- src/mainboard/asus/kfsn4-dre/Kconfig | 4 ++++ src/mainboard/asus/kfsn4-dre_k8/Kconfig | 4 ++++ src/mainboard/asus/kgpe-d16/Kconfig | 4 ++++ 3 files changed, 12 insertions(+)
diff --git a/src/mainboard/asus/kfsn4-dre/Kconfig b/src/mainboard/asus/kfsn4-dre/Kconfig index 28b5dcd..5e455e0 100644 --- a/src/mainboard/asus/kfsn4-dre/Kconfig +++ b/src/mainboard/asus/kfsn4-dre/Kconfig @@ -93,4 +93,8 @@ config MAINBOARD_POWER_ON_AFTER_POWER_FAIL bool default y
+config MAX_REBOOT_CNT + int + default 10 + endif # BOARD_ASUS_KFSN4_DRE diff --git a/src/mainboard/asus/kfsn4-dre_k8/Kconfig b/src/mainboard/asus/kfsn4-dre_k8/Kconfig index 39d530b..2b345ff 100644 --- a/src/mainboard/asus/kfsn4-dre_k8/Kconfig +++ b/src/mainboard/asus/kfsn4-dre_k8/Kconfig @@ -98,4 +98,8 @@ config MAINBOARD_POWER_ON_AFTER_POWER_FAIL bool default y
+config MAX_REBOOT_CNT + int + default 10 + endif # BOARD_ASUS_KFSN4_DRE_K8 diff --git a/src/mainboard/asus/kgpe-d16/Kconfig b/src/mainboard/asus/kgpe-d16/Kconfig index f5ff81c..29061ca 100644 --- a/src/mainboard/asus/kgpe-d16/Kconfig +++ b/src/mainboard/asus/kgpe-d16/Kconfig @@ -88,4 +88,8 @@ config MAINBOARD_POWER_ON_AFTER_POWER_FAIL bool default y
+config MAX_REBOOT_CNT + int + default 10 + endif # BOARD_ASUS_KGPE_D16