1
0
forked from pool/kernel-source
OBS User unknown 2009-03-13 12:36:08 +00:00 committed by Git OBS Bridge
parent da7b43e50a
commit d5adfd6232
35 changed files with 761 additions and 124 deletions

View File

@ -1,3 +1,3 @@
2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7310aa00821c5845a2b27a7e4ec9ac0bc39de5ab3192e12c9430c9a4de359c9b
size 184992
oid sha256:b48dffceb0fda7a8b9f11f7b93864e1967c19521d4906267af08321ca7484d95
size 184993

View File

@ -1,7 +1,7 @@
#! /bin/sh
prefix=rc7.
suffix=
commit=ec5a2ef5
commit=5518decb
[ -n "$suffix" ] || suffix=$2
while [ "$suffix" != "${suffix#[^0-9]*.}" ]; do
suffix=${suffix#[^0-9]*.}

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
-------------------------------------------------------------------
Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
-------------------------------------------------------------------
Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
-------------------------------------------------------------------
Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
-------------------------------------------------------------------
Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
-------------------------------------------------------------------
Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz

View File

@ -57,13 +57,13 @@
%if %build_vanilla || %build_kdump || %CONFIG_MODULES != "y"
%define split_packages 0
%else
%define split_packages 1
%define split_packages 0%{expand:%(test -n "$(%_sourcedir/guards %symbols base < %_sourcedir/supported.conf)" && echo 1)}
%endif
Name: kernel-debug
Summary: A Debug Version of the Kernel
Version: 2.6.29
Release: 3
Release: 4
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -213,8 +213,8 @@ Only use this kernel when investigating problems.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%prep
@ -730,8 +730,8 @@ This package contains only the base modules, required in all installs.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun base -f preun-base.sh
@ -773,8 +773,8 @@ This package contains additional modules not supported by Novell.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun extra -f preun-extra.sh
@ -802,8 +802,8 @@ Only use this kernel when investigating problems.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%files -n kernel-debug-man
@ -812,6 +812,25 @@ GIT Branch: master
%endif
%changelog
* Thu Mar 12 2009 jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
* Thu Mar 12 2009 jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
* Thu Mar 12 2009 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
* Thu Mar 12 2009 rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
* Wed Mar 11 2009 jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
* Mon Mar 09 2009 mmarek@suse.cz
- rpm/kernel-binary.spec.in: renamed modprobe config to
/etc/modprobe.d/50-module-renames.conf (required by new

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
-------------------------------------------------------------------
Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
-------------------------------------------------------------------
Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
-------------------------------------------------------------------
Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
-------------------------------------------------------------------
Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
-------------------------------------------------------------------
Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz

View File

@ -57,13 +57,13 @@
%if %build_vanilla || %build_kdump || %CONFIG_MODULES != "y"
%define split_packages 0
%else
%define split_packages 1
%define split_packages 0%{expand:%(test -n "$(%_sourcedir/guards %symbols base < %_sourcedir/supported.conf)" && echo 1)}
%endif
Name: kernel-default
Summary: The Standard Kernel
Version: 2.6.29
Release: 3
Release: 4
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -228,8 +228,8 @@ The standard kernel for both uniprocessor and multiprocessor systems.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%prep
@ -744,8 +744,8 @@ This package contains only the base modules, required in all installs.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun base -f preun-base.sh
@ -786,8 +786,8 @@ This package contains additional modules not supported by Novell.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun extra -f preun-extra.sh
@ -814,8 +814,8 @@ The standard kernel for both uniprocessor and multiprocessor systems.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%files -n kernel-default-man
@ -824,6 +824,25 @@ GIT Branch: master
%endif
%changelog
* Thu Mar 12 2009 jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
* Thu Mar 12 2009 jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
* Thu Mar 12 2009 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
* Thu Mar 12 2009 rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
* Wed Mar 11 2009 jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
* Mon Mar 09 2009 mmarek@suse.cz
- rpm/kernel-binary.spec.in: renamed modprobe config to
/etc/modprobe.d/50-module-renames.conf (required by new

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
-------------------------------------------------------------------
Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
-------------------------------------------------------------------
Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
-------------------------------------------------------------------
Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
-------------------------------------------------------------------
Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
-------------------------------------------------------------------
Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz

View File

@ -57,13 +57,13 @@
%if %build_vanilla || %build_kdump || %CONFIG_MODULES != "y"
%define split_packages 0
%else
%define split_packages 1
%define split_packages 0%{expand:%(test -n "$(%_sourcedir/guards %symbols base < %_sourcedir/supported.conf)" && echo 1)}
%endif
Name: kernel-kdump
Summary: kernel for kdump
Version: 2.6.29
Release: 3
Release: 4
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -209,8 +209,8 @@ crashed kernel.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%prep
@ -728,8 +728,8 @@ This package contains only the base modules, required in all installs.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun base -f preun-base.sh
@ -773,8 +773,8 @@ This package contains additional modules not supported by Novell.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun extra -f preun-extra.sh
@ -804,8 +804,8 @@ crashed kernel.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%files -n kernel-kdump-man
@ -814,6 +814,25 @@ GIT Branch: master
%endif
%changelog
* Thu Mar 12 2009 jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
* Thu Mar 12 2009 jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
* Thu Mar 12 2009 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
* Thu Mar 12 2009 rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
* Wed Mar 11 2009 jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
* Mon Mar 09 2009 mmarek@suse.cz
- rpm/kernel-binary.spec.in: renamed modprobe config to
/etc/modprobe.d/50-module-renames.conf (required by new

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
-------------------------------------------------------------------
Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
-------------------------------------------------------------------
Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
-------------------------------------------------------------------
Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
-------------------------------------------------------------------
Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
-------------------------------------------------------------------
Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz

View File

@ -57,13 +57,13 @@
%if %build_vanilla || %build_kdump || %CONFIG_MODULES != "y"
%define split_packages 0
%else
%define split_packages 1
%define split_packages 0%{expand:%(test -n "$(%_sourcedir/guards %symbols base < %_sourcedir/supported.conf)" && echo 1)}
%endif
Name: kernel-pae
Summary: Kernel with PAE Support
Version: 2.6.29
Release: 3
Release: 4
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -210,8 +210,8 @@ that support it, regardless of the amount of main memory.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%prep
@ -733,8 +733,8 @@ This package contains only the base modules, required in all installs.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun base -f preun-base.sh
@ -782,8 +782,8 @@ This package contains additional modules not supported by Novell.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun extra -f preun-extra.sh
@ -817,8 +817,8 @@ that support it, regardless of the amount of main memory.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%files -n kernel-pae-man
@ -827,6 +827,25 @@ GIT Branch: master
%endif
%changelog
* Thu Mar 12 2009 jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
* Thu Mar 12 2009 jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
* Thu Mar 12 2009 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
* Thu Mar 12 2009 rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
* Wed Mar 11 2009 jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
* Mon Mar 09 2009 mmarek@suse.cz
- rpm/kernel-binary.spec.in: renamed modprobe config to
/etc/modprobe.d/50-module-renames.conf (required by new

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
-------------------------------------------------------------------
Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
-------------------------------------------------------------------
Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
-------------------------------------------------------------------
Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
-------------------------------------------------------------------
Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
-------------------------------------------------------------------
Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz

View File

@ -57,13 +57,13 @@
%if %build_vanilla || %build_kdump || %CONFIG_MODULES != "y"
%define split_packages 0
%else
%define split_packages 1
%define split_packages 0%{expand:%(test -n "$(%_sourcedir/guards %symbols base < %_sourcedir/supported.conf)" && echo 1)}
%endif
Name: kernel-ppc64
Summary: Kernel for ppc64 Systems
Version: 2.6.29
Release: 3
Release: 4
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -222,8 +222,8 @@ Authors:
Tom Gall <tom_gall@vnet.ibm.com>
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%prep
@ -752,8 +752,8 @@ Authors:
Tom Gall <tom_gall@vnet.ibm.com>
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun base -f preun-base.sh
@ -808,8 +808,8 @@ Authors:
Tom Gall <tom_gall@vnet.ibm.com>
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun extra -f preun-extra.sh
@ -850,8 +850,8 @@ Authors:
Tom Gall <tom_gall@vnet.ibm.com>
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%files -n kernel-ppc64-man
@ -860,6 +860,25 @@ GIT Branch: master
%endif
%changelog
* Thu Mar 12 2009 jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
* Thu Mar 12 2009 jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
* Thu Mar 12 2009 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
* Thu Mar 12 2009 rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
* Wed Mar 11 2009 jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
* Mon Mar 09 2009 mmarek@suse.cz
- rpm/kernel-binary.spec.in: renamed modprobe config to
/etc/modprobe.d/50-module-renames.conf (required by new

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
-------------------------------------------------------------------
Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
-------------------------------------------------------------------
Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
-------------------------------------------------------------------
Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
-------------------------------------------------------------------
Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
-------------------------------------------------------------------
Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz

View File

@ -57,13 +57,13 @@
%if %build_vanilla || %build_kdump || %CONFIG_MODULES != "y"
%define split_packages 0
%else
%define split_packages 1
%define split_packages 0%{expand:%(test -n "$(%_sourcedir/guards %symbols base < %_sourcedir/supported.conf)" && echo 1)}
%endif
Name: kernel-ps3
Summary: kernel for ps3 bootloader
Version: 2.6.29
Release: 3
Release: 4
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -204,8 +204,8 @@ final system.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%prep
@ -720,8 +720,8 @@ needs to be as small as possible.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun base -f preun-base.sh
@ -762,8 +762,8 @@ needs to be as small as possible.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun extra -f preun-extra.sh
@ -793,8 +793,8 @@ final system.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%files -n kernel-ps3-man
@ -803,6 +803,25 @@ GIT Branch: master
%endif
%changelog
* Thu Mar 12 2009 jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
* Thu Mar 12 2009 jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
* Thu Mar 12 2009 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
* Thu Mar 12 2009 rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
* Wed Mar 11 2009 jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
* Mon Mar 09 2009 mmarek@suse.cz
- rpm/kernel-binary.spec.in: renamed modprobe config to
/etc/modprobe.d/50-module-renames.conf (required by new

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
-------------------------------------------------------------------
Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
-------------------------------------------------------------------
Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
-------------------------------------------------------------------
Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
-------------------------------------------------------------------
Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
-------------------------------------------------------------------
Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz

View File

@ -57,13 +57,13 @@
%if %build_vanilla || %build_kdump || %CONFIG_MODULES != "y"
%define split_packages 0
%else
%define split_packages 1
%define split_packages 0%{expand:%(test -n "$(%_sourcedir/guards %symbols base < %_sourcedir/supported.conf)" && echo 1)}
%endif
Name: kernel-s390
Summary: The Standard Kernel
Version: 2.6.29
Release: 3
Release: 4
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -203,8 +203,8 @@ The standard kernel.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%prep
@ -719,8 +719,8 @@ This package contains only the base modules, required in all installs.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun base -f preun-base.sh
@ -761,8 +761,8 @@ This package contains additional modules not supported by Novell.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun extra -f preun-extra.sh
@ -789,8 +789,8 @@ The standard kernel.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%files -n kernel-s390-man
@ -799,6 +799,25 @@ GIT Branch: master
%endif
%changelog
* Thu Mar 12 2009 jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
* Thu Mar 12 2009 jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
* Thu Mar 12 2009 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
* Thu Mar 12 2009 rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
* Wed Mar 11 2009 jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
* Mon Mar 09 2009 mmarek@suse.cz
- rpm/kernel-binary.spec.in: renamed modprobe config to
/etc/modprobe.d/50-module-renames.conf (required by new

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
-------------------------------------------------------------------
Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
-------------------------------------------------------------------
Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
-------------------------------------------------------------------
Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
-------------------------------------------------------------------
Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
-------------------------------------------------------------------
Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz

View File

@ -30,7 +30,7 @@ Url: http://www.kernel.org/
Name: kernel-source
Summary: The Linux Kernel Sources
Version: 2.6.29
Release: 3
Release: 4
License: GPL v2 only
Group: Development/Sources
AutoReqProv: off
@ -116,8 +116,8 @@ Authors:
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%prep
@ -291,6 +291,25 @@ done
%files -f kernel-source.files
%changelog
* Thu Mar 12 2009 jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
* Thu Mar 12 2009 jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
* Thu Mar 12 2009 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
* Thu Mar 12 2009 rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
* Wed Mar 11 2009 jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
* Mon Mar 09 2009 mmarek@suse.cz
- rpm/kernel-binary.spec.in: renamed modprobe config to
/etc/modprobe.d/50-module-renames.conf (required by new

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
-------------------------------------------------------------------
Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
-------------------------------------------------------------------
Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
-------------------------------------------------------------------
Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
-------------------------------------------------------------------
Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
-------------------------------------------------------------------
Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz

View File

@ -29,7 +29,7 @@ Url: http://www.kernel.org/
Name: kernel-syms
Summary: Kernel Symbol Versions (modversions)
Version: 2.6.29
Release: 3
Release: 4
License: GPL v2 only
Group: Development/Sources
AutoReqProv: off
@ -91,8 +91,8 @@ Authors:
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%prep
@ -151,6 +151,25 @@ done
/lib/modules/*/build
%changelog
* Thu Mar 12 2009 jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
* Thu Mar 12 2009 jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
* Thu Mar 12 2009 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
* Thu Mar 12 2009 rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
* Wed Mar 11 2009 jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
* Mon Mar 09 2009 mmarek@suse.cz
- rpm/kernel-binary.spec.in: renamed modprobe config to
/etc/modprobe.d/50-module-renames.conf (required by new

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
-------------------------------------------------------------------
Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
-------------------------------------------------------------------
Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
-------------------------------------------------------------------
Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
-------------------------------------------------------------------
Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
-------------------------------------------------------------------
Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz

View File

@ -57,13 +57,13 @@
%if %build_vanilla || %build_kdump || %CONFIG_MODULES != "y"
%define split_packages 0
%else
%define split_packages 1
%define split_packages 0%{expand:%(test -n "$(%_sourcedir/guards %symbols base < %_sourcedir/supported.conf)" && echo 1)}
%endif
Name: kernel-trace
Summary: The Realtime Linux Kernel
Version: 2.6.29
Release: 3
Release: 4
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -215,8 +215,8 @@ Authors:
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%prep
@ -735,8 +735,8 @@ Authors:
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun base -f preun-base.sh
@ -781,8 +781,8 @@ Authors:
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun extra -f preun-extra.sh
@ -815,8 +815,8 @@ Authors:
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%files -n kernel-trace-man
@ -825,6 +825,25 @@ GIT Branch: master
%endif
%changelog
* Thu Mar 12 2009 jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
* Thu Mar 12 2009 jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
* Thu Mar 12 2009 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
* Thu Mar 12 2009 rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
* Wed Mar 11 2009 jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
* Mon Mar 09 2009 mmarek@suse.cz
- rpm/kernel-binary.spec.in: renamed modprobe config to
/etc/modprobe.d/50-module-renames.conf (required by new

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
-------------------------------------------------------------------
Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
-------------------------------------------------------------------
Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
-------------------------------------------------------------------
Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
-------------------------------------------------------------------
Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
-------------------------------------------------------------------
Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz

View File

@ -57,13 +57,13 @@
%if %build_vanilla || %build_kdump || %CONFIG_MODULES != "y"
%define split_packages 0
%else
%define split_packages 1
%define split_packages 0%{expand:%(test -n "$(%_sourcedir/guards %symbols base < %_sourcedir/supported.conf)" && echo 1)}
%endif
Name: kernel-vanilla
Summary: The Standard Kernel - without any SUSE patches
Version: 2.6.29
Release: 3
Release: 4
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -225,8 +225,8 @@ The standard kernel - without any SUSE patches
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%prep
@ -739,8 +739,8 @@ The standard kernel - without any SUSE patches
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun base -f preun-base.sh
@ -779,8 +779,8 @@ The standard kernel - without any SUSE patches
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun extra -f preun-extra.sh
@ -807,8 +807,8 @@ The standard kernel - without any SUSE patches
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%files -n kernel-vanilla-man
@ -817,6 +817,25 @@ GIT Branch: master
%endif
%changelog
* Thu Mar 12 2009 jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
* Thu Mar 12 2009 jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
* Thu Mar 12 2009 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
* Thu Mar 12 2009 rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
* Wed Mar 11 2009 jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
* Mon Mar 09 2009 mmarek@suse.cz
- rpm/kernel-binary.spec.in: renamed modprobe config to
/etc/modprobe.d/50-module-renames.conf (required by new

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Thu Mar 12 11:21:42 CET 2009 - jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
-------------------------------------------------------------------
Thu Mar 12 11:09:42 CET 2009 - jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
-------------------------------------------------------------------
Thu Mar 12 11:02:37 CET 2009 - jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
-------------------------------------------------------------------
Thu Mar 12 07:43:03 CET 2009 - rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
-------------------------------------------------------------------
Wed Mar 11 18:27:00 CET 2009 - jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
-------------------------------------------------------------------
Mon Mar 9 21:26:13 CET 2009 - mmarek@suse.cz

View File

@ -57,13 +57,13 @@
%if %build_vanilla || %build_kdump || %CONFIG_MODULES != "y"
%define split_packages 0
%else
%define split_packages 1
%define split_packages 0%{expand:%(test -n "$(%_sourcedir/guards %symbols base < %_sourcedir/supported.conf)" && echo 1)}
%endif
Name: kernel-xen
Summary: The Xen Kernel
Version: 2.6.29
Release: 1
Release: 2
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -209,8 +209,8 @@ unprivileged ("xenU") kernel.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%prep
@ -728,8 +728,8 @@ This package contains only the base modules, required in all installs.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun base -f preun-base.sh
@ -773,8 +773,8 @@ This package contains additional modules not supported by Novell.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%preun extra -f preun-extra.sh
@ -804,8 +804,8 @@ unprivileged ("xenU") kernel.
Source Timestamp: 2009-03-09 21:27:03 +0100
GIT Revision: ec5a2ef564980bbb965671ac3a03fd23cc96ca6c
Source Timestamp: 2009-03-12 14:33:14 +0100
GIT Revision: 5518decb68dd597cdb9ba5fc5b744d2b5f253c6a
GIT Branch: master
%files -n kernel-xen-man
@ -814,6 +814,25 @@ GIT Branch: master
%endif
%changelog
* Thu Mar 12 2009 jbeulich@novell.com
- patches.fixes/fix-nf_conntrack_slp,
patches.suse/perfmon2-remove_get_base_syscall_attr.patch,
patches.suse/perfmon2.patch,
patches.suse/silent-stack-overflow-2.patch: fix build warnings.
* Thu Mar 12 2009 jbeulich@novell.com
- Update Xen patches addressing several issues in initial commit
- Update Xen config files (re-enable oprofile, disable novfs).
- patches.xen/xen3-x86_64-unwind-annotations: fix unwind annotations
in entry_64-xen.S.
* Thu Mar 12 2009 jbeulich@novell.com
- patches.arch/x86_64-unwind-annotations: fix unwind annotations in
entry_64.S.
* Thu Mar 12 2009 rgoldwyn@suse.de
- patches.suse/novfs-creds-change-2.6.29: Changing credential
according to new task_struct.
* Wed Mar 11 2009 jblunck@suse.de
- rpm/kernel-binary.spec.in: Use split_packages only if supported.conf
is not empty.
* Mon Mar 09 2009 mmarek@suse.cz
- rpm/kernel-binary.spec.in: renamed modprobe config to
/etc/modprobe.d/50-module-renames.conf (required by new

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:33f5b730de64e74e9367dc8ffd34c2bd39aa1cf0abd2261324213665beb882d4
size 129
oid sha256:fab9592f2edfb0bac20888129875544bd98b15b999cd98d5062a55a7fe9f9905
size 128

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6d93a0e81ecd598c1450c20d1ec2bcb0af2c0f46c4831794106b72e55f010ae3
size 36607
oid sha256:613a9fecdb3dd99f07ad2feb5532e4fd8fc6455b9ebb9dc131c45f9191f96baf
size 38925

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fc3907d8e759380cae2ad43a61b9a60bf53023f2d4257f0dd06703ed06a01cb1
size 42993
oid sha256:af5e223133566db8e391148954a3d132878beda64a682c02ef1d16078fdad149
size 43022

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c07656a007da848ce3eb77de4263482fc23f8570a7e00d660a4c609454d26b79
oid sha256:587c42eaa4e4fed0eee8ecb02d7e73fa0898f1071a1d58d849fc768cfe5a1816
size 125

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cc58fc5f6be31ebe34ef66e2cb2be71ea17f2be48553ae980d850e684461cd69
size 125
oid sha256:592a41bf1b394db79a58e405af5372f6aa0e2dea0d91f5b77bd11305cbaf395e
size 124

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:760e06de96ed47bd8d923de7c404f094cec4a2e13b86cb711a7adad77322e64d
size 1278997
oid sha256:f32ee653543c294cc2eee201ea938913384b85af36750e9d0db505315d097cae
size 1279420

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9912c6b07ee1c53572e9082d6f6d7aba47b0c2e2ce824317acc3239f1f8f639b
size 1651376
oid sha256:a53a5eb104a3bcb9095985e3d5a03b9c4bf5fa65876bb66ed2c6a4b0a9c23af7
size 1660575

View File

@ -388,6 +388,7 @@
patches.suse/novfs-gregorian-day-fix
patches.suse/novfs-map-drives-correctly.diff
patches.suse/novfs-clear-mappeddrives.patch
patches.suse/novfs-creds-change-2.6.29
########################################################
# other filesystem stuff