diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 02:56:36 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 02:56:36 +0000 |
commit | 35882cfa5f40cc40acd5ae65ced3e90fbf3cb74c (patch) | |
tree | 37c5bf1d95396a5b4d091502db8e959bf24b64a3 /debian/patches/coldreboot.patch | |
parent | Adding upstream version 1:2.0.27. (diff) | |
download | kexec-tools-35882cfa5f40cc40acd5ae65ced3e90fbf3cb74c.tar.xz kexec-tools-35882cfa5f40cc40acd5ae65ced3e90fbf3cb74c.zip |
Adding debian version 1:2.0.27-1.debian/1%2.0.27-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/coldreboot.patch')
-rw-r--r-- | debian/patches/coldreboot.patch | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/debian/patches/coldreboot.patch b/debian/patches/coldreboot.patch new file mode 100644 index 0000000..8408116 --- /dev/null +++ b/debian/patches/coldreboot.patch @@ -0,0 +1,88 @@ +--- a/Makefile.in ++++ b/Makefile.in +@@ -183,9 +183,11 @@ + PGSRCS:=$(foreach s, $(GENERATED_SRCS), $(PACKAGE_NAME)-$(PACKAGE_VERSION)/$(s)) + + MAN_PAGES:=$(KEXEC_MANPAGE) $(VMCORE_DMESG_MANPAGE) ++MAN_PAGES+=$(MANDIR)/man8/coldreboot.8 + BINARIES_i386:=$(KEXEC_TEST) + BINARIES_x86_64:=$(KEXEC_TEST) + BINARIES:=$(KEXEC) $(VMCORE_DMESG) $(BINARIES_$(ARCH)) ++SCRIPTS:=$(SBINDIR)/coldreboot + + UNINSTALL_KDUMP = $(sbindir)/kdump + UNINSTALL_KDUMP_MANPAGE = $(mandir)/man8/kdump.8 +@@ -195,7 +197,7 @@ + UNINSTALL_VMCORE_DMESG = $(sbindir)/vmcore-dmesg + UNINSTALL_VMCORE_DMESG_MANPAGE = $(mandir)/man8/vmcore-dmesg.8 + +-TARGETS:=$(BINARIES) $(MAN_PAGES) ++TARGETS:=$(BINARIES) $(MAN_PAGES) $(SCRIPTS) + targets: $(TARGETS) + + UNINSTALL_TARGETS_i386:=$(UNINSTALL_KEXEC_TEST) +--- a/kexec/Makefile ++++ b/kexec/Makefile +@@ -105,6 +105,8 @@ + + KEXEC = $(SBINDIR)/kexec + KEXEC_MANPAGE = $(MANDIR)/man8/kexec.8 ++KEXEC_COLDREBOOT=$(SBINDIR)/coldreboot ++KEXEC_COLDREBOOT_MANPAGE=$(MANDIR)/man8/coldreboot.8 + + -include $(KEXEC_DEPS) + +@@ -119,6 +121,16 @@ + $(KEXEC_MANPAGE): kexec/kexec.8 + @$(MKDIR) -p $(MANDIR)/man8 + cp $^ $(KEXEC_MANPAGE) ++ ++$(KEXEC_COLDREBOOT): kexec/coldreboot ++ @$(MKDIR) -p $(@D) ++ cp kexec/coldreboot $(KEXEC_COLDREBOOT) ++ /bin/chmod 755 $(KEXEC_COLDREBOOT) ++ ++$(KEXEC_COLDREBOOT_MANPAGE): kexec/coldreboot.8 ++ @$(MKDIR) -p $(MANDIR)/man8 ++ cp kexec/coldreboot.8 $(KEXEC_COLDREBOOT_MANPAGE) ++ + echo:: + @echo "KEXEC_SRCS $(KEXEC_SRCS)" + @echo "KEXEC_DEPS $(KEXEC_DEPS)" +--- /dev/null ++++ b/kexec/coldreboot +@@ -0,0 +1,6 @@ ++#!/bin/sh ++NOKEXECFILE=/no-kexec-reboot ++ ++/bin/rm -f $NOKEXECFILE ++touch $NOKEXECFILE ++/sbin/reboot $* +--- /dev/null ++++ b/kexec/coldreboot.8 +@@ -0,0 +1,25 @@ ++.\" Process this file with ++.\" groff -man -Tascii coldreboot.8 ++.\" ++.TH kexec 8 "April 2006" Linux "User Manuals" ++.SH NAME ++coldreboot \- Force a cold reboot bypassing kexec-tools default ++.SH SYNOPSIS ++.B /sbin/coldreboot ++.B [reboot options] ++ ++.SH DESCRIPTION ++.B coldreboot ++is a script that forces a cold reboot regardless of whether kexec is enabled ++or not in /etc/default/kexec. ++.B coldreboot ++takes the same arguments as /sbin/reboot and passes them on to /sbin/reboot ++later. ++ ++.SH NOTES ++.PP ++.B coldreboot ++prevents a kexec kernel from being loaded automatically and thus ++forces a cold reboot. If the user loads a kexec kernel by hand, ++.B coldreboot ++will still result in a kexec reboot. |