forked from pool/kernel-source
GIT Revision: 4ee537b5bf4d5f656d02e72ae850af0930526734
OBS-URL: https://build.opensuse.org/package/show/Kernel:HEAD/kernel-source?expand=0&rev=6914
This commit is contained in:
parent
8bcf16698c
commit
1d2276e413
@ -20,7 +20,7 @@ fi
|
||||
|
||||
|
||||
source $(dirname $0)/config.sh
|
||||
set -- $(echo $SRCVERSION | sed -ne 's/\([0-9]\+\).\([0-9]\+\).\([0-9]\+\)\(.*\)/\1 \2 \3 \4/p')
|
||||
set -- $(echo $SRCVERSION | sed -rn 's/([0-9]+)\.([0-9]+)\.([0-9]+)(.*)/\1 \2 \3 \4/p')
|
||||
|
||||
VERSION=$1
|
||||
PATCHLEVEL=$2
|
||||
|
@ -13,8 +13,8 @@
|
||||
+i386 i386/pae
|
||||
+i386 -syms i386/vmi
|
||||
+i386 -syms i386/debug
|
||||
#+i386 i386/xen
|
||||
#+i386 -syms i386/ec2
|
||||
+i386 i386/xen
|
||||
+i386 -syms i386/ec2
|
||||
+i386 i386/vanilla
|
||||
+i386 -syms i386/trace
|
||||
|
||||
@ -25,8 +25,8 @@
|
||||
|
||||
+x86_64 x86_64/default
|
||||
+x86_64 x86_64/desktop
|
||||
#+x86_64 x86_64/xen
|
||||
#+x86_64 -syms x86_64/ec2
|
||||
+x86_64 x86_64/xen
|
||||
+x86_64 -syms x86_64/ec2
|
||||
+x86_64 -syms x86_64/debug
|
||||
+x86_64 x86_64/vanilla
|
||||
+x86_64 -syms x86_64/trace
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4a4175e306da15860029fa2eae1ba41099b7cbe6b6d34150db15600ecb4950df
|
||||
size 216447
|
||||
oid sha256:63d7e5a5d1017d8bf546dc52deabe94e5383f82561147ad5e3fb0c40b142cd94
|
||||
size 226693
|
||||
|
@ -638,8 +638,9 @@ rm %my_builddir/tmp
|
||||
%endif
|
||||
|
||||
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
|
||||
# much, but it keeps rpmlint from breaking the package build.
|
||||
%fdupes $RPM_BUILD_ROOT
|
||||
# much, but it keeps rpmlint from breaking the package build. Note that we skip
|
||||
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
|
||||
%fdupes $RPM_BUILD_ROOT/lib
|
||||
|
||||
%preun -f preun.sh
|
||||
%postun -f postun.sh
|
||||
|
@ -1,3 +1,65 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com
|
||||
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -6,6 +68,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.37
|
||||
%define patchversion 2.6.38-rc3
|
||||
%define patchversion 2.6.38-rc4
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-debug
|
||||
Summary: A Debug Version of the Kernel
|
||||
Version: 2.6.38
|
||||
%if %using_buildservice
|
||||
Release: rc3.<RELEASE>
|
||||
Release: rc4.<RELEASE>
|
||||
%else
|
||||
Release: rc3.0
|
||||
Release: rc4.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -714,8 +714,9 @@ rm %my_builddir/tmp
|
||||
%endif
|
||||
|
||||
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
|
||||
# much, but it keeps rpmlint from breaking the package build.
|
||||
%fdupes $RPM_BUILD_ROOT
|
||||
# much, but it keeps rpmlint from breaking the package build. Note that we skip
|
||||
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
|
||||
%fdupes $RPM_BUILD_ROOT/lib
|
||||
|
||||
%preun -f preun.sh
|
||||
%postun -f postun.sh
|
||||
@ -865,11 +866,49 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Wed Feb 09 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
* Tue Feb 08 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
* Tue Feb 08 2011 jeffm@suse.com
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
* Tue Feb 08 2011 sjayaraman@suse.de
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
|
||||
of %%release_major and rename it to %%release_num to better describe
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
* Fri Feb 04 2011 mmarek@suse.cz
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
* Fri Feb 04 2011 jeffm@suse.com
|
||||
- hfs: avoid crash in hfs_bnode_create (bnc#552250).
|
||||
- commit d84296a
|
||||
|
@ -1,3 +1,65 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com
|
||||
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -6,6 +68,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.37
|
||||
%define patchversion 2.6.38-rc3
|
||||
%define patchversion 2.6.38-rc4
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-default
|
||||
Summary: The Standard Kernel
|
||||
Version: 2.6.38
|
||||
%if %using_buildservice
|
||||
Release: rc3.<RELEASE>
|
||||
Release: rc4.<RELEASE>
|
||||
%else
|
||||
Release: rc3.0
|
||||
Release: rc4.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -729,8 +729,9 @@ rm %my_builddir/tmp
|
||||
%endif
|
||||
|
||||
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
|
||||
# much, but it keeps rpmlint from breaking the package build.
|
||||
%fdupes $RPM_BUILD_ROOT
|
||||
# much, but it keeps rpmlint from breaking the package build. Note that we skip
|
||||
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
|
||||
%fdupes $RPM_BUILD_ROOT/lib
|
||||
|
||||
%preun -f preun.sh
|
||||
%postun -f postun.sh
|
||||
@ -878,11 +879,49 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Wed Feb 09 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
* Tue Feb 08 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
* Tue Feb 08 2011 jeffm@suse.com
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
* Tue Feb 08 2011 sjayaraman@suse.de
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
|
||||
of %%release_major and rename it to %%release_num to better describe
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
* Fri Feb 04 2011 mmarek@suse.cz
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
* Fri Feb 04 2011 jeffm@suse.com
|
||||
- hfs: avoid crash in hfs_bnode_create (bnc#552250).
|
||||
- commit d84296a
|
||||
|
@ -1,3 +1,65 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com
|
||||
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -6,6 +68,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.37
|
||||
%define patchversion 2.6.38-rc3
|
||||
%define patchversion 2.6.38-rc4
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-desktop
|
||||
Summary: Kernel optimized for the desktop
|
||||
Version: 2.6.38
|
||||
%if %using_buildservice
|
||||
Release: rc3.<RELEASE>
|
||||
Release: rc4.<RELEASE>
|
||||
%else
|
||||
Release: rc3.0
|
||||
Release: rc4.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -723,8 +723,9 @@ rm %my_builddir/tmp
|
||||
%endif
|
||||
|
||||
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
|
||||
# much, but it keeps rpmlint from breaking the package build.
|
||||
%fdupes $RPM_BUILD_ROOT
|
||||
# much, but it keeps rpmlint from breaking the package build. Note that we skip
|
||||
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
|
||||
%fdupes $RPM_BUILD_ROOT/lib
|
||||
|
||||
%preun -f preun.sh
|
||||
%postun -f postun.sh
|
||||
@ -898,11 +899,49 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Wed Feb 09 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
* Tue Feb 08 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
* Tue Feb 08 2011 jeffm@suse.com
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
* Tue Feb 08 2011 sjayaraman@suse.de
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
|
||||
of %%release_major and rename it to %%release_num to better describe
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
* Fri Feb 04 2011 mmarek@suse.cz
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
* Fri Feb 04 2011 jeffm@suse.com
|
||||
- hfs: avoid crash in hfs_bnode_create (bnc#552250).
|
||||
- commit d84296a
|
||||
|
@ -1,3 +1,65 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com
|
||||
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -6,6 +68,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
%define patchversion 2.6.38-rc3
|
||||
%define patchversion 2.6.38-rc4
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -26,9 +26,9 @@ Name: kernel-docs
|
||||
Summary: Kernel Documentation
|
||||
Version: 2.6.38
|
||||
%if %using_buildservice
|
||||
Release: rc3.<RELEASE>
|
||||
Release: rc4.<RELEASE>
|
||||
%else
|
||||
Release: rc3.0
|
||||
Release: rc4.0
|
||||
%endif
|
||||
BuildRequires: docbook-toys docbook-utils ghostscript_any libjpeg-devel texlive transfig xmlto xorg-x11-devel
|
||||
BuildRequires: kernel-source%variant
|
||||
@ -99,11 +99,49 @@ rm -rf $RPM_BUILD_ROOT
|
||||
/usr/share/doc/kernel
|
||||
|
||||
%changelog
|
||||
* Wed Feb 09 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
* Tue Feb 08 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
* Tue Feb 08 2011 jeffm@suse.com
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
* Tue Feb 08 2011 sjayaraman@suse.de
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
|
||||
of %%release_major and rename it to %%release_num to better describe
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
* Fri Feb 04 2011 mmarek@suse.cz
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
* Fri Feb 04 2011 jeffm@suse.com
|
||||
- hfs: avoid crash in hfs_bnode_create (bnc#552250).
|
||||
- commit d84296a
|
||||
|
22357
kernel-ec2.changes
Normal file
22357
kernel-ec2.changes
Normal file
File diff suppressed because it is too large
Load Diff
15222
kernel-ec2.spec
Normal file
15222
kernel-ec2.spec
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,65 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com
|
||||
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -6,6 +68,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.37
|
||||
%define patchversion 2.6.38-rc3
|
||||
%define patchversion 2.6.38-rc4
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-net
|
||||
Summary: Minimal kernel with disk and net support
|
||||
Version: 2.6.38
|
||||
%if %using_buildservice
|
||||
Release: rc3.<RELEASE>
|
||||
Release: rc4.<RELEASE>
|
||||
%else
|
||||
Release: rc3.0
|
||||
Release: rc4.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -712,8 +712,9 @@ rm %my_builddir/tmp
|
||||
%endif
|
||||
|
||||
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
|
||||
# much, but it keeps rpmlint from breaking the package build.
|
||||
%fdupes $RPM_BUILD_ROOT
|
||||
# much, but it keeps rpmlint from breaking the package build. Note that we skip
|
||||
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
|
||||
%fdupes $RPM_BUILD_ROOT/lib
|
||||
|
||||
%preun -f preun.sh
|
||||
%postun -f postun.sh
|
||||
@ -865,11 +866,49 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Wed Feb 09 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
* Tue Feb 08 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
* Tue Feb 08 2011 jeffm@suse.com
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
* Tue Feb 08 2011 sjayaraman@suse.de
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
|
||||
of %%release_major and rename it to %%release_num to better describe
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
* Fri Feb 04 2011 mmarek@suse.cz
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
* Fri Feb 04 2011 jeffm@suse.com
|
||||
- hfs: avoid crash in hfs_bnode_create (bnc#552250).
|
||||
- commit d84296a
|
||||
|
@ -1,3 +1,65 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com
|
||||
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -6,6 +68,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.37
|
||||
%define patchversion 2.6.38-rc3
|
||||
%define patchversion 2.6.38-rc4
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-pae
|
||||
Summary: Kernel with PAE Support
|
||||
Version: 2.6.38
|
||||
%if %using_buildservice
|
||||
Release: rc3.<RELEASE>
|
||||
Release: rc4.<RELEASE>
|
||||
%else
|
||||
Release: rc3.0
|
||||
Release: rc4.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -720,8 +720,9 @@ rm %my_builddir/tmp
|
||||
%endif
|
||||
|
||||
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
|
||||
# much, but it keeps rpmlint from breaking the package build.
|
||||
%fdupes $RPM_BUILD_ROOT
|
||||
# much, but it keeps rpmlint from breaking the package build. Note that we skip
|
||||
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
|
||||
%fdupes $RPM_BUILD_ROOT/lib
|
||||
|
||||
%preun -f preun.sh
|
||||
%postun -f postun.sh
|
||||
@ -883,11 +884,49 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Wed Feb 09 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
* Tue Feb 08 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
* Tue Feb 08 2011 jeffm@suse.com
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
* Tue Feb 08 2011 sjayaraman@suse.de
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
|
||||
of %%release_major and rename it to %%release_num to better describe
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
* Fri Feb 04 2011 mmarek@suse.cz
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
* Fri Feb 04 2011 jeffm@suse.com
|
||||
- hfs: avoid crash in hfs_bnode_create (bnc#552250).
|
||||
- commit d84296a
|
||||
|
@ -1,3 +1,65 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com
|
||||
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -6,6 +68,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.37
|
||||
%define patchversion 2.6.38-rc3
|
||||
%define patchversion 2.6.38-rc4
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-ppc64
|
||||
Summary: Kernel for ppc64 Systems
|
||||
Version: 2.6.38
|
||||
%if %using_buildservice
|
||||
Release: rc3.<RELEASE>
|
||||
Release: rc4.<RELEASE>
|
||||
%else
|
||||
Release: rc3.0
|
||||
Release: rc4.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -724,8 +724,9 @@ rm %my_builddir/tmp
|
||||
%endif
|
||||
|
||||
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
|
||||
# much, but it keeps rpmlint from breaking the package build.
|
||||
%fdupes $RPM_BUILD_ROOT
|
||||
# much, but it keeps rpmlint from breaking the package build. Note that we skip
|
||||
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
|
||||
%fdupes $RPM_BUILD_ROOT/lib
|
||||
|
||||
%preun -f preun.sh
|
||||
%postun -f postun.sh
|
||||
@ -887,11 +888,49 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Wed Feb 09 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
* Tue Feb 08 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
* Tue Feb 08 2011 jeffm@suse.com
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
* Tue Feb 08 2011 sjayaraman@suse.de
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
|
||||
of %%release_major and rename it to %%release_num to better describe
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
* Fri Feb 04 2011 mmarek@suse.cz
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
* Fri Feb 04 2011 jeffm@suse.com
|
||||
- hfs: avoid crash in hfs_bnode_create (bnc#552250).
|
||||
- commit d84296a
|
||||
|
@ -1,3 +1,65 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com
|
||||
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -6,6 +68,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.37
|
||||
%define patchversion 2.6.38-rc3
|
||||
%define patchversion 2.6.38-rc4
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-ps3
|
||||
Summary: kernel for ps3 bootloader
|
||||
Version: 2.6.38
|
||||
%if %using_buildservice
|
||||
Release: rc3.<RELEASE>
|
||||
Release: rc4.<RELEASE>
|
||||
%else
|
||||
Release: rc3.0
|
||||
Release: rc4.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -713,8 +713,9 @@ rm %my_builddir/tmp
|
||||
%endif
|
||||
|
||||
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
|
||||
# much, but it keeps rpmlint from breaking the package build.
|
||||
%fdupes $RPM_BUILD_ROOT
|
||||
# much, but it keeps rpmlint from breaking the package build. Note that we skip
|
||||
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
|
||||
%fdupes $RPM_BUILD_ROOT/lib
|
||||
|
||||
%preun -f preun.sh
|
||||
%postun -f postun.sh
|
||||
@ -868,11 +869,49 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Wed Feb 09 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
* Tue Feb 08 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
* Tue Feb 08 2011 jeffm@suse.com
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
* Tue Feb 08 2011 sjayaraman@suse.de
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
|
||||
of %%release_major and rename it to %%release_num to better describe
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
* Fri Feb 04 2011 mmarek@suse.cz
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
* Fri Feb 04 2011 jeffm@suse.com
|
||||
- hfs: avoid crash in hfs_bnode_create (bnc#552250).
|
||||
- commit d84296a
|
||||
|
@ -1,3 +1,65 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com
|
||||
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -6,6 +68,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.37
|
||||
%define patchversion 2.6.38-rc3
|
||||
%define patchversion 2.6.38-rc4
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-s390
|
||||
Summary: The Standard Kernel
|
||||
Version: 2.6.38
|
||||
%if %using_buildservice
|
||||
Release: rc3.<RELEASE>
|
||||
Release: rc4.<RELEASE>
|
||||
%else
|
||||
Release: rc3.0
|
||||
Release: rc4.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -713,8 +713,9 @@ rm %my_builddir/tmp
|
||||
%endif
|
||||
|
||||
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
|
||||
# much, but it keeps rpmlint from breaking the package build.
|
||||
%fdupes $RPM_BUILD_ROOT
|
||||
# much, but it keeps rpmlint from breaking the package build. Note that we skip
|
||||
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
|
||||
%fdupes $RPM_BUILD_ROOT/lib
|
||||
|
||||
%preun -f preun.sh
|
||||
%postun -f postun.sh
|
||||
@ -862,11 +863,49 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Wed Feb 09 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
* Tue Feb 08 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
* Tue Feb 08 2011 jeffm@suse.com
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
* Tue Feb 08 2011 sjayaraman@suse.de
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
|
||||
of %%release_major and rename it to %%release_num to better describe
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
* Fri Feb 04 2011 mmarek@suse.cz
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
* Fri Feb 04 2011 jeffm@suse.com
|
||||
- hfs: avoid crash in hfs_bnode_create (bnc#552250).
|
||||
- commit d84296a
|
||||
|
@ -1,3 +1,65 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com
|
||||
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -6,6 +68,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com
|
||||
|
||||
|
@ -19,22 +19,21 @@
|
||||
# icecream 0
|
||||
|
||||
%define srcversion 2.6.37
|
||||
%define patchversion 2.6.38-rc3
|
||||
%define patchversion 2.6.38-rc4
|
||||
%define variant %{nil}
|
||||
%define vanilla_only 0
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
|
||||
%define src_install_dir usr/src/linux-%kernelrelease%variant
|
||||
%define obj_install_dir /%src_install_dir-obj
|
||||
%define rpm_install_dir %buildroot%real_install_dir
|
||||
|
||||
Name: kernel-source
|
||||
Summary: The Linux Kernel Sources
|
||||
Version: 2.6.38
|
||||
%if %using_buildservice
|
||||
Release: rc3.<RELEASE>
|
||||
Release: rc4.<RELEASE>
|
||||
%else
|
||||
Release: rc3.0
|
||||
Release: rc4.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: Development/Sources
|
||||
@ -160,17 +159,9 @@ echo "Symbol(s): %symbols"
|
||||
%setup -q -c -T -a 100 -a 101 -a 102 -a 103 -a 104 -a 105 -a 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120
|
||||
|
||||
%build
|
||||
# Release number without the EXTRAVERSION
|
||||
RELEASE=%source_rel
|
||||
while [ "$RELEASE" != "${RELEASE#[^0-9]*.}" ]; do
|
||||
RELEASE=${RELEASE#[^0-9]*.}
|
||||
done
|
||||
|
||||
mkdir -p $RPM_BUILD_ROOT/usr/src
|
||||
cd $RPM_BUILD_ROOT/usr/src
|
||||
|
||||
ln -sf linux%variant linux%variant # dummy symlink
|
||||
|
||||
# Unpack the vanilla kernel sources
|
||||
tar -xjf %_sourcedir/linux-%srcversion.tar.bz2
|
||||
if test "%srcversion" != "%kernelrelease%variant"; then
|
||||
@ -179,25 +170,35 @@ fi
|
||||
|
||||
|
||||
%if %do_vanilla
|
||||
cp -al "%buildroot/%src_install_dir" linux-%kernelrelease-vanilla
|
||||
%if %vanilla_only
|
||||
mv \
|
||||
%else
|
||||
cp -al \
|
||||
%endif
|
||||
linux-%kernelrelease%variant linux-%kernelrelease-vanilla
|
||||
cd linux-%kernelrelease-vanilla
|
||||
%_sourcedir/apply-patches --vanilla %_sourcedir/series.conf %my_builddir %symbols
|
||||
rm -f $(find . -name ".gitignore")
|
||||
cd ..
|
||||
%endif
|
||||
|
||||
cd "%buildroot/%src_install_dir"
|
||||
%if ! %vanilla_only
|
||||
ln -sf linux%variant linux%variant # dummy symlink
|
||||
|
||||
cd linux-%kernelrelease%variant
|
||||
%_sourcedir/apply-patches %_sourcedir/series.conf %my_builddir %symbols
|
||||
rm -f $(find . -name ".gitignore")
|
||||
|
||||
if [ -f %_sourcedir/localversion ] ; then
|
||||
cat %_sourcedir/localversion > localversion
|
||||
fi
|
||||
%endif
|
||||
|
||||
# Hardlink duplicate files automatically (from package fdupes).
|
||||
%fdupes $RPM_BUILD_ROOT
|
||||
|
||||
%install
|
||||
%if ! %vanilla_only
|
||||
# Install the documentation and example Kernel Module Package.
|
||||
DOC=$RPM_BUILD_ROOT/usr/share/doc/packages/%name
|
||||
mkdir -p $DOC
|
||||
@ -237,6 +238,7 @@ popd
|
||||
/usr/share/doc/packages/%name
|
||||
/etc/rpm/macros.kernel-source
|
||||
/usr/lib/rpm/kernel-module-subpackage
|
||||
%endif
|
||||
|
||||
%if %do_vanilla
|
||||
%files vanilla
|
||||
@ -245,11 +247,49 @@ popd
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Wed Feb 09 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
* Tue Feb 08 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
* Tue Feb 08 2011 jeffm@suse.com
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
* Tue Feb 08 2011 sjayaraman@suse.de
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
|
||||
of %%release_major and rename it to %%release_num to better describe
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
* Fri Feb 04 2011 mmarek@suse.cz
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
* Fri Feb 04 2011 jeffm@suse.com
|
||||
- hfs: avoid crash in hfs_bnode_create (bnc#552250).
|
||||
- commit d84296a
|
||||
|
@ -21,12 +21,11 @@
|
||||
%define srcversion @SRCVERSION@
|
||||
%define patchversion @PATCHVERSION@
|
||||
%define variant @VARIANT@%{nil}
|
||||
%define vanilla_only @VANILLA_ONLY@
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
|
||||
%define src_install_dir usr/src/linux-%kernelrelease%variant
|
||||
%define obj_install_dir /%src_install_dir-obj
|
||||
%define rpm_install_dir %buildroot%real_install_dir
|
||||
|
||||
Name: kernel-source@VARIANT@
|
||||
Summary: The Linux Kernel Sources
|
||||
@ -160,17 +159,9 @@ echo "Symbol(s): %symbols"
|
||||
%setup -q -c -T @UNPACK_PATCHES@
|
||||
|
||||
%build
|
||||
# Release number without the EXTRAVERSION
|
||||
RELEASE=%source_rel
|
||||
while [ "$RELEASE" != "${RELEASE#[^0-9]*.}" ]; do
|
||||
RELEASE=${RELEASE#[^0-9]*.}
|
||||
done
|
||||
|
||||
mkdir -p $RPM_BUILD_ROOT/usr/src
|
||||
cd $RPM_BUILD_ROOT/usr/src
|
||||
|
||||
ln -sf linux%variant linux%variant # dummy symlink
|
||||
|
||||
# Unpack the vanilla kernel sources
|
||||
tar -xjf %_sourcedir/linux-%srcversion.tar.bz2
|
||||
if test "%srcversion" != "%kernelrelease%variant"; then
|
||||
@ -179,25 +170,35 @@ fi
|
||||
|
||||
|
||||
%if %do_vanilla
|
||||
cp -al "%buildroot/%src_install_dir" linux-%kernelrelease-vanilla
|
||||
%if %vanilla_only
|
||||
mv \
|
||||
%else
|
||||
cp -al \
|
||||
%endif
|
||||
linux-%kernelrelease%variant linux-%kernelrelease-vanilla
|
||||
cd linux-%kernelrelease-vanilla
|
||||
%_sourcedir/apply-patches --vanilla %_sourcedir/series.conf %my_builddir %symbols
|
||||
rm -f $(find . -name ".gitignore")
|
||||
cd ..
|
||||
%endif
|
||||
|
||||
cd "%buildroot/%src_install_dir"
|
||||
%if ! %vanilla_only
|
||||
ln -sf linux%variant linux%variant # dummy symlink
|
||||
|
||||
cd linux-%kernelrelease%variant
|
||||
%_sourcedir/apply-patches %_sourcedir/series.conf %my_builddir %symbols
|
||||
rm -f $(find . -name ".gitignore")
|
||||
|
||||
if [ -f %_sourcedir/localversion ] ; then
|
||||
cat %_sourcedir/localversion > localversion
|
||||
fi
|
||||
%endif
|
||||
|
||||
# Hardlink duplicate files automatically (from package fdupes).
|
||||
%fdupes $RPM_BUILD_ROOT
|
||||
|
||||
%install
|
||||
%if ! %vanilla_only
|
||||
# Install the documentation and example Kernel Module Package.
|
||||
DOC=$RPM_BUILD_ROOT/usr/share/doc/packages/%name
|
||||
mkdir -p $DOC
|
||||
@ -237,6 +238,7 @@ popd
|
||||
/usr/share/doc/packages/%name
|
||||
/etc/rpm/macros.kernel-source
|
||||
/usr/lib/rpm/kernel-module-subpackage
|
||||
%endif
|
||||
|
||||
%if %do_vanilla
|
||||
%files vanilla
|
||||
|
@ -1,3 +1,65 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com
|
||||
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -6,6 +68,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com
|
||||
|
||||
|
@ -25,7 +25,7 @@ Name: kernel-syms
|
||||
Summary: Kernel Symbol Versions (modversions)
|
||||
Version: 2.6.38
|
||||
%if %using_buildservice
|
||||
Release: rc3.<RELEASE>
|
||||
Release: rc4.<RELEASE>
|
||||
%else
|
||||
%define kernel_source_release %(LC_ALL=C rpm -q kernel-devel%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0)
|
||||
Release: %kernel_source_release
|
||||
@ -50,6 +50,9 @@ Requires: kernel-ppc64-devel = %version-%source_rel
|
||||
%ifarch s390
|
||||
Requires: kernel-s390-devel = %version-%source_rel
|
||||
%endif
|
||||
%ifarch %ix86 x86_64
|
||||
Requires: kernel-xen-devel = %version-%source_rel
|
||||
%endif
|
||||
Provides: multiversion(kernel)
|
||||
Provides: %name = %version-%source_rel
|
||||
Source: README.KSYMS
|
||||
@ -78,11 +81,49 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
|
||||
%_docdir/%name/README.SUSE
|
||||
|
||||
%changelog
|
||||
* Wed Feb 09 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
* Tue Feb 08 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
* Tue Feb 08 2011 jeffm@suse.com
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
* Tue Feb 08 2011 sjayaraman@suse.de
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
|
||||
of %%release_major and rename it to %%release_num to better describe
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
* Fri Feb 04 2011 mmarek@suse.cz
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
* Fri Feb 04 2011 jeffm@suse.com
|
||||
- hfs: avoid crash in hfs_bnode_create (bnc#552250).
|
||||
- commit d84296a
|
||||
|
@ -1,3 +1,65 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com
|
||||
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -6,6 +68,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.37
|
||||
%define patchversion 2.6.38-rc3
|
||||
%define patchversion 2.6.38-rc4
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-trace
|
||||
Summary: The Standard Kernel with Tracing Features
|
||||
Version: 2.6.38
|
||||
%if %using_buildservice
|
||||
Release: rc3.<RELEASE>
|
||||
Release: rc4.<RELEASE>
|
||||
%else
|
||||
Release: rc3.0
|
||||
Release: rc4.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -721,8 +721,9 @@ rm %my_builddir/tmp
|
||||
%endif
|
||||
|
||||
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
|
||||
# much, but it keeps rpmlint from breaking the package build.
|
||||
%fdupes $RPM_BUILD_ROOT
|
||||
# much, but it keeps rpmlint from breaking the package build. Note that we skip
|
||||
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
|
||||
%fdupes $RPM_BUILD_ROOT/lib
|
||||
|
||||
%preun -f preun.sh
|
||||
%postun -f postun.sh
|
||||
@ -870,11 +871,49 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Wed Feb 09 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
* Tue Feb 08 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
* Tue Feb 08 2011 jeffm@suse.com
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
* Tue Feb 08 2011 sjayaraman@suse.de
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
|
||||
of %%release_major and rename it to %%release_num to better describe
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
* Fri Feb 04 2011 mmarek@suse.cz
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
* Fri Feb 04 2011 jeffm@suse.com
|
||||
- hfs: avoid crash in hfs_bnode_create (bnc#552250).
|
||||
- commit d84296a
|
||||
|
@ -1,3 +1,65 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com
|
||||
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -6,6 +68,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.37
|
||||
%define patchversion 2.6.38-rc3
|
||||
%define patchversion 2.6.38-rc4
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-vanilla
|
||||
Summary: The Standard Kernel - without any SUSE patches
|
||||
Version: 2.6.38
|
||||
%if %using_buildservice
|
||||
Release: rc3.<RELEASE>
|
||||
Release: rc4.<RELEASE>
|
||||
%else
|
||||
Release: rc3.0
|
||||
Release: rc4.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -717,8 +717,9 @@ rm %my_builddir/tmp
|
||||
%endif
|
||||
|
||||
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
|
||||
# much, but it keeps rpmlint from breaking the package build.
|
||||
%fdupes $RPM_BUILD_ROOT
|
||||
# much, but it keeps rpmlint from breaking the package build. Note that we skip
|
||||
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
|
||||
%fdupes $RPM_BUILD_ROOT/lib
|
||||
|
||||
%preun -f preun.sh
|
||||
%postun -f postun.sh
|
||||
@ -866,11 +867,49 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Wed Feb 09 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
* Tue Feb 08 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
* Tue Feb 08 2011 jeffm@suse.com
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
* Tue Feb 08 2011 sjayaraman@suse.de
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
|
||||
of %%release_major and rename it to %%release_num to better describe
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
* Fri Feb 04 2011 mmarek@suse.cz
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
* Fri Feb 04 2011 jeffm@suse.com
|
||||
- hfs: avoid crash in hfs_bnode_create (bnc#552250).
|
||||
- commit d84296a
|
||||
|
@ -1,3 +1,65 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 00:08:37 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 23:42:06 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 18:10:13 CET 2011 - jeffm@suse.com
|
||||
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 16:48:28 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:31:56 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 14:17:50 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 13:16:52 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -6,6 +68,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 4 01:46:21 CET 2011 - jeffm@suse.com
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.37
|
||||
%define patchversion 2.6.38-rc3
|
||||
%define patchversion 2.6.38-rc4
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-vmi
|
||||
Summary: VMI-enabled kernel
|
||||
Version: 2.6.38
|
||||
%if %using_buildservice
|
||||
Release: rc3.<RELEASE>
|
||||
Release: rc4.<RELEASE>
|
||||
%else
|
||||
Release: rc3.0
|
||||
Release: rc4.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -711,8 +711,9 @@ rm %my_builddir/tmp
|
||||
%endif
|
||||
|
||||
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
|
||||
# much, but it keeps rpmlint from breaking the package build.
|
||||
%fdupes $RPM_BUILD_ROOT
|
||||
# much, but it keeps rpmlint from breaking the package build. Note that we skip
|
||||
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
|
||||
%fdupes $RPM_BUILD_ROOT/lib
|
||||
|
||||
%preun -f preun.sh
|
||||
%postun -f postun.sh
|
||||
@ -862,11 +863,49 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Wed Feb 09 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
|
||||
keep timestamps intact.
|
||||
- commit 9ba5ff0
|
||||
* Tue Feb 08 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
|
||||
(fix last change).
|
||||
- commit 907f9cc
|
||||
* Tue Feb 08 2011 jeffm@suse.com
|
||||
- Updated to 2.6.38-rc4.
|
||||
- Eliminated 1 patch.
|
||||
- commit c327e0a
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
|
||||
- commit 027481c
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update Xen patches to 2.6.38-rc4 and c/s 1066.
|
||||
- config.conf: Re-enable Xen.
|
||||
- Update x86 config files.
|
||||
- commit 72cea6e
|
||||
* Tue Feb 08 2011 jbeulich@novell.com
|
||||
- Update config files.
|
||||
- Refresh and re-enable patches.arch/x86_64-unwind-annotations.
|
||||
- Refresh and re-enable patches.suse/stack-unwind.
|
||||
- commit 1fabeda
|
||||
* Tue Feb 08 2011 sjayaraman@suse.de
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate an
|
||||
upstream change.
|
||||
- commit ae5bb3f
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
|
||||
- commit c93cd6c
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-source.spec.in: Remove dead code.
|
||||
- commit 99e8891
|
||||
* Mon Feb 07 2011 mmarek@suse.cz
|
||||
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
|
||||
of %%release_major and rename it to %%release_num to better describe
|
||||
what it does. Add some comments to explain how the versioning works.
|
||||
- commit 9a3bc94
|
||||
* Fri Feb 04 2011 mmarek@suse.cz
|
||||
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
|
||||
- commit 608bae2
|
||||
* Fri Feb 04 2011 jeffm@suse.com
|
||||
- hfs: avoid crash in hfs_bnode_create (bnc#552250).
|
||||
- commit d84296a
|
||||
|
22357
kernel-xen.changes
Normal file
22357
kernel-xen.changes
Normal file
File diff suppressed because it is too large
Load Diff
15222
kernel-xen.spec
Normal file
15222
kernel-xen.spec
Normal file
File diff suppressed because it is too large
Load Diff
5
mkspec
5
mkspec
@ -25,7 +25,9 @@ my %templates = read_spec_templates();
|
||||
|
||||
# config.sh variables
|
||||
my %vars = parse_config_sh();
|
||||
my ($srcversion, $variant) = ($vars{'SRCVERSION'}, $vars{'VARIANT'});
|
||||
my ($srcversion, $variant, $vanilla_only) =
|
||||
($vars{'SRCVERSION'}, $vars{'VARIANT'}, $vars{'VANILLA_ONLY'});
|
||||
$vanilla_only ||= "0";
|
||||
|
||||
# rpm changelog
|
||||
my $changelog = convert_changes();
|
||||
@ -65,6 +67,7 @@ my $scripts = join(",", grep { is_script($_) }
|
||||
|
||||
my %macros = (
|
||||
VARIANT => $variant,
|
||||
VANILLA_ONLY => $vanilla_only,
|
||||
SRCVERSION => $srcversion,
|
||||
PATCHVERSION => $patchversion,
|
||||
RPMVERSION => $rpmversion,
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cf84937bc7486cbafebe558af5e6d9008dc1ec88e7326821219b542cbfe6d1d0
|
||||
size 75923
|
||||
oid sha256:559789ea0e95e8310626d1b14f04f677ce9024a77a0db896fe4db785d0f59efa
|
||||
size 76006
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:56803f42dcc17575cb9a4611c31e7df227ca36f8562a2967626cf6ee7b78305a
|
||||
size 126496
|
||||
oid sha256:2df20a5c5b412a5db8c7d21146c2f13469f86265455198609890af50686007a0
|
||||
size 125688
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:eda6039ab510bbda54dd0f81d63569cd5624a8fe9a6ec786176eaa5311a93f13
|
||||
size 9701065
|
||||
oid sha256:f985381dda4cc5b1811991272ca8b60030514c0bb7bf6cef95fa0eb295f54b98
|
||||
size 9785244
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a664fd56f02f913f41aca6f9009582c169fc4547d2ff587702bcd095d34ce860
|
||||
size 287362
|
||||
oid sha256:bc0ab4a7f59b01ca591b45e3e92391a107d0e85785292e2cf179a6bd55b25bc4
|
||||
size 286762
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5e1aeb7b727ecadacf70b8802cb72b78c7b7b7bbe1508391e70945bab2c9c219
|
||||
size 2065603
|
||||
oid sha256:7255a3910b469471edd463a2c8f51a7d5cca1fb8c10e7821101c4a07c9beaac9
|
||||
size 2087760
|
||||
|
203
series.conf
203
series.conf
@ -30,6 +30,7 @@
|
||||
patches.kernel.org/patch-2.6.38-rc1
|
||||
patches.kernel.org/patch-2.6.38-rc1-rc2
|
||||
patches.kernel.org/patch-2.6.38-rc2-rc3
|
||||
patches.kernel.org/patch-2.6.38-rc3-rc4
|
||||
|
||||
########################################################
|
||||
# Build fixes that apply to the vanilla kernel too.
|
||||
@ -560,7 +561,6 @@
|
||||
##########################################################
|
||||
# Sound
|
||||
##########################################################
|
||||
patches.drivers/alsa-hda-0001-Fix-memory-leaks-in-conexant-jack-arrays
|
||||
|
||||
########################################################
|
||||
# Other driver fixes
|
||||
@ -649,9 +649,9 @@
|
||||
# Other patches for debugging
|
||||
########################################################
|
||||
patches.suse/crasher-26.diff
|
||||
+needs_update patches.suse/stack-unwind
|
||||
patches.suse/stack-unwind
|
||||
patches.suse/no-frame-pointer-select
|
||||
+needs_update patches.arch/x86_64-unwind-annotations
|
||||
patches.arch/x86_64-unwind-annotations
|
||||
|
||||
########################################################
|
||||
# Kdump
|
||||
@ -721,121 +721,120 @@
|
||||
# re-basing to a newer xen tree.
|
||||
#
|
||||
### both uml framebuffer and xen need this one.
|
||||
+xen_needs_update patches.xen/add-console-use-vt
|
||||
patches.xen/add-console-use-vt
|
||||
|
||||
# split out patches
|
||||
+xen_needs_update patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch
|
||||
+xen_needs_update patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-x86_64.patch
|
||||
+xen_needs_update patches.xen/ipv6-no-autoconf
|
||||
+xen_needs_update patches.xen/pci-guestdev
|
||||
+xen_needs_update patches.xen/pci-reserve
|
||||
+xen_needs_update +needs_update-33 patches.xen/sfc-driverlink
|
||||
+xen_needs_update +needs_update-33 patches.xen/sfc-resource-driver
|
||||
+xen_needs_update +needs_update-33 patches.xen/sfc-driverlink-conditional
|
||||
+xen_needs_update +needs_update-33 patches.xen/sfc-external-sram
|
||||
+xen_needs_update patches.xen/tmem
|
||||
patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch
|
||||
patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-x86_64.patch
|
||||
patches.xen/ipv6-no-autoconf
|
||||
patches.xen/pci-guestdev
|
||||
patches.xen/pci-reserve
|
||||
+needs_update-33 patches.xen/sfc-driverlink
|
||||
+needs_update-33 patches.xen/sfc-resource-driver
|
||||
+needs_update-33 patches.xen/sfc-driverlink-conditional
|
||||
+needs_update-33 patches.xen/sfc-external-sram
|
||||
patches.xen/tmem
|
||||
|
||||
# bulk stuff, new files for xen
|
||||
+xen_needs_update patches.xen/xen3-auto-xen-arch.diff
|
||||
+xen_needs_update patches.xen/xen3-auto-xen-drivers.diff
|
||||
+xen_needs_update patches.xen/xen3-auto-include-xen-interface.diff
|
||||
patches.xen/xen3-auto-xen-arch.diff
|
||||
patches.xen/xen3-auto-xen-drivers.diff
|
||||
patches.xen/xen3-auto-include-xen-interface.diff
|
||||
|
||||
# kconfig bits for xen
|
||||
+xen_needs_update patches.xen/xen3-auto-xen-kconfig.diff
|
||||
patches.xen/xen3-auto-xen-kconfig.diff
|
||||
|
||||
# common code changes
|
||||
+xen_needs_update patches.xen/xen3-auto-common.diff
|
||||
+xen_needs_update patches.xen/xen3-auto-arch-x86.diff
|
||||
+xen_needs_update patches.xen/xen3-auto-arch-i386.diff
|
||||
+xen_needs_update patches.xen/xen3-auto-arch-x86_64.diff
|
||||
patches.xen/xen3-auto-common.diff
|
||||
patches.xen/xen3-auto-arch-x86.diff
|
||||
patches.xen/xen3-auto-arch-i386.diff
|
||||
patches.xen/xen3-auto-arch-x86_64.diff
|
||||
|
||||
# fixups due to upstream Xen parts
|
||||
+xen_needs_update patches.xen/xen3-fixup-xen
|
||||
patches.xen/xen3-fixup-xen
|
||||
|
||||
+xen_needs_update +needs_update-33 patches.xen/sfc-set-arch
|
||||
+xen_needs_update +needs_update-33 patches.xen/sfc-endianness
|
||||
+needs_update-33 patches.xen/sfc-set-arch
|
||||
+needs_update-33 patches.xen/sfc-endianness
|
||||
|
||||
# newer changeset backports
|
||||
|
||||
# changes outside arch/{i386,x86_64}/xen
|
||||
+xen_needs_update patches.xen/xen3-fixup-kconfig
|
||||
+xen_needs_update patches.xen/xen3-fixup-common
|
||||
+xen_needs_update patches.xen/xen3-fixup-arch-x86
|
||||
patches.xen/xen3-fixup-kconfig
|
||||
patches.xen/xen3-fixup-common
|
||||
patches.xen/xen3-fixup-arch-x86
|
||||
|
||||
# ports of other patches
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.18
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.19
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.20
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.21
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.22
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.23
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.24
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.25
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.26
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.27
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.28
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.29
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.30
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.31
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.32
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.33
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.34
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.35
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.36
|
||||
+xen_needs_update patches.xen/xen3-patch-2.6.37
|
||||
+xen_needs_update patches.xen/xen3-seccomp-disable-tsc-option
|
||||
+xen_needs_update patches.xen/xen3-x86-mcp51-no-dac
|
||||
+xen_needs_update patches.xen/xen3-x86-mark_rodata_rw.patch
|
||||
+xen_needs_update patches.xen/xen3-acpi_processor_check_maxcpus.patch
|
||||
+xen_needs_update patches.xen/xen3-stack-unwind
|
||||
+xen_needs_update patches.xen/xen3-x86_64-unwind-annotations
|
||||
patches.xen/xen3-patch-2.6.18
|
||||
patches.xen/xen3-patch-2.6.19
|
||||
patches.xen/xen3-patch-2.6.20
|
||||
patches.xen/xen3-patch-2.6.21
|
||||
patches.xen/xen3-patch-2.6.22
|
||||
patches.xen/xen3-patch-2.6.23
|
||||
patches.xen/xen3-patch-2.6.24
|
||||
patches.xen/xen3-patch-2.6.25
|
||||
patches.xen/xen3-patch-2.6.26
|
||||
patches.xen/xen3-patch-2.6.27
|
||||
patches.xen/xen3-patch-2.6.28
|
||||
patches.xen/xen3-patch-2.6.29
|
||||
patches.xen/xen3-patch-2.6.30
|
||||
patches.xen/xen3-patch-2.6.31
|
||||
patches.xen/xen3-patch-2.6.32
|
||||
patches.xen/xen3-patch-2.6.33
|
||||
patches.xen/xen3-patch-2.6.34
|
||||
patches.xen/xen3-patch-2.6.35
|
||||
patches.xen/xen3-patch-2.6.36
|
||||
patches.xen/xen3-patch-2.6.37
|
||||
patches.xen/xen3-patch-2.6.38-rc4
|
||||
patches.xen/xen3-seccomp-disable-tsc-option
|
||||
patches.xen/xen3-x86-mcp51-no-dac
|
||||
patches.xen/xen3-x86-mark_rodata_rw.patch
|
||||
patches.xen/xen3-stack-unwind
|
||||
patches.xen/xen3-x86_64-unwind-annotations
|
||||
|
||||
# bugfixes and enhancements
|
||||
+xen_needs_update patches.xen/xen-balloon-max-target
|
||||
+xen_needs_update patches.xen/xen-modular-blktap
|
||||
+xen_needs_update patches.xen/xen-blkback-bimodal-suse
|
||||
+xen_needs_update patches.xen/xen-blkif-protocol-fallback-hack
|
||||
+xen_needs_update patches.xen/xen-blkback-cdrom
|
||||
+xen_needs_update patches.xen/xen-blktap-write-barriers
|
||||
+xen_needs_update patches.xen/xen-op-packet
|
||||
+xen_needs_update patches.xen/xen-blkfront-cdrom
|
||||
+xen_needs_update patches.xen/xen-sections
|
||||
+xen_needs_update patches.xen/xen-swiotlb-heuristics
|
||||
+xen_needs_update patches.xen/xen-kconfig-compat
|
||||
+xen_needs_update patches.xen/xen-cpufreq-report
|
||||
+xen_needs_update patches.xen/xen-staging-build
|
||||
+xen_needs_update patches.xen/xen-sysdev-suspend
|
||||
+xen_needs_update patches.xen/xen-ipi-per-cpu-irq
|
||||
+xen_needs_update patches.xen/xen-virq-per-cpu-irq
|
||||
+xen_needs_update patches.xen/xen-clockevents
|
||||
+xen_needs_update patches.xen/xen-spinlock-poll-early
|
||||
+xen_needs_update patches.xen/xen-pcpu-hotplug
|
||||
+xen_needs_update patches.xen/xen-mem-hotplug
|
||||
+xen_needs_update patches.xen/xen-configurable-guest-devices
|
||||
+xen_needs_update patches.xen/xen-netback-nr-irqs
|
||||
+xen_needs_update patches.xen/xen-netback-notify-multi
|
||||
+xen_needs_update patches.xen/xen-netback-generalize
|
||||
+xen_needs_update patches.xen/xen-netback-multiple-tasklets
|
||||
+xen_needs_update patches.xen/xen-netback-kernel-threads
|
||||
+xen_needs_update patches.xen/xen-netback-allow-large-mtu
|
||||
+xen_needs_update patches.xen/xen-tmem-v1
|
||||
+xen_needs_update patches.xen/xen-dcdbas
|
||||
+xen_needs_update patches.xen/xen-floppy
|
||||
+xen_needs_update patches.xen/xen-kzalloc
|
||||
+xen_needs_update patches.xen/xen-unpriv-build
|
||||
+xen_needs_update patches.xen/xen-setup-gsi
|
||||
+xen_needs_update patches.xen/xen-watchdog
|
||||
+xen_needs_update patches.xen/xen-x86-panic-no-reboot
|
||||
+xen_needs_update patches.xen/xen-x86-dcr-fallback
|
||||
+xen_needs_update patches.xen/xen-x86-consistent-nmi
|
||||
+xen_needs_update patches.xen/xen-x86-no-lapic
|
||||
+xen_needs_update patches.xen/xen-x86-pmd-handling
|
||||
+xen_needs_update patches.xen/xen-x86-bigmem
|
||||
+xen_needs_update patches.xen/xen-x86-exit-mmap
|
||||
+xen_needs_update patches.xen/xen-x86-per-cpu-vcpu-info
|
||||
+xen_needs_update patches.xen/xen-x86-msr-on-pcpu
|
||||
+xen_needs_update patches.xen/xen-x86_64-pgd-pin
|
||||
+xen_needs_update patches.xen/xen-x86_64-pgd-alloc-order
|
||||
+xen_needs_update patches.xen/xen-x86_64-dump-user-pgt
|
||||
+xen_needs_update patches.xen/xen-x86_64-note-init-p2m
|
||||
+xen_needs_update patches.xen/xen-x86_64-unmapped-initrd
|
||||
patches.xen/xen-balloon-max-target
|
||||
patches.xen/xen-modular-blktap
|
||||
patches.xen/xen-blkback-bimodal-suse
|
||||
patches.xen/xen-blkif-protocol-fallback-hack
|
||||
patches.xen/xen-blkback-cdrom
|
||||
patches.xen/xen-blktap-write-barriers
|
||||
patches.xen/xen-op-packet
|
||||
patches.xen/xen-blkfront-cdrom
|
||||
patches.xen/xen-sections
|
||||
patches.xen/xen-swiotlb-heuristics
|
||||
patches.xen/xen-kconfig-compat
|
||||
patches.xen/xen-cpufreq-report
|
||||
patches.xen/xen-staging-build
|
||||
patches.xen/xen-sysdev-suspend
|
||||
patches.xen/xen-ipi-per-cpu-irq
|
||||
patches.xen/xen-virq-per-cpu-irq
|
||||
patches.xen/xen-clockevents
|
||||
patches.xen/xen-spinlock-poll-early
|
||||
patches.xen/xen-pcpu-hotplug
|
||||
patches.xen/xen-mem-hotplug
|
||||
patches.xen/xen-configurable-guest-devices
|
||||
patches.xen/xen-netback-nr-irqs
|
||||
patches.xen/xen-netback-notify-multi
|
||||
patches.xen/xen-netback-generalize
|
||||
patches.xen/xen-netback-multiple-tasklets
|
||||
patches.xen/xen-netback-kernel-threads
|
||||
patches.xen/xen-netback-allow-large-mtu
|
||||
patches.xen/xen-tmem-v1
|
||||
patches.xen/xen-dcdbas
|
||||
patches.xen/xen-floppy
|
||||
patches.xen/xen-kzalloc
|
||||
patches.xen/xen-unpriv-build
|
||||
patches.xen/xen-setup-gsi
|
||||
patches.xen/xen-watchdog
|
||||
patches.xen/xen-x86-panic-no-reboot
|
||||
patches.xen/xen-x86-dcr-fallback
|
||||
patches.xen/xen-x86-no-lapic
|
||||
patches.xen/xen-x86-pmd-handling
|
||||
patches.xen/xen-x86-bigmem
|
||||
patches.xen/xen-x86-exit-mmap
|
||||
patches.xen/xen-x86-per-cpu-vcpu-info
|
||||
patches.xen/xen-x86-msr-on-pcpu
|
||||
patches.xen/xen-x86_64-pgd-pin
|
||||
patches.xen/xen-x86_64-pgd-alloc-order
|
||||
patches.xen/xen-x86_64-dump-user-pgt
|
||||
patches.xen/xen-x86_64-note-init-p2m
|
||||
patches.xen/xen-x86_64-unmapped-initrd
|
||||
|
@ -1,3 +1,3 @@
|
||||
2011-02-07 15:11:49 +0100
|
||||
GIT Revision: 9a3bc94376296119957b334bdce69e132206b6d3
|
||||
2011-02-09 00:09:21 +0100
|
||||
GIT Revision: 4ee537b5bf4d5f656d02e72ae850af0930526734
|
||||
GIT Branch: master
|
||||
|
Loading…
Reference in New Issue
Block a user