summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.ibm.com>2018-09-18 04:54:12 -0500
committerStewart Smith <stewart@linux.ibm.com>2018-09-18 04:54:12 -0500
commitaeb366970e0c48871dd2d880665c0d64961a524f (patch)
tree1ccd9c92cdd16eab16559f48db8e980586a2b55d /core
parent7c8e1c6f89f3aac77661cfcee75ab515bd053d75 (diff)
downloadtalos-skiboot-aeb366970e0c48871dd2d880665c0d64961a524f.tar.gz
talos-skiboot-aeb366970e0c48871dd2d880665c0d64961a524f.zip
Actually add /ibm,opal/fast-reboot property
I missed a hunk when merging :( Reported-by: Vasant Hegde <hegdevasant@linux.vnet.ibm.com> Fixes: 7c8e1c6f89f3aac77661cfcee75ab515bd053d75 Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'core')
-rw-r--r--core/fast-reboot.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/core/fast-reboot.c b/core/fast-reboot.c
index 56d6b3b4..becca7d8 100644
--- a/core/fast-reboot.c
+++ b/core/fast-reboot.c
@@ -72,6 +72,17 @@ void disable_fast_reboot(const char *reason)
fast_reboot_disabled = reason;
}
+void add_fast_reboot_dt_entries(void)
+{
+ dt_check_del_prop(opal_node, "fast-reboot");
+
+ if (fast_reboot_disabled) {
+ dt_add_property_string(opal_node, "fast-reboot", fast_reboot_disabled);
+ } else {
+ dt_add_property_string(opal_node, "fast-reboot", "okay");
+ }
+}
+
/*
* This is called by the reboot CPU after all other CPUs have been
* quiesced and stopped, to perform various sanity checks on firmware
OpenPOWER on IntegriCloud