This commit is contained in:
parent
1f19f8cb50
commit
897f3c6633
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:0f2acdfebd3b4ffa506c164469ad9e194092891f834882e29a40ced058367a5d
|
|
||||||
size 36147
|
|
3
makedumpfile-1.1.5.tar.bz2
Normal file
3
makedumpfile-1.1.5.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0e45dd58a2fb7aa2bb0783b36f31d010d5aece43f36c2db9d0ca88089e78dbcb
|
||||||
|
size 42536
|
@ -1,23 +1,22 @@
|
|||||||
---
|
---
|
||||||
Makefile | 7 ++++---
|
Makefile | 6 +++---
|
||||||
1 file changed, 4 insertions(+), 3 deletions(-)
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
--- a/Makefile
|
--- a/Makefile
|
||||||
+++ b/Makefile
|
+++ b/Makefile
|
||||||
@@ -4,9 +4,10 @@ VERSION=1.1.3
|
@@ -4,9 +4,9 @@ VERSION=1.1.5
|
||||||
DATE=13 April 2007
|
DATE=27 July 2007
|
||||||
|
|
||||||
CC = gcc
|
CC = gcc
|
||||||
-CFLAGS = -g -O2 -Wall -D_FILE_OFFSET_BITS=64 \
|
-CFLAGS = -g -O2 -Wall -D_FILE_OFFSET_BITS=64 \
|
||||||
+COPTFLAGS = -g -O2 -Wall
|
+CFLAGS = $(COPTFLAGS) -g -O2 -Wall -D_FILE_OFFSET_BITS=64 \
|
||||||
+CFLAGS = $(COPTFLAGS) -D_FILE_OFFSET_BITS=64 \
|
|
||||||
-DVERSION='"$(VERSION)"' -DRELEASE_DATE='"$(DATE)"'
|
-DVERSION='"$(VERSION)"' -DRELEASE_DATE='"$(DATE)"'
|
||||||
-CFLAGS_ARCH = -g -O2 -Wall
|
-CFLAGS_ARCH = -g -O2 -Wall -D_FILE_OFFSET_BITS=64
|
||||||
+CFLAGS_ARCH = $(COPTFLAGS)
|
+CFLAGS_ARCH = $(COPTFLAGS) -g -O2 -Wall -D_FILE_OFFSET_BITS=64
|
||||||
|
|
||||||
ARCH := $(shell uname -m | sed -e s/i.86/x86/ -e s/sun4u/sparc64/ \
|
ARCH := $(shell uname -m | sed -e s/i.86/x86/ -e s/sun4u/sparc64/ \
|
||||||
-e s/arm.*/arm/ -e s/sa110/arm/ \
|
-e s/arm.*/arm/ -e s/sa110/arm/ \
|
||||||
@@ -30,7 +31,7 @@ $(OBJ_ARCH): $(SRC_ARCH)
|
@@ -30,7 +30,7 @@ $(OBJ_ARCH): $(SRC_ARCH)
|
||||||
$(CC) $(CFLAGS_ARCH) -c -o ./$@ ./$(@:.o=.c)
|
$(CC) $(CFLAGS_ARCH) -c -o ./$@ ./$(@:.o=.c)
|
||||||
|
|
||||||
makedumpfile: $(SRC) $(OBJ_ARCH)
|
makedumpfile: $(SRC) $(OBJ_ARCH)
|
||||||
|
@ -1,3 +1,18 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 27 11:25:53 CEST 2007 - bwalle@suse.de
|
||||||
|
|
||||||
|
- updated to 1.1.5
|
||||||
|
o new feature that allows extracting the part of xen hypervisor
|
||||||
|
and domain-0 from /proc/vmcore.
|
||||||
|
o new option '-f' to overwrite existing dumpfile
|
||||||
|
o new option '--message-level "message-level"'
|
||||||
|
o fix the problem that makedumpfile complains about overlapping
|
||||||
|
memory segments.
|
||||||
|
o Rename makedumpfile's config file to "vmcoreinfo file"
|
||||||
|
o Change the method for getting the kernel's OSRELEASE if
|
||||||
|
generating a vmcoreinfo file.
|
||||||
|
o Some cleanups
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 11 10:25:05 CEST 2007 - bwalle@suse.de
|
Mon Jun 11 10:25:05 CEST 2007 - bwalle@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package makedumpfile (Version 1.1.4)
|
# spec file for package makedumpfile (Version 1.1.5)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -13,8 +13,8 @@
|
|||||||
Name: makedumpfile
|
Name: makedumpfile
|
||||||
BuildRequires: gcc-c++ libdw-devel zlib-devel
|
BuildRequires: gcc-c++ libdw-devel zlib-devel
|
||||||
%define elfutils_version 0.124
|
%define elfutils_version 0.124
|
||||||
License: GNU General Public License (GPL)
|
License: GPL v2 or later
|
||||||
Version: 1.1.4
|
Version: 1.1.5
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: Partial kernel dump
|
Summary: Partial kernel dump
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
@ -59,6 +59,18 @@ install -c -m 0644 makedumpfile.8 $RPM_BUILD_ROOT%{_mandir}/man8
|
|||||||
/bin/*
|
/bin/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Jul 27 2007 - bwalle@suse.de
|
||||||
|
- updated to 1.1.5
|
||||||
|
o new feature that allows extracting the part of xen hypervisor
|
||||||
|
and domain-0 from /proc/vmcore.
|
||||||
|
o new option '-f' to overwrite existing dumpfile
|
||||||
|
o new option '--message-level "message-level"'
|
||||||
|
o fix the problem that makedumpfile complains about overlapping
|
||||||
|
memory segments.
|
||||||
|
o Rename makedumpfile's config file to "vmcoreinfo file"
|
||||||
|
o Change the method for getting the kernel's OSRELEASE if
|
||||||
|
generating a vmcoreinfo file.
|
||||||
|
o Some cleanups
|
||||||
* Mon Jun 11 2007 - bwalle@suse.de
|
* Mon Jun 11 2007 - bwalle@suse.de
|
||||||
- updated to 1.1.4
|
- updated to 1.1.4
|
||||||
o Add ia64 DISCONTIGMEM support.
|
o Add ia64 DISCONTIGMEM support.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user