This commit is contained in:
parent
449fc248c4
commit
4b4865cf54
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d5c013bc1245bf26babebee23340f413b69cbc154f118df027408400e6c07968
|
||||
size 48655
|
3
makedumpfile-1.2.9.tar.bz2
Normal file
3
makedumpfile-1.2.9.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3ee793304f1b9e0e990d9840c8b27893218d8019b47cfab6b4b2b35ce6445368
|
||||
size 49385
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user