diff options
| author | Raptor Engineering Development Team <support@raptorengineering.com> | 2018-04-30 03:55:48 -0500 |
|---|---|---|
| committer | Raptor Engineering Development Team <support@raptorengineering.com> | 2018-05-12 01:14:51 -0500 |
| commit | f2d4710a3be1979ee8eba0eabaaf675aefe585be (patch) | |
| tree | 09a5778a7c6ac03b13a66b3ccf6d5f79cf7911b6 | |
| parent | 036e3a8b28a8d5f117c548d1913035b683b6b033 (diff) | |
| download | talos-skiboot-05-14-2018.tar.gz talos-skiboot-05-14-2018.zip | |
Disable fast reset unless explicitly enabled05-14-2018
Fast reset causes the OCC to randomly stop communicating with the BMC,
leading to a fan control failure and possible second CPU guard due
to the resultant FSI bus communication issues.
Disable until Issue 1699 (https://github.com/openbmc/openbmc/issues/1699) is fixed
| -rw-r--r-- | core/platform.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/platform.c b/core/platform.c index f09ea3c1..5872d75b 100644 --- a/core/platform.c +++ b/core/platform.c @@ -60,8 +60,8 @@ static int64_t opal_cec_reboot(void) console_complete_flush(); - /* Try fast-reset unless explicitly disabled */ - if (!nvram_query_eq("fast-reset","0")) + /* Don't try fast-reset unless explicitly enabled */ + if (nvram_query_eq("fast-reset","1")) fast_reboot(); if (platform.cec_reboot) |

