OBS User unknown 2008-10-11 22:24:53 +00:00 committed by Git OBS Bridge
parent 4b4865cf54
commit 101579d4c5
5 changed files with 59 additions and 16 deletions

View File

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

View File

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

View File

@ -1,28 +1,28 @@
---
Makefile | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
Makefile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
--- a/Makefile
+++ b/Makefile
@@ -4,9 +4,9 @@ VERSION=1.2.9
DATE=5 September 2008
@@ -4,10 +4,10 @@ VERSION=1.3.0
DATE=10 October 2008
CC = gcc
-CFLAGS = -g -O2 -Wall -D_FILE_OFFSET_BITS=64 \
+CFLAGS = $(COPTFLAGS) -g -O2 -Wall -D_FILE_OFFSET_BITS=64 \
-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE \
-DVERSION='"$(VERSION)"' -DRELEASE_DATE='"$(DATE)"'
-CFLAGS_ARCH = -g -O2 -Wall -D_FILE_OFFSET_BITS=64
+CFLAGS_ARCH = $(COPTFLAGS) -g -O2 -Wall -D_FILE_OFFSET_BITS=64
-CFLAGS_ARCH = -g -O2 -Wall -D_FILE_OFFSET_BITS=64 \
+CFLAGS_ARCH = $(COPTFLAGS) -g -O2 -Wall -D_FILE_OFFSET_BITS=64 \
-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
ARCH := $(shell uname -m | sed -e s/i.86/x86/ -e s/sun4u/sparc64/ \
-e s/arm.*/arm/ -e s/sa110/arm/ \
@@ -30,8 +30,7 @@ $(OBJ_ARCH): $(SRC_ARCH)
@@ -32,7 +32,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
- zip ./makedumpfile.8.gz ./makedumpfile.8
+ $(CC) $(CFLAGS) $(OBJ_ARCH) -o $@ $< -Wl,-Bstatic -ldw -lelf -lz -Wl,-Bdynamic
+ $(CC) $(CFLAGS) $(OBJ_ARCH) -o $@ $< -Wl,-Bstatic -ldw -lelf -lz -Wl,-Bdynamic
gzip -c ./makedumpfile.8 > ./makedumpfile.8.gz
clean:
rm -f $(OBJ) $(OBJ_ARCH) makedumpfile makedumpfile.8.gz

View File

@ -1,3 +1,26 @@
-------------------------------------------------------------------
Sat Oct 11 19:11:56 CEST 2008 - bwalle@suse.de
- Update to 1.3.0
* features
o Support i386 CONFIG_VMSPLIT_1G kernel.
o Add compiling options for calling lseek64() surely.
o Use gzip for manpage compression.
* bug fixes
o Fix the buffer handling problem for reading struct page.
o Fix readmem to read each page.
o Don't write undefined values to disk.
o Fix memory leaks.
o Fix/Add error messages for debugging.
o Fix the type of file_offset.
o Fix the error handling of kvtop_xen().
o Fix the comment for some values in page.flags.
* Code Cleanup
o Cleanup: Separate xen's paddr_to_offset from linux's one.
o Cleanup: Use the existing macros in kvtop_xen_x86().
o Cleanup: Delete unnecessary description.
o Update copyright date.
-------------------------------------------------------------------
Tue Sep 09 10:29:53 CEST 2008 - bwalle@suse.de

View File

@ -1,5 +1,5 @@
#
# spec file for package makedumpfile (Version 1.2.9)
# spec file for package makedumpfile (Version 1.3.0)
#
# 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.9
Version: 1.3.0
Release: 1
Summary: Partial kernel dump
Group: System/Kernel
@ -67,6 +67,26 @@ install -c -m 0644 makedumpfile.8 $RPM_BUILD_ROOT%{_mandir}/man8
/bin/*
%changelog
* Sat Oct 11 2008 bwalle@suse.de
- Update to 1.3.0
* features
o Support i386 CONFIG_VMSPLIT_1G kernel.
o Add compiling options for calling lseek64() surely.
o Use gzip for manpage compression.
* bug fixes
o Fix the buffer handling problem for reading struct page.
o Fix readmem to read each page.
o Don't write undefined values to disk.
o Fix memory leaks.
o Fix/Add error messages for debugging.
o Fix the type of file_offset.
o Fix the error handling of kvtop_xen().
o Fix the comment for some values in page.flags.
* Code Cleanup
o Cleanup: Separate xen's paddr_to_offset from linux's one.
o Cleanup: Use the existing macros in kvtop_xen_x86().
o Cleanup: Delete unnecessary description.
o Update copyright date.
* Tue Sep 09 2008 bwalle@suse.de
- update to 1.2.9
* features