Accepting request 60424 from Kernel:openSUSE-11.4

Accepted submit request 60424 from user michal-m

OBS-URL: https://build.opensuse.org/request/show/60424
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kernel-source?expand=0&rev=127
This commit is contained in:
Ruediger Oertel 2011-02-11 01:18:12 +00:00 committed by Git OBS Bridge
parent 18e7be3f39
commit 9cc54beab0
47 changed files with 231881 additions and 547 deletions

View File

@ -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

View File

@ -228,7 +228,7 @@ else
cp ../config/%cpu_arch_flavor .config
fi
%build_src_dir/scripts/config \
--set-str CONFIG_LOCALVERSION -%release_major-%build_flavor \
--set-str CONFIG_LOCALVERSION %release_num-%build_flavor \
--enable CONFIG_SUSE_KERNEL \
%if 0%{?__debug_package:1}
--enable CONFIG_DEBUG_INFO \
@ -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

View File

@ -1,3 +1,133 @@
-------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- commit 31e675a
-------------------------------------------------------------------
Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
-------------------------------------------------------------------
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 e211a69
-------------------------------------------------------------------
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 d6a7494
-------------------------------------------------------------------
Tue Feb 8 17:24:22 CET 2011 - jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
-------------------------------------------------------------------
Tue Feb 8 16:52:35 CET 2011 - jbeulich@novell.com
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
- commit f82619b
-------------------------------------------------------------------
Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
- staging: rt2860: Fix incorrect netif_stop_queue usage warning
(bnc#661657).
- commit 39b4c1e
-------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
-------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
-------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 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 3de2a1a
-------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
-------------------------------------------------------------------
Thu Feb 3 21:54:01 CET 2011 - rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
-------------------------------------------------------------------
Thu Feb 3 17:46:29 CET 2011 - jbeulich@novell.com
- Update Xen patches to c/s 1066.
- cpuidle/x86/perf: fix power:cpu_idle double end events and
throw cpu_idle events from the cpuidle layer (bnc#665153).
- perf: Clean up power events by introducing new, more generic
ones (bnc#665153).
- commit e88242f
-------------------------------------------------------------------
Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- commit 7dbcb59
-------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- commit 36bcdd7
-------------------------------------------------------------------
Mon Jan 31 13:22:49 CET 2011 - jslaby@suse.cz
- block: loop queue_lock null pointer derefence in blk_throtl_exit
v3 (bnc#666598).
- commit cd38efd
-------------------------------------------------------------------
Mon Jan 31 10:47:27 CET 2011 - jslaby@suse.cz
- Fix prlimit64 for suid/sgid processes (bnc#668262).
- commit dae8217
-------------------------------------------------------------------
Sun Jan 23 23:19:08 CET 2011 - jeffm@suse.com
- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279).
- commit 3e2a2b2
-------------------------------------------------------------------
Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,133 @@
-------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- commit 31e675a
-------------------------------------------------------------------
Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
-------------------------------------------------------------------
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 e211a69
-------------------------------------------------------------------
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 d6a7494
-------------------------------------------------------------------
Tue Feb 8 17:24:22 CET 2011 - jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
-------------------------------------------------------------------
Tue Feb 8 16:52:35 CET 2011 - jbeulich@novell.com
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
- commit f82619b
-------------------------------------------------------------------
Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
- staging: rt2860: Fix incorrect netif_stop_queue usage warning
(bnc#661657).
- commit 39b4c1e
-------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
-------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
-------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 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 3de2a1a
-------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
-------------------------------------------------------------------
Thu Feb 3 21:54:01 CET 2011 - rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
-------------------------------------------------------------------
Thu Feb 3 17:46:29 CET 2011 - jbeulich@novell.com
- Update Xen patches to c/s 1066.
- cpuidle/x86/perf: fix power:cpu_idle double end events and
throw cpu_idle events from the cpuidle layer (bnc#665153).
- perf: Clean up power events by introducing new, more generic
ones (bnc#665153).
- commit e88242f
-------------------------------------------------------------------
Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- commit 7dbcb59
-------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- commit 36bcdd7
-------------------------------------------------------------------
Mon Jan 31 13:22:49 CET 2011 - jslaby@suse.cz
- block: loop queue_lock null pointer derefence in blk_throtl_exit
v3 (bnc#666598).
- commit cd38efd
-------------------------------------------------------------------
Mon Jan 31 10:47:27 CET 2011 - jslaby@suse.cz
- Fix prlimit64 for suid/sgid processes (bnc#668262).
- commit dae8217
-------------------------------------------------------------------
Sun Jan 23 23:19:08 CET 2011 - jeffm@suse.com
- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279).
- commit 3e2a2b2
-------------------------------------------------------------------
Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,133 @@
-------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- commit 31e675a
-------------------------------------------------------------------
Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
-------------------------------------------------------------------
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 e211a69
-------------------------------------------------------------------
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 d6a7494
-------------------------------------------------------------------
Tue Feb 8 17:24:22 CET 2011 - jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
-------------------------------------------------------------------
Tue Feb 8 16:52:35 CET 2011 - jbeulich@novell.com
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
- commit f82619b
-------------------------------------------------------------------
Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
- staging: rt2860: Fix incorrect netif_stop_queue usage warning
(bnc#661657).
- commit 39b4c1e
-------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
-------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
-------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 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 3de2a1a
-------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
-------------------------------------------------------------------
Thu Feb 3 21:54:01 CET 2011 - rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
-------------------------------------------------------------------
Thu Feb 3 17:46:29 CET 2011 - jbeulich@novell.com
- Update Xen patches to c/s 1066.
- cpuidle/x86/perf: fix power:cpu_idle double end events and
throw cpu_idle events from the cpuidle layer (bnc#665153).
- perf: Clean up power events by introducing new, more generic
ones (bnc#665153).
- commit e88242f
-------------------------------------------------------------------
Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- commit 7dbcb59
-------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- commit 36bcdd7
-------------------------------------------------------------------
Mon Jan 31 13:22:49 CET 2011 - jslaby@suse.cz
- block: loop queue_lock null pointer derefence in blk_throtl_exit
v3 (bnc#666598).
- commit cd38efd
-------------------------------------------------------------------
Mon Jan 31 10:47:27 CET 2011 - jslaby@suse.cz
- Fix prlimit64 for suid/sgid processes (bnc#668262).
- commit dae8217
-------------------------------------------------------------------
Sun Jan 23 23:19:08 CET 2011 - jeffm@suse.com
- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279).
- commit 3e2a2b2
-------------------------------------------------------------------
Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,133 @@
-------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- commit 31e675a
-------------------------------------------------------------------
Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
-------------------------------------------------------------------
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 e211a69
-------------------------------------------------------------------
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 d6a7494
-------------------------------------------------------------------
Tue Feb 8 17:24:22 CET 2011 - jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
-------------------------------------------------------------------
Tue Feb 8 16:52:35 CET 2011 - jbeulich@novell.com
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
- commit f82619b
-------------------------------------------------------------------
Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
- staging: rt2860: Fix incorrect netif_stop_queue usage warning
(bnc#661657).
- commit 39b4c1e
-------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
-------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
-------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 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 3de2a1a
-------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
-------------------------------------------------------------------
Thu Feb 3 21:54:01 CET 2011 - rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
-------------------------------------------------------------------
Thu Feb 3 17:46:29 CET 2011 - jbeulich@novell.com
- Update Xen patches to c/s 1066.
- cpuidle/x86/perf: fix power:cpu_idle double end events and
throw cpu_idle events from the cpuidle layer (bnc#665153).
- perf: Clean up power events by introducing new, more generic
ones (bnc#665153).
- commit e88242f
-------------------------------------------------------------------
Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- commit 7dbcb59
-------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- commit 36bcdd7
-------------------------------------------------------------------
Mon Jan 31 13:22:49 CET 2011 - jslaby@suse.cz
- block: loop queue_lock null pointer derefence in blk_throtl_exit
v3 (bnc#666598).
- commit cd38efd
-------------------------------------------------------------------
Mon Jan 31 10:47:27 CET 2011 - jslaby@suse.cz
- Fix prlimit64 for suid/sgid processes (bnc#668262).
- commit dae8217
-------------------------------------------------------------------
Sun Jan 23 23:19:08 CET 2011 - jeffm@suse.com
- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279).
- commit 3e2a2b2
-------------------------------------------------------------------
Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,133 @@
-------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- commit 31e675a
-------------------------------------------------------------------
Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
-------------------------------------------------------------------
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 e211a69
-------------------------------------------------------------------
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 d6a7494
-------------------------------------------------------------------
Tue Feb 8 17:24:22 CET 2011 - jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
-------------------------------------------------------------------
Tue Feb 8 16:52:35 CET 2011 - jbeulich@novell.com
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
- commit f82619b
-------------------------------------------------------------------
Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
- staging: rt2860: Fix incorrect netif_stop_queue usage warning
(bnc#661657).
- commit 39b4c1e
-------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
-------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
-------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 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 3de2a1a
-------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
-------------------------------------------------------------------
Thu Feb 3 21:54:01 CET 2011 - rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
-------------------------------------------------------------------
Thu Feb 3 17:46:29 CET 2011 - jbeulich@novell.com
- Update Xen patches to c/s 1066.
- cpuidle/x86/perf: fix power:cpu_idle double end events and
throw cpu_idle events from the cpuidle layer (bnc#665153).
- perf: Clean up power events by introducing new, more generic
ones (bnc#665153).
- commit e88242f
-------------------------------------------------------------------
Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- commit 7dbcb59
-------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- commit 36bcdd7
-------------------------------------------------------------------
Mon Jan 31 13:22:49 CET 2011 - jslaby@suse.cz
- block: loop queue_lock null pointer derefence in blk_throtl_exit
v3 (bnc#666598).
- commit cd38efd
-------------------------------------------------------------------
Mon Jan 31 10:47:27 CET 2011 - jslaby@suse.cz
- Fix prlimit64 for suid/sgid processes (bnc#668262).
- commit dae8217
-------------------------------------------------------------------
Sun Jan 23 23:19:08 CET 2011 - jeffm@suse.com
- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279).
- commit 3e2a2b2
-------------------------------------------------------------------
Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,133 @@
-------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- commit 31e675a
-------------------------------------------------------------------
Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
-------------------------------------------------------------------
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 e211a69
-------------------------------------------------------------------
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 d6a7494
-------------------------------------------------------------------
Tue Feb 8 17:24:22 CET 2011 - jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
-------------------------------------------------------------------
Tue Feb 8 16:52:35 CET 2011 - jbeulich@novell.com
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
- commit f82619b
-------------------------------------------------------------------
Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
- staging: rt2860: Fix incorrect netif_stop_queue usage warning
(bnc#661657).
- commit 39b4c1e
-------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
-------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
-------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 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 3de2a1a
-------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
-------------------------------------------------------------------
Thu Feb 3 21:54:01 CET 2011 - rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
-------------------------------------------------------------------
Thu Feb 3 17:46:29 CET 2011 - jbeulich@novell.com
- Update Xen patches to c/s 1066.
- cpuidle/x86/perf: fix power:cpu_idle double end events and
throw cpu_idle events from the cpuidle layer (bnc#665153).
- perf: Clean up power events by introducing new, more generic
ones (bnc#665153).
- commit e88242f
-------------------------------------------------------------------
Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- commit 7dbcb59
-------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- commit 36bcdd7
-------------------------------------------------------------------
Mon Jan 31 13:22:49 CET 2011 - jslaby@suse.cz
- block: loop queue_lock null pointer derefence in blk_throtl_exit
v3 (bnc#666598).
- commit cd38efd
-------------------------------------------------------------------
Mon Jan 31 10:47:27 CET 2011 - jslaby@suse.cz
- Fix prlimit64 for suid/sgid processes (bnc#668262).
- commit dae8217
-------------------------------------------------------------------
Sun Jan 23 23:19:08 CET 2011 - jeffm@suse.com
- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279).
- commit 3e2a2b2
-------------------------------------------------------------------
Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,133 @@
-------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- commit 31e675a
-------------------------------------------------------------------
Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
-------------------------------------------------------------------
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 e211a69
-------------------------------------------------------------------
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 d6a7494
-------------------------------------------------------------------
Tue Feb 8 17:24:22 CET 2011 - jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
-------------------------------------------------------------------
Tue Feb 8 16:52:35 CET 2011 - jbeulich@novell.com
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
- commit f82619b
-------------------------------------------------------------------
Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
- staging: rt2860: Fix incorrect netif_stop_queue usage warning
(bnc#661657).
- commit 39b4c1e
-------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
-------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
-------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 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 3de2a1a
-------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
-------------------------------------------------------------------
Thu Feb 3 21:54:01 CET 2011 - rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
-------------------------------------------------------------------
Thu Feb 3 17:46:29 CET 2011 - jbeulich@novell.com
- Update Xen patches to c/s 1066.
- cpuidle/x86/perf: fix power:cpu_idle double end events and
throw cpu_idle events from the cpuidle layer (bnc#665153).
- perf: Clean up power events by introducing new, more generic
ones (bnc#665153).
- commit e88242f
-------------------------------------------------------------------
Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- commit 7dbcb59
-------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- commit 36bcdd7
-------------------------------------------------------------------
Mon Jan 31 13:22:49 CET 2011 - jslaby@suse.cz
- block: loop queue_lock null pointer derefence in blk_throtl_exit
v3 (bnc#666598).
- commit cd38efd
-------------------------------------------------------------------
Mon Jan 31 10:47:27 CET 2011 - jslaby@suse.cz
- Fix prlimit64 for suid/sgid processes (bnc#668262).
- commit dae8217
-------------------------------------------------------------------
Sun Jan 23 23:19:08 CET 2011 - jeffm@suse.com
- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279).
- commit 3e2a2b2
-------------------------------------------------------------------
Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,133 @@
-------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- commit 31e675a
-------------------------------------------------------------------
Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
-------------------------------------------------------------------
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 e211a69
-------------------------------------------------------------------
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 d6a7494
-------------------------------------------------------------------
Tue Feb 8 17:24:22 CET 2011 - jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
-------------------------------------------------------------------
Tue Feb 8 16:52:35 CET 2011 - jbeulich@novell.com
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
- commit f82619b
-------------------------------------------------------------------
Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
- staging: rt2860: Fix incorrect netif_stop_queue usage warning
(bnc#661657).
- commit 39b4c1e
-------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
-------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
-------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 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 3de2a1a
-------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
-------------------------------------------------------------------
Thu Feb 3 21:54:01 CET 2011 - rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
-------------------------------------------------------------------
Thu Feb 3 17:46:29 CET 2011 - jbeulich@novell.com
- Update Xen patches to c/s 1066.
- cpuidle/x86/perf: fix power:cpu_idle double end events and
throw cpu_idle events from the cpuidle layer (bnc#665153).
- perf: Clean up power events by introducing new, more generic
ones (bnc#665153).
- commit e88242f
-------------------------------------------------------------------
Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- commit 7dbcb59
-------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- commit 36bcdd7
-------------------------------------------------------------------
Mon Jan 31 13:22:49 CET 2011 - jslaby@suse.cz
- block: loop queue_lock null pointer derefence in blk_throtl_exit
v3 (bnc#666598).
- commit cd38efd
-------------------------------------------------------------------
Mon Jan 31 10:47:27 CET 2011 - jslaby@suse.cz
- Fix prlimit64 for suid/sgid processes (bnc#668262).
- commit dae8217
-------------------------------------------------------------------
Sun Jan 23 23:19:08 CET 2011 - jeffm@suse.com
- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279).
- commit 3e2a2b2
-------------------------------------------------------------------
Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,133 @@
-------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- commit 31e675a
-------------------------------------------------------------------
Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
-------------------------------------------------------------------
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 e211a69
-------------------------------------------------------------------
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 d6a7494
-------------------------------------------------------------------
Tue Feb 8 17:24:22 CET 2011 - jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
-------------------------------------------------------------------
Tue Feb 8 16:52:35 CET 2011 - jbeulich@novell.com
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
- commit f82619b
-------------------------------------------------------------------
Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
- staging: rt2860: Fix incorrect netif_stop_queue usage warning
(bnc#661657).
- commit 39b4c1e
-------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
-------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
-------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 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 3de2a1a
-------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
-------------------------------------------------------------------
Thu Feb 3 21:54:01 CET 2011 - rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
-------------------------------------------------------------------
Thu Feb 3 17:46:29 CET 2011 - jbeulich@novell.com
- Update Xen patches to c/s 1066.
- cpuidle/x86/perf: fix power:cpu_idle double end events and
throw cpu_idle events from the cpuidle layer (bnc#665153).
- perf: Clean up power events by introducing new, more generic
ones (bnc#665153).
- commit e88242f
-------------------------------------------------------------------
Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- commit 7dbcb59
-------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- commit 36bcdd7
-------------------------------------------------------------------
Mon Jan 31 13:22:49 CET 2011 - jslaby@suse.cz
- block: loop queue_lock null pointer derefence in blk_throtl_exit
v3 (bnc#666598).
- commit cd38efd
-------------------------------------------------------------------
Mon Jan 31 10:47:27 CET 2011 - jslaby@suse.cz
- Fix prlimit64 for suid/sgid processes (bnc#668262).
- commit dae8217
-------------------------------------------------------------------
Sun Jan 23 23:19:08 CET 2011 - jeffm@suse.com
- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279).
- commit 3e2a2b2
-------------------------------------------------------------------
Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,133 @@
-------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- commit 31e675a
-------------------------------------------------------------------
Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
-------------------------------------------------------------------
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 e211a69
-------------------------------------------------------------------
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 d6a7494
-------------------------------------------------------------------
Tue Feb 8 17:24:22 CET 2011 - jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
-------------------------------------------------------------------
Tue Feb 8 16:52:35 CET 2011 - jbeulich@novell.com
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
- commit f82619b
-------------------------------------------------------------------
Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
- staging: rt2860: Fix incorrect netif_stop_queue usage warning
(bnc#661657).
- commit 39b4c1e
-------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
-------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
-------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 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 3de2a1a
-------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
-------------------------------------------------------------------
Thu Feb 3 21:54:01 CET 2011 - rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
-------------------------------------------------------------------
Thu Feb 3 17:46:29 CET 2011 - jbeulich@novell.com
- Update Xen patches to c/s 1066.
- cpuidle/x86/perf: fix power:cpu_idle double end events and
throw cpu_idle events from the cpuidle layer (bnc#665153).
- perf: Clean up power events by introducing new, more generic
ones (bnc#665153).
- commit e88242f
-------------------------------------------------------------------
Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- commit 7dbcb59
-------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- commit 36bcdd7
-------------------------------------------------------------------
Mon Jan 31 13:22:49 CET 2011 - jslaby@suse.cz
- block: loop queue_lock null pointer derefence in blk_throtl_exit
v3 (bnc#666598).
- commit cd38efd
-------------------------------------------------------------------
Mon Jan 31 10:47:27 CET 2011 - jslaby@suse.cz
- Fix prlimit64 for suid/sgid processes (bnc#668262).
- commit dae8217
-------------------------------------------------------------------
Sun Jan 23 23:19:08 CET 2011 - jeffm@suse.com
- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279).
- commit 3e2a2b2
-------------------------------------------------------------------
Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,133 @@
-------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- commit 31e675a
-------------------------------------------------------------------
Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
-------------------------------------------------------------------
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 e211a69
-------------------------------------------------------------------
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 d6a7494
-------------------------------------------------------------------
Tue Feb 8 17:24:22 CET 2011 - jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
-------------------------------------------------------------------
Tue Feb 8 16:52:35 CET 2011 - jbeulich@novell.com
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
- commit f82619b
-------------------------------------------------------------------
Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
- staging: rt2860: Fix incorrect netif_stop_queue usage warning
(bnc#661657).
- commit 39b4c1e
-------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
-------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
-------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 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 3de2a1a
-------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
-------------------------------------------------------------------
Thu Feb 3 21:54:01 CET 2011 - rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
-------------------------------------------------------------------
Thu Feb 3 17:46:29 CET 2011 - jbeulich@novell.com
- Update Xen patches to c/s 1066.
- cpuidle/x86/perf: fix power:cpu_idle double end events and
throw cpu_idle events from the cpuidle layer (bnc#665153).
- perf: Clean up power events by introducing new, more generic
ones (bnc#665153).
- commit e88242f
-------------------------------------------------------------------
Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- commit 7dbcb59
-------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- commit 36bcdd7
-------------------------------------------------------------------
Mon Jan 31 13:22:49 CET 2011 - jslaby@suse.cz
- block: loop queue_lock null pointer derefence in blk_throtl_exit
v3 (bnc#666598).
- commit cd38efd
-------------------------------------------------------------------
Mon Jan 31 10:47:27 CET 2011 - jslaby@suse.cz
- Fix prlimit64 for suid/sgid processes (bnc#668262).
- commit dae8217
-------------------------------------------------------------------
Sun Jan 23 23:19:08 CET 2011 - jeffm@suse.com
- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279).
- commit 3e2a2b2
-------------------------------------------------------------------
Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -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
@ -222,6 +223,14 @@ perl "%_sourcedir/group-source-files.pl" \
-L "%src_install_dir"
popd
# kernel-source and kernel-$flavor-devel are built independently, but the
# shipped sources (/usr/src/linux/) need to be older than generated files
# (/usr/src/linux-obj). We rely on the git commit timestamp to not point into
# the future and be thus lower than the timestamps of files built from the
# source (bnc#669669).
ts="$(head -n1 %_sourcedir/source-timestamp)"
find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
%post -f %name-post.sh
%post -n kernel-devel%variant -f %name-post.sh
@ -237,6 +246,7 @@ popd
/usr/share/doc/packages/%name
/etc/rpm/macros.kernel-source
/usr/lib/rpm/kernel-module-subpackage
%endif
%if %do_vanilla
%files vanilla

View File

@ -5,14 +5,28 @@
%define _buildshell /bin/bash
%define using_buildservice 0%{?opensuse_bs}
# source_rel is the package release string, without the rebuild counter
# generated by the build service. In non-official builds, the upstream
# EXTRAVERSION component is also part of the release string,
# e.g. next.20110101.9.6 (hyphens are replaced by periods). Builds in the
# official distribution projects replace the release string though.
%define source_rel %release
%if %using_buildservice
# The last digit is a volatile rebuild counter, strip it
%define source_rel %(release=%release; echo ${release%.*})
%endif
%define release_major %(rel="%source_rel" ; echo "${rel##[^0-9]*.}")
%define kernelrelease %patchversion-%release_major
# release_num is the numeric source revision part of the release number,
# i.e. source_rel without the upstream tags like -rcX. A hyphen is added
# automatically for convenient use.
# examples: rc3 -> "", rc3.1 -> -1, next.20110101.9 -> -9
#
# patchversion is inserted into the spec files by the mkspec script, it is the
# upstream release string unchanged, e.g. 2.6.38-rc3
%define release_num %(upstream=%patchversion; upstream=${upstream#%version}; upstream=${upstream#-}; upstream=${upstream//-/.}; rel="%source_rel" ; res="${rel#$upstream}"; res=${res#.}; echo ${res:+-}${res})
# how the kernel release string (uname -r) should look like
%define kernelrelease %patchversion%release_num
%define my_builddir %_builddir/%{name}-%{version}

View File

@ -1,3 +1,133 @@
-------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- commit 31e675a
-------------------------------------------------------------------
Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
-------------------------------------------------------------------
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 e211a69
-------------------------------------------------------------------
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 d6a7494
-------------------------------------------------------------------
Tue Feb 8 17:24:22 CET 2011 - jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
-------------------------------------------------------------------
Tue Feb 8 16:52:35 CET 2011 - jbeulich@novell.com
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
- commit f82619b
-------------------------------------------------------------------
Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
- staging: rt2860: Fix incorrect netif_stop_queue usage warning
(bnc#661657).
- commit 39b4c1e
-------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
-------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
-------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 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 3de2a1a
-------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
-------------------------------------------------------------------
Thu Feb 3 21:54:01 CET 2011 - rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
-------------------------------------------------------------------
Thu Feb 3 17:46:29 CET 2011 - jbeulich@novell.com
- Update Xen patches to c/s 1066.
- cpuidle/x86/perf: fix power:cpu_idle double end events and
throw cpu_idle events from the cpuidle layer (bnc#665153).
- perf: Clean up power events by introducing new, more generic
ones (bnc#665153).
- commit e88242f
-------------------------------------------------------------------
Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- commit 7dbcb59
-------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- commit 36bcdd7
-------------------------------------------------------------------
Mon Jan 31 13:22:49 CET 2011 - jslaby@suse.cz
- block: loop queue_lock null pointer derefence in blk_throtl_exit
v3 (bnc#666598).
- commit cd38efd
-------------------------------------------------------------------
Mon Jan 31 10:47:27 CET 2011 - jslaby@suse.cz
- Fix prlimit64 for suid/sgid processes (bnc#668262).
- commit dae8217
-------------------------------------------------------------------
Sun Jan 23 23:19:08 CET 2011 - jeffm@suse.com
- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279).
- commit 3e2a2b2
-------------------------------------------------------------------
Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,133 @@
-------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- commit 31e675a
-------------------------------------------------------------------
Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
-------------------------------------------------------------------
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 e211a69
-------------------------------------------------------------------
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 d6a7494
-------------------------------------------------------------------
Tue Feb 8 17:24:22 CET 2011 - jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
-------------------------------------------------------------------
Tue Feb 8 16:52:35 CET 2011 - jbeulich@novell.com
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
- commit f82619b
-------------------------------------------------------------------
Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
- staging: rt2860: Fix incorrect netif_stop_queue usage warning
(bnc#661657).
- commit 39b4c1e
-------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
-------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
-------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 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 3de2a1a
-------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
-------------------------------------------------------------------
Thu Feb 3 21:54:01 CET 2011 - rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
-------------------------------------------------------------------
Thu Feb 3 17:46:29 CET 2011 - jbeulich@novell.com
- Update Xen patches to c/s 1066.
- cpuidle/x86/perf: fix power:cpu_idle double end events and
throw cpu_idle events from the cpuidle layer (bnc#665153).
- perf: Clean up power events by introducing new, more generic
ones (bnc#665153).
- commit e88242f
-------------------------------------------------------------------
Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- commit 7dbcb59
-------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- commit 36bcdd7
-------------------------------------------------------------------
Mon Jan 31 13:22:49 CET 2011 - jslaby@suse.cz
- block: loop queue_lock null pointer derefence in blk_throtl_exit
v3 (bnc#666598).
- commit cd38efd
-------------------------------------------------------------------
Mon Jan 31 10:47:27 CET 2011 - jslaby@suse.cz
- Fix prlimit64 for suid/sgid processes (bnc#668262).
- commit dae8217
-------------------------------------------------------------------
Sun Jan 23 23:19:08 CET 2011 - jeffm@suse.com
- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279).
- commit 3e2a2b2
-------------------------------------------------------------------
Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,133 @@
-------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- commit 31e675a
-------------------------------------------------------------------
Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
-------------------------------------------------------------------
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 e211a69
-------------------------------------------------------------------
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 d6a7494
-------------------------------------------------------------------
Tue Feb 8 17:24:22 CET 2011 - jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
-------------------------------------------------------------------
Tue Feb 8 16:52:35 CET 2011 - jbeulich@novell.com
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
- commit f82619b
-------------------------------------------------------------------
Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
- staging: rt2860: Fix incorrect netif_stop_queue usage warning
(bnc#661657).
- commit 39b4c1e
-------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
-------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
-------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 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 3de2a1a
-------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
-------------------------------------------------------------------
Thu Feb 3 21:54:01 CET 2011 - rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
-------------------------------------------------------------------
Thu Feb 3 17:46:29 CET 2011 - jbeulich@novell.com
- Update Xen patches to c/s 1066.
- cpuidle/x86/perf: fix power:cpu_idle double end events and
throw cpu_idle events from the cpuidle layer (bnc#665153).
- perf: Clean up power events by introducing new, more generic
ones (bnc#665153).
- commit e88242f
-------------------------------------------------------------------
Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- commit 7dbcb59
-------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- commit 36bcdd7
-------------------------------------------------------------------
Mon Jan 31 13:22:49 CET 2011 - jslaby@suse.cz
- block: loop queue_lock null pointer derefence in blk_throtl_exit
v3 (bnc#666598).
- commit cd38efd
-------------------------------------------------------------------
Mon Jan 31 10:47:27 CET 2011 - jslaby@suse.cz
- Fix prlimit64 for suid/sgid processes (bnc#668262).
- commit dae8217
-------------------------------------------------------------------
Sun Jan 23 23:19:08 CET 2011 - jeffm@suse.com
- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279).
- commit 3e2a2b2
-------------------------------------------------------------------
Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,133 @@
-------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- commit 31e675a
-------------------------------------------------------------------
Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
-------------------------------------------------------------------
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 e211a69
-------------------------------------------------------------------
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 d6a7494
-------------------------------------------------------------------
Tue Feb 8 17:24:22 CET 2011 - jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
-------------------------------------------------------------------
Tue Feb 8 16:52:35 CET 2011 - jbeulich@novell.com
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
- commit f82619b
-------------------------------------------------------------------
Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
- staging: rt2860: Fix incorrect netif_stop_queue usage warning
(bnc#661657).
- commit 39b4c1e
-------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
-------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
-------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 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 3de2a1a
-------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
-------------------------------------------------------------------
Thu Feb 3 21:54:01 CET 2011 - rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
-------------------------------------------------------------------
Thu Feb 3 17:46:29 CET 2011 - jbeulich@novell.com
- Update Xen patches to c/s 1066.
- cpuidle/x86/perf: fix power:cpu_idle double end events and
throw cpu_idle events from the cpuidle layer (bnc#665153).
- perf: Clean up power events by introducing new, more generic
ones (bnc#665153).
- commit e88242f
-------------------------------------------------------------------
Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- commit 7dbcb59
-------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- commit 36bcdd7
-------------------------------------------------------------------
Mon Jan 31 13:22:49 CET 2011 - jslaby@suse.cz
- block: loop queue_lock null pointer derefence in blk_throtl_exit
v3 (bnc#666598).
- commit cd38efd
-------------------------------------------------------------------
Mon Jan 31 10:47:27 CET 2011 - jslaby@suse.cz
- Fix prlimit64 for suid/sgid processes (bnc#668262).
- commit dae8217
-------------------------------------------------------------------
Sun Jan 23 23:19:08 CET 2011 - jeffm@suse.com
- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279).
- commit 3e2a2b2
-------------------------------------------------------------------
Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,133 @@
-------------------------------------------------------------------
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Set timestamp of sources to the commit
timestamp, so that they are always older than generated files in
/usr/src/linux-obj (bnc#669669).
- commit 31e675a
-------------------------------------------------------------------
Wed Feb 9 13:00:11 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
-------------------------------------------------------------------
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 e211a69
-------------------------------------------------------------------
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 d6a7494
-------------------------------------------------------------------
Tue Feb 8 17:24:22 CET 2011 - jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
-------------------------------------------------------------------
Tue Feb 8 16:52:35 CET 2011 - jbeulich@novell.com
- Fix a few issues in patches.suse/stack-unwind (bnc#661409).
- commit f82619b
-------------------------------------------------------------------
Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
- staging: rt2860: Fix incorrect netif_stop_queue usage warning
(bnc#661657).
- commit 39b4c1e
-------------------------------------------------------------------
Mon Feb 7 18:20:11 CET 2011 - mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
-------------------------------------------------------------------
Mon Feb 7 16:19:29 CET 2011 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
-------------------------------------------------------------------
Mon Feb 7 14:27:36 CET 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 3de2a1a
-------------------------------------------------------------------
Fri Feb 4 22:22:44 CET 2011 - mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
-------------------------------------------------------------------
Thu Feb 3 21:54:01 CET 2011 - rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
-------------------------------------------------------------------
Thu Feb 3 17:46:29 CET 2011 - jbeulich@novell.com
- Update Xen patches to c/s 1066.
- cpuidle/x86/perf: fix power:cpu_idle double end events and
throw cpu_idle events from the cpuidle layer (bnc#665153).
- perf: Clean up power events by introducing new, more generic
ones (bnc#665153).
- commit e88242f
-------------------------------------------------------------------
Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).
- commit 7dbcb59
-------------------------------------------------------------------
Mon Jan 31 23:00:46 CET 2011 - jslaby@suse.cz
- Refresh patches.rpmify/cloneconfig.diff.
scripts/kconfig/conf accepts long parameters only for some time already
- commit 36bcdd7
-------------------------------------------------------------------
Mon Jan 31 13:22:49 CET 2011 - jslaby@suse.cz
- block: loop queue_lock null pointer derefence in blk_throtl_exit
v3 (bnc#666598).
- commit cd38efd
-------------------------------------------------------------------
Mon Jan 31 10:47:27 CET 2011 - jslaby@suse.cz
- Fix prlimit64 for suid/sgid processes (bnc#668262).
- commit dae8217
-------------------------------------------------------------------
Sun Jan 23 23:19:08 CET 2011 - jeffm@suse.com
- netfilter: Implement RFC 1123 for FTP conntrack (bnc#466279).
- commit 3e2a2b2
-------------------------------------------------------------------
Sat Jan 22 00:40:16 CET 2011 - jeffm@suse.com

File diff suppressed because it is too large Load Diff

1
minmem Normal file
View File

@ -0,0 +1 @@
1048576

5
mkspec
View File

@ -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
needed_space_in_mb Normal file
View File

@ -0,0 +1 @@
6144

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:34cf45d982ebdc87db7695d85841da3641d15efad68d7597a3087d1efb62d10f
size 84061
oid sha256:66a780fe331858e8fc836ac072712a64aa32056f312a982f41c9d12c0f643df2
size 85409

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4ef9c84fa5c4c76bf3e27424ae93102936f5cf2fb78ffa1acaceb0afb857972f
size 125707
oid sha256:441b143ac954c581ae68f9e609f148b122ab490b9292a0e2c7b2aea2f42b694f
size 126871

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:18ecae3f8e4af2f038eb4142486188b6040d3494d3af2368bc838d6f6d38cb19
size 81577
oid sha256:1d2cb3183030f6abdfdb1ff16b3bdfa7877a1ef2bdad96cb9ccb38c539041561
size 85532

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4531817607d387c368bc3ca933262d70c276114aaf03064d0fb1ada89f3d9bfa
size 3565
oid sha256:105b05d17d05a97e647c5add90e08e47c210db2247c076c40621cc83ab977483
size 3587

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:72bf047d07ccc3145cc4cdac17a67e7545df3280308947a135c6485d885fe9ef
size 289465
oid sha256:33d30953d465130624a236b029f27adc2fb927cce4c6e6065d4912ce95e35fcd
size 289249

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5e1aeb7b727ecadacf70b8802cb72b78c7b7b7bbe1508391e70945bab2c9c219
size 2065603
oid sha256:2342b210b73dc828da5fcb4d8e8cd1d318da2643225fd7dc27bf6201b5f98ff0
size 1982628

View File

@ -94,6 +94,7 @@
# 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
patches.fixes/fix-prlimit64-for-suid-sgid-processes.patch
########################################################
# Architecture-specific patches. These used to be all
@ -137,6 +138,8 @@
patches.suse/x86-mark_rodata_rw.patch
patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch
########################################################
# x86 MCE/MCA (Machine Check Error/Architecture) extensions
########################################################
@ -229,6 +232,7 @@
########################################################
patches.suse/connector-read-mostly
patches.suse/kbd-ignore-gfx.patch
patches.fixes/calibrate-jiffy-overflow
########################################################
#
@ -452,6 +456,7 @@
patches.suse/netfilter-ip_conntrack_slp.patch
patches.fixes/fix-nf_conntrack_slp
patches.fixes/netfilter-implement-rfc-1123-for-ftp-conntrack
########################################################
#
@ -496,6 +501,7 @@
patches.fixes/scsi-ibmvscsi-module_alias.patch
patches.fixes/fix-ata-panic-with-ata_id
patches.fixes/loop-queue_lock-null-pointer-derefence-in-blk_throtl_exit-v3.patch
########################################################
# DRM/Video
@ -527,6 +533,8 @@
patches.suse/wireless-no-aes-select
patches.suse/b43-missing-firmware-info.patch
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices
patches.fixes/staging-rt2860-Fix-incorrect-netif_stop_queue-usage.patch
patches.fixes/orinoco-allow-IW_AUTH_MFP-to-pass-through.patch
########################################################
# ISDN
@ -570,6 +578,8 @@
##########################################################
# Sound
##########################################################
patches.drivers/alsa-hda-0001-Fix-memory-leaks-in-conexant-jack-arrays
patches.drivers/alsa-hda-0002-Fix-missing-CA-initialization-for-HDMI-DP
########################################################
# Other driver fixes
@ -737,10 +747,6 @@
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
@ -760,9 +766,6 @@
# fixups due to upstream Xen parts
patches.xen/xen3-fixup-xen
+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
@ -794,7 +797,6 @@
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-acpi_processor_check_maxcpus.patch
patches.xen/xen3-stack-unwind
patches.xen/xen3-x86_64-unwind-annotations

View File

@ -1,3 +1,3 @@
2011-01-22 00:41:44 +0100
GIT Revision: fa7af15525aa80c8d9c1b092a98b348c11df390e
GIT Branch: master
2011-02-09 14:44:19 +0100
GIT Revision: 31e675a20f711a01725583694d920da20d5f47c2
GIT Branch: openSUSE-11.4