Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1 | From a6d1678379df6142a68cc9bb76dae540a31b8fdb Mon Sep 17 00:00:00 2001 |
| 2 | From: Khem Raj <raj.khem@gmail.com> |
| 3 | Date: Thu, 14 Mar 2019 23:47:50 -0700 |
| 4 | Subject: [PATCH] kexecboot: Use new reboot() API with klibc |
| 5 | |
| 6 | Klibc has changed this API in |
| 7 | https://git.kernel.org/pub/scm/libs/klibc/klibc.git/commit/?id=6b621b8705ce5901dcf49607c8a3523c9e521901 |
| 8 | |
| 9 | therefore adopt the code |
| 10 | |
| 11 | Upstream-Status: Pending |
| 12 | |
| 13 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| 14 | --- |
| 15 | src/kexecboot.c | 4 ++-- |
| 16 | 1 file changed, 2 insertions(+), 2 deletions(-) |
| 17 | |
| 18 | diff --git a/src/kexecboot.c b/src/kexecboot.c |
| 19 | index 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 | -- |
| 41 | 2.21.0 |
| 42 | |