Hello community, here is the log from the commit of package kexec-tools for openSUSE:Factory checked in at 2014-10-11 19:25:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kexec-tools (Old) and /work/SRC/openSUSE:Factory/.kexec-tools.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kexec-tools" Changes: -------- --- /work/SRC/openSUSE:Factory/kexec-tools/kexec-tools.changes 2014-08-28 10:01:54.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.kexec-tools.new/kexec-tools.changes 2014-10-11 19:25:09.000000000 +0200 @@ -1,0 +2,13 @@ +Thu Oct 9 16:38:05 UTC 2014 - [email protected] + +- Upgrade to kexec-2.0.8 +- Dropped patches (now upstream): + o kexec-tools-xen-e820-redefinition.patch + o kexec-tools-i386-bzimage_efi.patch + o kexec-tools-ppc64-purgatory-disabling-gcc-stack-protection.patch + o kexec-tools-zero-efi-info.patch + o kexec-tools-fs2dt-fix-endianess-issue-with-initrd-base-and-size.patch + o kexec-tools-ppc64-purgatory-device-tree-values-should-be-read-stored-in-big-endian.patch + o kexec-tools-kdump-fix-elf-header-endianess.patch + +------------------------------------------------------------------- Old: ---- kexec-tools-2.0.5.tar.xz kexec-tools-fs2dt-fix-endianess-issue-with-initrd-base-and-size.patch kexec-tools-i386-bzimage_efi.patch kexec-tools-kdump-fix-elf-header-endianess.patch kexec-tools-ppc64-purgatory-device-tree-values-should-be-read-stored-in-big-endian.patch kexec-tools-ppc64-purgatory-disabling-gcc-stack-protection.patch kexec-tools-xen-e820-redefinition.patch kexec-tools-zero-efi-info.patch New: ---- kexec-tools-2.0.8.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kexec-tools.spec ++++++ --- /var/tmp/diff_new_pack.JQPhFC/_old 2014-10-11 19:25:10.000000000 +0200 +++ /var/tmp/diff_new_pack.JQPhFC/_new 2014-10-11 19:25:10.000000000 +0200 @@ -26,7 +26,7 @@ Summary: Tools for fast kernel loading License: GPL-2.0+ Group: System/Kernel -Version: 2.0.5 +Version: 2.0.8 Release: 0 Source: ftp://kernel.org/pub/linux/utils/kernel/kexec/%{name}-%{version}.tar.xz Source1: kexec-bootloader @@ -37,14 +37,7 @@ Patch2: %{name}-xen-balloon-up.patch Patch3: %{name}-disable-test.patch Patch4: %{name}-enable-aarch64.patch -Patch5: %{name}-xen-e820-redefinition.patch Patch6: %{name}-enable-aarch64-fixup.patch -Patch7: %{name}-i386-bzimage_efi.patch -Patch8: %{name}-ppc64-purgatory-disabling-gcc-stack-protection.patch -Patch9: %{name}-zero-efi-info.patch -Patch10: %{name}-fs2dt-fix-endianess-issue-with-initrd-base-and-size.patch -Patch11: %{name}-ppc64-purgatory-device-tree-values-should-be-read-stored-in-big-endian.patch -Patch12: %{name}-kdump-fix-elf-header-endianess.patch Url: ftp://kernel.org/pub/linux/utils/kernel/kexec/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -70,14 +63,7 @@ %patch2 -p1 %patch3 -p1 %patch4 -p1 -%patch5 -p1 %patch6 -p1 -%patch7 -p1 -%patch8 -p1 -%patch9 -p1 -%patch10 -p1 -%patch11 -p1 -%patch12 -p1 %build # disable as-needed ++++++ kexec-tools-2.0.5.tar.xz -> kexec-tools-2.0.8.tar.xz ++++++ ++++ 5774 lines of diff (skipped) ++++++ kexec-tools-xen-balloon-up.patch ++++++ --- /var/tmp/diff_new_pack.JQPhFC/_old 2014-10-11 19:25:10.000000000 +0200 +++ /var/tmp/diff_new_pack.JQPhFC/_new 2014-10-11 19:25:10.000000000 +0200 @@ -179,15 +179,15 @@ unsigned long machine = elf_info->machine; --- a/kexec/kexec.c +++ b/kexec/kexec.c -@@ -1071,6 +1071,7 @@ int main(int argc, char *argv[]) +@@ -1173,6 +1173,7 @@ int main(int argc, char *argv[]) int do_shutdown = 1; int do_sync = 1; int do_ifdown = 0; + int do_balloon = 0; int do_unload = 0; int do_reuse_initrd = 0; - void *entry = 0; -@@ -1105,6 +1106,7 @@ int main(int argc, char *argv[]) + int do_kexec_file_syscall = 0; +@@ -1227,6 +1228,7 @@ int main(int argc, char *argv[]) do_shutdown = 0; do_sync = 1; do_ifdown = 1; @@ -195,7 +195,7 @@ do_exec = 1; break; case OPT_LOAD: -@@ -1123,6 +1125,7 @@ int main(int argc, char *argv[]) +@@ -1247,6 +1249,7 @@ int main(int argc, char *argv[]) do_shutdown = 0; do_sync = 1; do_ifdown = 1; @@ -203,7 +203,7 @@ do_exec = 1; break; case OPT_LOAD_JUMP_BACK_HELPER: -@@ -1246,6 +1249,9 @@ int main(int argc, char *argv[]) +@@ -1384,6 +1387,9 @@ int main(int argc, char *argv[]) if ((result == 0) && do_ifdown) { ifdown(); } @@ -215,7 +215,7 @@ } --- a/kexec/kexec.h +++ b/kexec/kexec.h -@@ -293,5 +293,6 @@ int xen_present(void); +@@ -305,5 +305,6 @@ int xen_present(void); int xen_kexec_load(struct kexec_info *info); int xen_kexec_unload(uint64_t kexec_flags); void xen_kexec_exec(void); -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
