From 4b4865cf5457605af92b478f370096ffe0c537eaeaab6e0b40caaa9dd69b9f64 Mon Sep 17 00:00:00 2001 From: OBS User unknown Date: Tue, 9 Sep 2008 20:14:10 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/makedumpfile?expand=0&rev=21 --- makedumpfile-1.2.8.tar.bz2 | 3 --- makedumpfile-1.2.9.tar.bz2 | 3 +++ makedumpfile-coptflags.diff | 13 +++++++------ makedumpfile.changes | 30 ++++++++++++++++++++++++++++++ makedumpfile.spec | 33 ++++++++++++++++++++++++++++++--- 5 files changed, 70 insertions(+), 12 deletions(-) delete mode 100644 makedumpfile-1.2.8.tar.bz2 create mode 100644 makedumpfile-1.2.9.tar.bz2 diff --git a/makedumpfile-1.2.8.tar.bz2 b/makedumpfile-1.2.8.tar.bz2 deleted file mode 100644 index 7c42887..0000000 --- a/makedumpfile-1.2.8.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d5c013bc1245bf26babebee23340f413b69cbc154f118df027408400e6c07968 -size 48655 diff --git a/makedumpfile-1.2.9.tar.bz2 b/makedumpfile-1.2.9.tar.bz2 new file mode 100644 index 0000000..c7644c7 --- /dev/null +++ b/makedumpfile-1.2.9.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ee793304f1b9e0e990d9840c8b27893218d8019b47cfab6b4b2b35ce6445368 +size 49385 diff --git a/makedumpfile-coptflags.diff b/makedumpfile-coptflags.diff index 7a09f0d..7e6f46f 100644 --- a/makedumpfile-coptflags.diff +++ b/makedumpfile-coptflags.diff @@ -1,11 +1,11 @@ --- - Makefile | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) + Makefile | 7 +++---- + 1 file changed, 3 insertions(+), 4 deletions(-) --- a/Makefile +++ b/Makefile -@@ -4,9 +4,9 @@ VERSION=1.1.5 - DATE=27 July 2007 +@@ -4,9 +4,9 @@ VERSION=1.2.9 + DATE=5 September 2008 CC = gcc -CFLAGS = -g -O2 -Wall -D_FILE_OFFSET_BITS=64 \ @@ -16,12 +16,13 @@ ARCH := $(shell uname -m | sed -e s/i.86/x86/ -e s/sun4u/sparc64/ \ -e s/arm.*/arm/ -e s/sa110/arm/ \ -@@ -30,7 +30,7 @@ $(OBJ_ARCH): $(SRC_ARCH) +@@ -30,8 +30,7 @@ $(OBJ_ARCH): $(SRC_ARCH) $(CC) $(CFLAGS_ARCH) -c -o ./$@ ./$(@:.o=.c) makedumpfile: $(SRC) $(OBJ_ARCH) - $(CC) $(CFLAGS) $(OBJ_ARCH) -o $@ $< -static -ldw -lelf -lz -+ $(CC) $(CFLAGS) $(OBJ_ARCH) -o $@ $< -Wl,-Bstatic -ldw -lelf -lz -Wl,-Bdynamic +- zip ./makedumpfile.8.gz ./makedumpfile.8 ++ $(CC) $(CFLAGS) $(OBJ_ARCH) -o $@ $< -Wl,-Bstatic -ldw -lelf -lz -Wl,-Bdynamic clean: rm -f $(OBJ) $(OBJ_ARCH) makedumpfile makedumpfile.8.gz diff --git a/makedumpfile.changes b/makedumpfile.changes index 1bfc1b9..87deffc 100644 --- a/makedumpfile.changes +++ b/makedumpfile.changes @@ -1,3 +1,33 @@ +------------------------------------------------------------------- +Tue Sep 09 10:29:53 CEST 2008 - bwalle@suse.de + +- update to 1.2.9 + * features + o Support ia64 discontigmem kernels of linux-2.6.20+. + o Support x86_64 linux-2.6.27 kernel. + o Add makedumpfile's spec file. + o Add "--vtop" option for debugging. + o Add the debugging message for ia64 pgtable. + o Get information from vmcoreinfo of /proc/vmcore even if + -x/-i option. + * bug fixes + o Add free() for error handling. + o Fix NOT_FOUND value of SIZE(nodemask_t). + * code cleanup + o Use the terminal sizes of 80 for the IMPLEMENTATION file. + o Use static allocation instead of malloc(). + o Add get_num_dumpable() function. + o Remove the unused pointer. + o Remove the unused code. + o Make the ELF methods simple. + o Merge the same code in write_elf_pages(). + o Add "void" to some arguments. + o Separate the dependency code to machine and linux version. + o Cleanup vaddr_to_paddr() function. +- Remove new compression command for the manual page in the + Makefile because we use gzip, not zip, and Autobuild does the + compression automatically. + ------------------------------------------------------------------- Tue Aug 12 09:55:20 CEST 2008 - bwalle@suse.de diff --git a/makedumpfile.spec b/makedumpfile.spec index a5aa45e..aacd48e 100644 --- a/makedumpfile.spec +++ b/makedumpfile.spec @@ -1,5 +1,5 @@ # -# spec file for package makedumpfile (Version 1.2.8) +# spec file for package makedumpfile (Version 1.2.9) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -22,7 +22,7 @@ Name: makedumpfile BuildRequires: gcc-c++ libdw-devel libdw1 libelf-devel libelf0 libelf1 zlib-devel %define elfutils_version 0.124 License: GPL v2 or later -Version: 1.2.8 +Version: 1.2.9 Release: 1 Summary: Partial kernel dump Group: System/Kernel @@ -44,7 +44,7 @@ Authors: NEC Corporation %prep -%setup -n makedumpfile -q +%setup -q %patch -p1 %build @@ -67,6 +67,33 @@ install -c -m 0644 makedumpfile.8 $RPM_BUILD_ROOT%{_mandir}/man8 /bin/* %changelog +* Tue Sep 09 2008 bwalle@suse.de +- update to 1.2.9 + * features + o Support ia64 discontigmem kernels of linux-2.6.20+. + o Support x86_64 linux-2.6.27 kernel. + o Add makedumpfile's spec file. + o Add "--vtop" option for debugging. + o Add the debugging message for ia64 pgtable. + o Get information from vmcoreinfo of /proc/vmcore even if + -x/-i option. + * bug fixes + o Add free() for error handling. + o Fix NOT_FOUND value of SIZE(nodemask_t). + * code cleanup + o Use the terminal sizes of 80 for the IMPLEMENTATION file. + o Use static allocation instead of malloc(). + o Add get_num_dumpable() function. + o Remove the unused pointer. + o Remove the unused code. + o Make the ELF methods simple. + o Merge the same code in write_elf_pages(). + o Add "void" to some arguments. + o Separate the dependency code to machine and linux version. + o Cleanup vaddr_to_paddr() function. +- Remove new compression command for the manual page in the + Makefile because we use gzip, not zip, and Autobuild does the + compression automatically. * Tue Aug 12 2008 bwalle@suse.de - update to 1.2.8 * Add the IMPLEMENTATION file for the kdump-compressed format.