forked from pool/kernel-source
GIT Revision: d3e1bc32c6fdaea4c459be19e04dbdec09b1eef7
OBS-URL: https://build.opensuse.org/package/show/Kernel:HEAD/kernel-source?expand=0&rev=6890
This commit is contained in:
parent
02edfea78c
commit
982224b11b
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:686da80fc48e49e74843798ac5df4a88b6372d638432c4def2eb100ef8ce056d
|
||||
size 225419
|
||||
oid sha256:7aa9806387275f97bce79fb73f623659b54b18642e3697beb70a5259dd95608b
|
||||
size 225524
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com
|
||||
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com
|
||||
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com
|
||||
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.36
|
||||
%define kernelrelease 2.6.37-rc6
|
||||
%define kernelrelease 2.6.37-rc7
|
||||
%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.37
|
||||
%if %using_buildservice
|
||||
Release: rc6.<RELEASE>
|
||||
Release: rc7.<RELEASE>
|
||||
%else
|
||||
Release: rc6.0
|
||||
Release: rc7.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -870,6 +870,16 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
* Mon Dec 20 2010 jslaby@suse.cz
|
||||
- Revert "x86: allocate space within a region top-down"
|
||||
(bnc#655048).
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com
|
||||
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com
|
||||
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com
|
||||
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.36
|
||||
%define kernelrelease 2.6.37-rc6
|
||||
%define kernelrelease 2.6.37-rc7
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-default
|
||||
Summary: The Standard Kernel
|
||||
Version: 2.6.37
|
||||
%if %using_buildservice
|
||||
Release: rc6.<RELEASE>
|
||||
Release: rc7.<RELEASE>
|
||||
%else
|
||||
Release: rc6.0
|
||||
Release: rc7.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -883,6 +883,16 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
* Mon Dec 20 2010 jslaby@suse.cz
|
||||
- Revert "x86: allocate space within a region top-down"
|
||||
(bnc#655048).
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com
|
||||
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com
|
||||
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com
|
||||
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.36
|
||||
%define kernelrelease 2.6.37-rc6
|
||||
%define kernelrelease 2.6.37-rc7
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-desktop
|
||||
Summary: Kernel optimized for the desktop
|
||||
Version: 2.6.37
|
||||
%if %using_buildservice
|
||||
Release: rc6.<RELEASE>
|
||||
Release: rc7.<RELEASE>
|
||||
%else
|
||||
Release: rc6.0
|
||||
Release: rc7.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -903,6 +903,16 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
* Mon Dec 20 2010 jslaby@suse.cz
|
||||
- Revert "x86: allocate space within a region top-down"
|
||||
(bnc#655048).
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com
|
||||
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com
|
||||
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com
|
||||
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
%define patchversion 2.6.37-rc6
|
||||
%define patchversion 2.6.37-rc7
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -26,9 +26,9 @@ Name: kernel-docs
|
||||
Summary: Kernel Documentation
|
||||
Version: 2.6.37
|
||||
%if %using_buildservice
|
||||
Release: rc6.<RELEASE>
|
||||
Release: rc7.<RELEASE>
|
||||
%else
|
||||
Release: rc6.0
|
||||
Release: rc7.0
|
||||
%endif
|
||||
BuildRequires: docbook-toys docbook-utils ghostscript_any libjpeg-devel texlive transfig xmlto xorg-x11-devel
|
||||
BuildRequires: kernel-source%variant
|
||||
@ -99,6 +99,16 @@ rm -rf $RPM_BUILD_ROOT
|
||||
/usr/share/doc/kernel
|
||||
|
||||
%changelog
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
* Mon Dec 20 2010 jslaby@suse.cz
|
||||
- Revert "x86: allocate space within a region top-down"
|
||||
(bnc#655048).
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com
|
||||
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com
|
||||
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com
|
||||
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.36
|
||||
%define kernelrelease 2.6.37-rc6
|
||||
%define kernelrelease 2.6.37-rc7
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-ec2
|
||||
Summary: The Amazon EC2 Xen Kernel
|
||||
Version: 2.6.37
|
||||
%if %using_buildservice
|
||||
Release: rc6.<RELEASE>
|
||||
Release: rc7.<RELEASE>
|
||||
%else
|
||||
Release: rc6.0
|
||||
Release: rc7.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -873,6 +873,16 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
* Mon Dec 20 2010 jslaby@suse.cz
|
||||
- Revert "x86: allocate space within a region top-down"
|
||||
(bnc#655048).
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com
|
||||
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com
|
||||
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com
|
||||
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.36
|
||||
%define kernelrelease 2.6.37-rc6
|
||||
%define kernelrelease 2.6.37-rc7
|
||||
%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.37
|
||||
%if %using_buildservice
|
||||
Release: rc6.<RELEASE>
|
||||
Release: rc7.<RELEASE>
|
||||
%else
|
||||
Release: rc6.0
|
||||
Release: rc7.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -870,6 +870,16 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
* Mon Dec 20 2010 jslaby@suse.cz
|
||||
- Revert "x86: allocate space within a region top-down"
|
||||
(bnc#655048).
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com
|
||||
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com
|
||||
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com
|
||||
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.36
|
||||
%define kernelrelease 2.6.37-rc6
|
||||
%define kernelrelease 2.6.37-rc7
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-pae
|
||||
Summary: Kernel with PAE Support
|
||||
Version: 2.6.37
|
||||
%if %using_buildservice
|
||||
Release: rc6.<RELEASE>
|
||||
Release: rc7.<RELEASE>
|
||||
%else
|
||||
Release: rc6.0
|
||||
Release: rc7.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -888,6 +888,16 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
* Mon Dec 20 2010 jslaby@suse.cz
|
||||
- Revert "x86: allocate space within a region top-down"
|
||||
(bnc#655048).
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com
|
||||
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com
|
||||
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com
|
||||
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.36
|
||||
%define kernelrelease 2.6.37-rc6
|
||||
%define kernelrelease 2.6.37-rc7
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-ppc64
|
||||
Summary: Kernel for ppc64 Systems
|
||||
Version: 2.6.37
|
||||
%if %using_buildservice
|
||||
Release: rc6.<RELEASE>
|
||||
Release: rc7.<RELEASE>
|
||||
%else
|
||||
Release: rc6.0
|
||||
Release: rc7.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -892,6 +892,16 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
* Mon Dec 20 2010 jslaby@suse.cz
|
||||
- Revert "x86: allocate space within a region top-down"
|
||||
(bnc#655048).
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com
|
||||
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com
|
||||
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com
|
||||
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.36
|
||||
%define kernelrelease 2.6.37-rc6
|
||||
%define kernelrelease 2.6.37-rc7
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-ps3
|
||||
Summary: kernel for ps3 bootloader
|
||||
Version: 2.6.37
|
||||
%if %using_buildservice
|
||||
Release: rc6.<RELEASE>
|
||||
Release: rc7.<RELEASE>
|
||||
%else
|
||||
Release: rc6.0
|
||||
Release: rc7.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -873,6 +873,16 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
* Mon Dec 20 2010 jslaby@suse.cz
|
||||
- Revert "x86: allocate space within a region top-down"
|
||||
(bnc#655048).
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com
|
||||
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com
|
||||
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com
|
||||
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.36
|
||||
%define kernelrelease 2.6.37-rc6
|
||||
%define kernelrelease 2.6.37-rc7
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-s390
|
||||
Summary: The Standard Kernel
|
||||
Version: 2.6.37
|
||||
%if %using_buildservice
|
||||
Release: rc6.<RELEASE>
|
||||
Release: rc7.<RELEASE>
|
||||
%else
|
||||
Release: rc6.0
|
||||
Release: rc7.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -867,6 +867,16 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
* Mon Dec 20 2010 jslaby@suse.cz
|
||||
- Revert "x86: allocate space within a region top-down"
|
||||
(bnc#655048).
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com
|
||||
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com
|
||||
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com
|
||||
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
# icecream 0
|
||||
|
||||
%define srcversion 2.6.36
|
||||
%define kernelrelease 2.6.37-rc6
|
||||
%define kernelrelease 2.6.37-rc7
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -32,9 +32,9 @@ Name: kernel-source
|
||||
Summary: The Linux Kernel Sources
|
||||
Version: 2.6.37
|
||||
%if %using_buildservice
|
||||
Release: rc6.<RELEASE>
|
||||
Release: rc7.<RELEASE>
|
||||
%else
|
||||
Release: rc6.0
|
||||
Release: rc7.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: Development/Sources
|
||||
@ -243,6 +243,16 @@ popd
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
* Mon Dec 20 2010 jslaby@suse.cz
|
||||
- Revert "x86: allocate space within a region top-down"
|
||||
(bnc#655048).
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com
|
||||
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com
|
||||
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com
|
||||
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz
|
||||
|
||||
|
@ -25,7 +25,7 @@ Name: kernel-syms
|
||||
Summary: Kernel Symbol Versions (modversions)
|
||||
Version: 2.6.37
|
||||
%if %using_buildservice
|
||||
Release: rc6.<RELEASE>
|
||||
Release: rc7.<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
|
||||
@ -81,6 +81,16 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
|
||||
%_docdir/%name/README.SUSE
|
||||
|
||||
%changelog
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
* Mon Dec 20 2010 jslaby@suse.cz
|
||||
- Revert "x86: allocate space within a region top-down"
|
||||
(bnc#655048).
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com
|
||||
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com
|
||||
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com
|
||||
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.36
|
||||
%define kernelrelease 2.6.37-rc6
|
||||
%define kernelrelease 2.6.37-rc7
|
||||
%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.37
|
||||
%if %using_buildservice
|
||||
Release: rc6.<RELEASE>
|
||||
Release: rc7.<RELEASE>
|
||||
%else
|
||||
Release: rc6.0
|
||||
Release: rc7.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -875,6 +875,16 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
* Mon Dec 20 2010 jslaby@suse.cz
|
||||
- Revert "x86: allocate space within a region top-down"
|
||||
(bnc#655048).
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com
|
||||
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com
|
||||
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com
|
||||
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.36
|
||||
%define kernelrelease 2.6.37-rc6
|
||||
%define kernelrelease 2.6.37-rc7
|
||||
%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.37
|
||||
%if %using_buildservice
|
||||
Release: rc6.<RELEASE>
|
||||
Release: rc7.<RELEASE>
|
||||
%else
|
||||
Release: rc6.0
|
||||
Release: rc7.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -871,6 +871,16 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
* Mon Dec 20 2010 jslaby@suse.cz
|
||||
- Revert "x86: allocate space within a region top-down"
|
||||
(bnc#655048).
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com
|
||||
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com
|
||||
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com
|
||||
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.36
|
||||
%define kernelrelease 2.6.37-rc6
|
||||
%define kernelrelease 2.6.37-rc7
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-vmi
|
||||
Summary: VMI-enabled kernel
|
||||
Version: 2.6.37
|
||||
%if %using_buildservice
|
||||
Release: rc6.<RELEASE>
|
||||
Release: rc7.<RELEASE>
|
||||
%else
|
||||
Release: rc6.0
|
||||
Release: rc7.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -867,6 +867,16 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
* Mon Dec 20 2010 jslaby@suse.cz
|
||||
- Revert "x86: allocate space within a region top-down"
|
||||
(bnc#655048).
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:28:19 CET 2010 - jeffm@suse.com
|
||||
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:24:08 CET 2010 - jeffm@suse.com
|
||||
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 27 23:09:38 CET 2010 - jeffm@suse.com
|
||||
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 20 12:48:45 CET 2010 - jslaby@suse.cz
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.36
|
||||
%define kernelrelease 2.6.37-rc6
|
||||
%define kernelrelease 2.6.37-rc7
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@ -57,9 +57,9 @@ Name: kernel-xen
|
||||
Summary: The Xen Kernel
|
||||
Version: 2.6.37
|
||||
%if %using_buildservice
|
||||
Release: rc6.<RELEASE>
|
||||
Release: rc7.<RELEASE>
|
||||
%else
|
||||
Release: rc6.0
|
||||
Release: rc7.0
|
||||
%endif
|
||||
License: GPL v2 only
|
||||
Group: System/Kernel
|
||||
@ -873,6 +873,16 @@ Debug information for package %name-devel
|
||||
%files devel-debuginfo -f vmlinux.debug.files
|
||||
|
||||
%changelog
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- scripts/wd-functions.sh: Re-added support for finding tarball in $MIRROR.
|
||||
- commit c8014fb
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- sched, cgroup: Use exit hook to avoid use-after-free crash.
|
||||
- commit 59c0581
|
||||
* Mon Dec 27 2010 jeffm@suse.com
|
||||
- Update to 2.6.37-rc7.
|
||||
- Eliminated 9 patches.
|
||||
- commit d38591c
|
||||
* Mon Dec 20 2010 jslaby@suse.cz
|
||||
- Revert "x86: allocate space within a region top-down"
|
||||
(bnc#655048).
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:554e75a5433d841dd7d1e201b22b9322d154a4dffebd871417cdf75b05b3668a
|
||||
size 84399
|
||||
oid sha256:1af8c2bfaf169d9d90fdfe414692cc1004d92275d42661cb13cf738bb882adc1
|
||||
size 78155
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f0f1669e72a761aa297504ef31b460b4b3b30c091cf1f39d947840a6f17de6cc
|
||||
size 12899136
|
||||
oid sha256:df8855514fa94e5e3343963dd3dee040da4b5a60e19b66183581d28651dc95fb
|
||||
size 12956289
|
||||
|
16
series.conf
16
series.conf
@ -33,6 +33,7 @@
|
||||
patches.kernel.org/patch-2.6.37-rc3-rc4
|
||||
patches.kernel.org/patch-2.6.37-rc4-rc5
|
||||
patches.kernel.org/patch-2.6.37-rc5-rc6
|
||||
patches.kernel.org/patch-2.6.37-rc6-rc7
|
||||
|
||||
########################################################
|
||||
# Build fixes that apply to the vanilla kernel too.
|
||||
@ -95,15 +96,12 @@
|
||||
|
||||
patches.suse/sched-automated-per-session-task-groups
|
||||
|
||||
patches.fixes/res-0001-Revert-PCI-fix-pci_bus_alloc_resource-hang-prefer-po.patch
|
||||
patches.fixes/res-0002-Revert-x86-allocate-space-within-a-region-top-down.patch
|
||||
patches.fixes/res-0003-Revert-x86-PCI-allocate-space-from-the-end-of-a-regi.patch
|
||||
patches.fixes/res-0004-Revert-PCI-allocate-bus-resources-from-the-top-down.patch
|
||||
patches.fixes/res-0005-Revert-resources-support-allocating-space-within-a-r.patch
|
||||
patches.fixes/res-0006-resources-add-arch-hook-for-preventing-allocation-in.patch
|
||||
patches.fixes/res-0007-x86-avoid-low-BIOS-area-when-allocating-address-spac.patch
|
||||
patches.fixes/res-0008-x86-avoid-E820-regions-when-allocating-address-space.patch
|
||||
patches.fixes/res-0009-x86-avoid-high-BIOS-area-when-allocating-address-spa.patch
|
||||
# This is not the correct fix. The check can be done at
|
||||
# cgroup exit instead with less of an impact on performance.
|
||||
# Once that patch is released, then this one should go away.
|
||||
# I'm accepting it for now because it fixes the crashes that
|
||||
# many of us have been seeing with 2.6.37-rcX. -jeffm
|
||||
patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash
|
||||
|
||||
########################################################
|
||||
# Architecture-specific patches. These used to be all
|
||||
|
@ -1,3 +1,3 @@
|
||||
2010-12-20 15:49:55 +0100
|
||||
GIT Revision: 1af8e1c8fa40b76fa16d03bc6987628ab0a1b29a
|
||||
2010-12-27 23:51:12 +0100
|
||||
GIT Revision: d3e1bc32c6fdaea4c459be19e04dbdec09b1eef7
|
||||
GIT Branch: master
|
||||
|
Loading…
Reference in New Issue
Block a user