blob: 52d622a2f8d07ce4c65ee43e9514725642dd4881 [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001From a6d1678379df6142a68cc9bb76dae540a31b8fdb Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 14 Mar 2019 23:47:50 -0700
4Subject: [PATCH] kexecboot: Use new reboot() API with klibc
5
6Klibc has changed this API in
7https://git.kernel.org/pub/scm/libs/klibc/klibc.git/commit/?id=6b621b8705ce5901dcf49607c8a3523c9e521901
8
9therefore adopt the code
10
11Upstream-Status: Pending
12
13Signed-off-by: Khem Raj <raj.khem@gmail.com>
14---
15 src/kexecboot.c | 4 ++--
16 1 file changed, 2 insertions(+), 2 deletions(-)
17
18diff --git a/src/kexecboot.c b/src/kexecboot.c
19index cf49b40..c785fce 100644
20--- a/src/kexecboot.c
21+++ b/src/kexecboot.c
22@@ -857,7 +857,7 @@ int process_ctx_menu(struct params_t *params, int action) {
23 #else
24 sync();
25 /* if ( -1 == reboot(LINUX_REBOOT_CMD_RESTART) ) { */
26- if ( -1 == reboot(RB_AUTOBOOT) ) {
27+ if ( -1 == reboot(RB_AUTOBOOT, NULL) ) {
28 log_msg(lg, "Can't initiate reboot: %s", ERRMSG);
29 }
30 #endif
31@@ -874,7 +874,7 @@ int process_ctx_menu(struct params_t *params, int action) {
32 #else
33 sync();
34 /* if ( -1 == reboot(LINUX_REBOOT_CMD_POWER_OFF) ) { */
35- if ( -1 == reboot(RB_POWER_OFF) ) {
36+ if ( -1 == reboot(RB_POWER_OFF, NULL) ) {
37 log_msg(lg, "Can't initiate shutdown: %s", ERRMSG);
38 }
39 #endif
40--
412.21.0
42