Package: kexec-tools / 1:2.0.3-1+deb7u1

Metadata

Package Version Patches format
kexec-tools 1:2.0.3-1+deb7u1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
debianize.patch | (download)

Makefile.in | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

---
crashdump_warning.patch | (download)

kexec/arch/i386/crashdump-x86.c | 10 6 + 4 - 0 !
kexec/kexec.c | 18 14 + 4 - 0 !
kexec/kexec.h | 6 6 + 0 - 0 !
3 files changed, 26 insertions(+), 8 deletions(-)

---
static_binary_warning.patch | (download)

kexec_test/Makefile | 3 2 + 1 - 0 !
1 file changed, 2 insertions(+), 1 deletion(-)

---
distclean_fix.patch | (download)

Makefile.in | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

---
update_kexec_manpage.patch | (download)

kexec/kexec.8 | 6 3 + 3 - 0 !
1 file changed, 3 insertions(+), 3 deletions(-)

---
add_debian_readme.patch | (download)

README.debian | 11 11 + 0 - 0 !
1 file changed, 11 insertions(+)

---
coldreboot.patch | (download)

Makefile.in | 4 3 + 1 - 0 !
kexec/Makefile | 12 12 + 0 - 0 !
kexec/coldreboot | 6 6 + 0 - 0 !
kexec/coldreboot.8 | 25 25 + 0 - 0 !
4 files changed, 46 insertions(+), 1 deletion(-)

---
linker option.patch | (download)

purgatory/Makefile | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

---
kexec p fails to load kernels with version x.y.patch | (download)

kexec/kernel_version.c | 21 10 + 11 - 0 !
1 file changed, 10 insertions(+), 11 deletions(-)

 kexec -p fails on kernel versions of form x.y
 "kexec -p" fails to load kernels with version of the form x.y instead of
 x.y.z with an error message similar to "Unsupported utsname.release:
 3.10-1-amd64". Code in kernel_version() also checks the wrong variable
 name for error return value from strtoul() for "minor" and "patch" and
 hence possibly missing a real error.

 This patch fixes both of these problems.