OBS User unknown 2007-07-27 11:02:44 +00:00 committed by Git OBS Bridge
parent 1f19f8cb50
commit 897f3c6633
5 changed files with 41 additions and 15 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0f2acdfebd3b4ffa506c164469ad9e194092891f834882e29a40ced058367a5d
size 36147

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0e45dd58a2fb7aa2bb0783b36f31d010d5aece43f36c2db9d0ca88089e78dbcb
size 42536

View File

@ -1,23 +1,22 @@
---
Makefile | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
Makefile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
--- a/Makefile
+++ b/Makefile
@@ -4,9 +4,10 @@ VERSION=1.1.3
DATE=13 April 2007
@@ -4,9 +4,9 @@ VERSION=1.1.5
DATE=27 July 2007
CC = gcc
-CFLAGS = -g -O2 -Wall -D_FILE_OFFSET_BITS=64 \
+COPTFLAGS = -g -O2 -Wall
+CFLAGS = $(COPTFLAGS) -D_FILE_OFFSET_BITS=64 \
+CFLAGS = $(COPTFLAGS) -g -O2 -Wall -D_FILE_OFFSET_BITS=64 \
-DVERSION='"$(VERSION)"' -DRELEASE_DATE='"$(DATE)"'
-CFLAGS_ARCH = -g -O2 -Wall
+CFLAGS_ARCH = $(COPTFLAGS)
-CFLAGS_ARCH = -g -O2 -Wall -D_FILE_OFFSET_BITS=64
+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/ \
-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)
makedumpfile: $(SRC) $(OBJ_ARCH)

View File

@ -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

View File

@ -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.
# This file and all modifications and additions to the pristine
@ -13,8 +13,8 @@
Name: makedumpfile
BuildRequires: gcc-c++ libdw-devel zlib-devel
%define elfutils_version 0.124
License: GNU General Public License (GPL)
Version: 1.1.4
License: GPL v2 or later
Version: 1.1.5
Release: 1
Summary: Partial kernel dump
Group: System/Kernel
@ -59,6 +59,18 @@ install -c -m 0644 makedumpfile.8 $RPM_BUILD_ROOT%{_mandir}/man8
/bin/*
%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
- updated to 1.1.4
o Add ia64 DISCONTIGMEM support.