diff options
4 files changed, 57 insertions, 1 deletions
diff --git a/meta-initramfs/recipes-bsp/kexecboot/files/0001-kexecboot-Use-new-reboot-API-with-klibc.patch b/meta-initramfs/recipes-bsp/kexecboot/files/0001-kexecboot-Use-new-reboot-API-with-klibc.patch new file mode 100644 index 0000000000..52d622a2f8 --- /dev/null +++ b/meta-initramfs/recipes-bsp/kexecboot/files/0001-kexecboot-Use-new-reboot-API-with-klibc.patch | |||
| @@ -0,0 +1,42 @@ | |||
| 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 | |||
diff --git a/meta-initramfs/recipes-bsp/kexecboot/kexecboot_git.bb b/meta-initramfs/recipes-bsp/kexecboot/kexecboot_git.bb index 61210e7680..4b20e1ed9a 100644 --- a/meta-initramfs/recipes-bsp/kexecboot/kexecboot_git.bb +++ b/meta-initramfs/recipes-bsp/kexecboot/kexecboot_git.bb | |||
| @@ -6,6 +6,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | |||
| 6 | PV = "0.6+git${SRCPV}" | 6 | PV = "0.6+git${SRCPV}" |
| 7 | S = "${WORKDIR}/git" | 7 | S = "${WORKDIR}/git" |
| 8 | SRC_URI = "git://github.com/kexecboot/kexecboot.git" | 8 | SRC_URI = "git://github.com/kexecboot/kexecboot.git" |
| 9 | SRC_URI_append_libc-klibc = " file://0001-kexecboot-Use-new-reboot-API-with-klibc.patch " | ||
| 10 | |||
| 9 | SRCREV = "7409a1e0aaea61af87c4eca0149cec18a9f58ab6" | 11 | SRCREV = "7409a1e0aaea61af87c4eca0149cec18a9f58ab6" |
| 10 | inherit autotools | 12 | inherit autotools |
| 11 | 13 | ||
diff --git a/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc/klibc-reboot.patch b/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc/klibc-reboot.patch new file mode 100644 index 0000000000..be1301df68 --- /dev/null +++ b/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc/klibc-reboot.patch | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | --- a/kexec/kexec.c | ||
| 2 | +++ b/kexec/kexec.c | ||
| 3 | @@ -901,7 +901,7 @@ static int my_exec(void) | ||
| 4 | if (xen_present()) | ||
| 5 | xen_kexec_exec(); | ||
| 6 | else | ||
| 7 | - reboot(LINUX_REBOOT_CMD_KEXEC); | ||
| 8 | + reboot(LINUX_REBOOT_CMD_KEXEC, NULL); | ||
| 9 | /* I have failed if I make it here */ | ||
| 10 | fprintf(stderr, "kexec failed: %s\n", | ||
| 11 | strerror(errno)); | ||
diff --git a/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc_git.bb b/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc_git.bb index ebf5ff5ae4..7ad55d8b8c 100644 --- a/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc_git.bb +++ b/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc_git.bb | |||
| @@ -31,7 +31,8 @@ KLIBC_PATCHES += " \ | |||
| 31 | file://0012-purgatory-string.c-avoid-inclusion-of-string.h.patch \ | 31 | file://0012-purgatory-string.c-avoid-inclusion-of-string.h.patch \ |
| 32 | file://0013-sha256.h-avoid-inclusion-of-sys-types.h.patch \ | 32 | file://0013-sha256.h-avoid-inclusion-of-sys-types.h.patch \ |
| 33 | file://0014-add-if_nameindex-from-musl.patch \ | 33 | file://0014-add-if_nameindex-from-musl.patch \ |
| 34 | file://0015-vmcore-dmesg-fix-warning.patch" | 34 | file://0015-vmcore-dmesg-fix-warning.patch \ |
| 35 | file://klibc-reboot.patch" | ||
| 35 | 36 | ||
| 36 | WARNING_FIXES = "" | 37 | WARNING_FIXES = "" |
| 37 | FROM_OE_CORE = "file://arm_crashdump-fix-buffer-align.patch \ | 38 | FROM_OE_CORE = "file://arm_crashdump-fix-buffer-align.patch \ |
