OBS User unknown 2007-02-11 10:45:30 +00:00 committed by Git OBS Bridge
parent df776890da
commit 39c561f3dd
3 changed files with 42 additions and 3 deletions

31
kexec-help.diff Normal file
View File

@ -0,0 +1,31 @@
--- kexec/kexec.c
+++ kexec/kexec.c
@@ -733,22 +733,22 @@
"\n"
" -h, --help Print this help.\n"
" -v, --version Print the version of kexec.\n"
- " -f, --force Force an immediate kexec,"
+ " -f, --force Force an immediate kexec,\n"
" don't call shutdown.\n"
" -x, --no-ifdown Don't bring down network interfaces.\n"
- " (if used, must be last option"
+ " (if used, must be last option\n"
" specified)\n"
- " -l, --load Load the new kernel into the"
+ " -l, --load Load the new kernel into the\n"
" current kernel.\n"
" -p, --load-panic Load the new kernel for use on panic.\n"
" -u, --unload Unload the current kexec target kernel.\n"
- " If capture kernel is being unloaded"
+ " If capture kernel is being unloaded\n"
" specify -p with -u.\n"
" -e, --exec Execute a currently loaded kernel.\n"
" -t, --type=TYPE Specify the new kernel is of this type.\n"
- " --mem-min=<addr> Specify the lowest memory address to"
+ " --mem-min=<addr> Specify the lowest memory address to\n"
" load code into.\n"
- " --mem-max=<addr> Specify the highest memory address to"
+ " --mem-max=<addr> Specify the highest memory address to\n"
" load code into.\n"
"\n"
"Supported kernel file types and options: \n");

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Sat Feb 10 10:49:31 CET 2007 - schwab@suse.de
- Fix help string.
-------------------------------------------------------------------
Fri Feb 9 13:34:41 CET 2007 - bwalle@suse.de

View File

@ -19,7 +19,7 @@ Requires: %insserv_prereq %fillup_prereq
Autoreqprov: on
Summary: Tools for fast kernel loading
Version: 1.101
Release: 71
Release: 73
Source: %{name}-%{package_version}.tar.bz2
Source1: kdump
Source2: sysconfig.kdump
@ -28,6 +28,7 @@ Source4: gdb-kdump
Source5: README.SUSE
Source6: kdump-helper-%{helperversion}.tar.bz2
Patch1: kexec-longer-cmdline.diff
Patch2: kexec-help.diff
URL: http://www.xmission.com/~ebiederm/files/kexec/
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: libelf
@ -50,9 +51,9 @@ Authors:
Tim Deegan <tjd21@cl.cam.ac.uk>
%prep
%setup -b 6 -q -n kdump-helper-%{helperversion}
%setup -q -n kexec-tools
%setup -q -n kexec-tools -b 6
%patch1 -p1
%patch2
%{?suse_update_config -f}
cp %{SOURCE5} .
@ -122,6 +123,8 @@ true # ignore errors
%{_sbindir}/kdump-helper
%changelog -n kexec-tools
* Sat Feb 10 2007 - schwab@suse.de
- Fix help string.
* Fri Feb 09 2007 - bwalle@suse.de
- fixed overflow error that prints the size from being printed
correctly if the size doesn't fit into an int (#243058)