GIT Revision: 8f6f8542b7ab9a8174e96eb9eaa831ef62073ae7

OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=18
This commit is contained in:
Michal Marek 2011-02-11 06:03:11 +00:00 committed by Git OBS Bridge
parent c277820522
commit 701be8d1f4
40 changed files with 1800 additions and 60 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

@ -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,46 @@
-------------------------------------------------------------------
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
-------------------------------------------------------------------
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
-------------------------------------------------------------------
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
@ -17,6 +60,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
(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
@ -25,6 +80,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
what it does. Add some comments to explain how the versioning works.
- commit 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
@ -48,6 +109,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de

View File

@ -714,8 +714,9 @@ rm %my_builddir/tmp
%endif
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
# much, but it keeps rpmlint from breaking the package build.
%fdupes $RPM_BUILD_ROOT
# much, but it keeps rpmlint from breaking the package build. Note that we skip
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
%fdupes $RPM_BUILD_ROOT/lib
%preun -f preun.sh
%postun -f postun.sh
@ -865,6 +866,31 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Thu Feb 10 2011 jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
* Wed Feb 09 2011 gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
* Wed Feb 09 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 09 2011 tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
* Wed Feb 09 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- commit e211a69
* Tue Feb 08 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- commit d6a7494
* Tue Feb 08 2011 jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
@ -876,10 +902,19 @@ Debug information for package %name-devel
(bnc#661657).
- commit 39b4c1e
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %%release_major and rename it to %%release_num to better describe
what it does. Add some comments to explain how the versioning works.
- commit 3de2a1a
* Fri Feb 04 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
* Thu Feb 03 2011 rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
@ -894,6 +929,10 @@ Debug information for package %name-devel
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
* Wed Feb 02 2011 jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
* Wed Feb 02 2011 tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
-------------------------------------------------------------------
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
-------------------------------------------------------------------
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
@ -17,6 +60,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
(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
@ -25,6 +80,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
what it does. Add some comments to explain how the versioning works.
- commit 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
@ -48,6 +109,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de

View File

@ -729,8 +729,9 @@ rm %my_builddir/tmp
%endif
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
# much, but it keeps rpmlint from breaking the package build.
%fdupes $RPM_BUILD_ROOT
# much, but it keeps rpmlint from breaking the package build. Note that we skip
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
%fdupes $RPM_BUILD_ROOT/lib
%preun -f preun.sh
%postun -f postun.sh
@ -878,6 +879,31 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Thu Feb 10 2011 jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
* Wed Feb 09 2011 gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
* Wed Feb 09 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 09 2011 tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
* Wed Feb 09 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- commit e211a69
* Tue Feb 08 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- commit d6a7494
* Tue Feb 08 2011 jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
@ -889,10 +915,19 @@ Debug information for package %name-devel
(bnc#661657).
- commit 39b4c1e
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %%release_major and rename it to %%release_num to better describe
what it does. Add some comments to explain how the versioning works.
- commit 3de2a1a
* Fri Feb 04 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
* Thu Feb 03 2011 rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
@ -907,6 +942,10 @@ Debug information for package %name-devel
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
* Wed Feb 02 2011 jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
* Wed Feb 02 2011 tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
-------------------------------------------------------------------
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
-------------------------------------------------------------------
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
@ -17,6 +60,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
(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
@ -25,6 +80,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
what it does. Add some comments to explain how the versioning works.
- commit 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
@ -48,6 +109,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de

View File

@ -723,8 +723,9 @@ rm %my_builddir/tmp
%endif
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
# much, but it keeps rpmlint from breaking the package build.
%fdupes $RPM_BUILD_ROOT
# much, but it keeps rpmlint from breaking the package build. Note that we skip
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
%fdupes $RPM_BUILD_ROOT/lib
%preun -f preun.sh
%postun -f postun.sh
@ -898,6 +899,31 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Thu Feb 10 2011 jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
* Wed Feb 09 2011 gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
* Wed Feb 09 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 09 2011 tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
* Wed Feb 09 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- commit e211a69
* Tue Feb 08 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- commit d6a7494
* Tue Feb 08 2011 jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
@ -909,10 +935,19 @@ Debug information for package %name-devel
(bnc#661657).
- commit 39b4c1e
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %%release_major and rename it to %%release_num to better describe
what it does. Add some comments to explain how the versioning works.
- commit 3de2a1a
* Fri Feb 04 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
* Thu Feb 03 2011 rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
@ -927,6 +962,10 @@ Debug information for package %name-devel
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
* Wed Feb 02 2011 jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
* Wed Feb 02 2011 tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
-------------------------------------------------------------------
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
-------------------------------------------------------------------
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
@ -17,6 +60,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
(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
@ -25,6 +80,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
what it does. Add some comments to explain how the versioning works.
- commit 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
@ -48,6 +109,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de

View File

@ -99,6 +99,31 @@ rm -rf $RPM_BUILD_ROOT
/usr/share/doc/kernel
%changelog
* Thu Feb 10 2011 jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
* Wed Feb 09 2011 gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
* Wed Feb 09 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 09 2011 tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
* Wed Feb 09 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- commit e211a69
* Tue Feb 08 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- commit d6a7494
* Tue Feb 08 2011 jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
@ -110,10 +135,19 @@ rm -rf $RPM_BUILD_ROOT
(bnc#661657).
- commit 39b4c1e
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %%release_major and rename it to %%release_num to better describe
what it does. Add some comments to explain how the versioning works.
- commit 3de2a1a
* Fri Feb 04 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
* Thu Feb 03 2011 rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
@ -128,6 +162,10 @@ rm -rf $RPM_BUILD_ROOT
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
* Wed Feb 02 2011 jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
* Wed Feb 02 2011 tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
-------------------------------------------------------------------
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
-------------------------------------------------------------------
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
@ -17,6 +60,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
(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
@ -25,6 +80,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
what it does. Add some comments to explain how the versioning works.
- commit 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
@ -48,6 +109,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de

View File

@ -713,8 +713,9 @@ rm %my_builddir/tmp
%endif
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
# much, but it keeps rpmlint from breaking the package build.
%fdupes $RPM_BUILD_ROOT
# much, but it keeps rpmlint from breaking the package build. Note that we skip
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
%fdupes $RPM_BUILD_ROOT/lib
%preun -f preun.sh
%postun -f postun.sh
@ -868,6 +869,31 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Thu Feb 10 2011 jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
* Wed Feb 09 2011 gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
* Wed Feb 09 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 09 2011 tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
* Wed Feb 09 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- commit e211a69
* Tue Feb 08 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- commit d6a7494
* Tue Feb 08 2011 jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
@ -879,10 +905,19 @@ Debug information for package %name-devel
(bnc#661657).
- commit 39b4c1e
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %%release_major and rename it to %%release_num to better describe
what it does. Add some comments to explain how the versioning works.
- commit 3de2a1a
* Fri Feb 04 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
* Thu Feb 03 2011 rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
@ -897,6 +932,10 @@ Debug information for package %name-devel
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
* Wed Feb 02 2011 jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
* Wed Feb 02 2011 tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
-------------------------------------------------------------------
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
-------------------------------------------------------------------
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
@ -17,6 +60,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
(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
@ -25,6 +80,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
what it does. Add some comments to explain how the versioning works.
- commit 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
@ -48,6 +109,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de

View File

@ -712,8 +712,9 @@ rm %my_builddir/tmp
%endif
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
# much, but it keeps rpmlint from breaking the package build.
%fdupes $RPM_BUILD_ROOT
# much, but it keeps rpmlint from breaking the package build. Note that we skip
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
%fdupes $RPM_BUILD_ROOT/lib
%preun -f preun.sh
%postun -f postun.sh
@ -865,6 +866,31 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Thu Feb 10 2011 jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
* Wed Feb 09 2011 gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
* Wed Feb 09 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 09 2011 tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
* Wed Feb 09 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- commit e211a69
* Tue Feb 08 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- commit d6a7494
* Tue Feb 08 2011 jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
@ -876,10 +902,19 @@ Debug information for package %name-devel
(bnc#661657).
- commit 39b4c1e
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %%release_major and rename it to %%release_num to better describe
what it does. Add some comments to explain how the versioning works.
- commit 3de2a1a
* Fri Feb 04 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
* Thu Feb 03 2011 rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
@ -894,6 +929,10 @@ Debug information for package %name-devel
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
* Wed Feb 02 2011 jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
* Wed Feb 02 2011 tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
-------------------------------------------------------------------
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
-------------------------------------------------------------------
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
@ -17,6 +60,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
(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
@ -25,6 +80,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
what it does. Add some comments to explain how the versioning works.
- commit 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
@ -48,6 +109,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de

View File

@ -720,8 +720,9 @@ rm %my_builddir/tmp
%endif
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
# much, but it keeps rpmlint from breaking the package build.
%fdupes $RPM_BUILD_ROOT
# much, but it keeps rpmlint from breaking the package build. Note that we skip
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
%fdupes $RPM_BUILD_ROOT/lib
%preun -f preun.sh
%postun -f postun.sh
@ -883,6 +884,31 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Thu Feb 10 2011 jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
* Wed Feb 09 2011 gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
* Wed Feb 09 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 09 2011 tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
* Wed Feb 09 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- commit e211a69
* Tue Feb 08 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- commit d6a7494
* Tue Feb 08 2011 jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
@ -894,10 +920,19 @@ Debug information for package %name-devel
(bnc#661657).
- commit 39b4c1e
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %%release_major and rename it to %%release_num to better describe
what it does. Add some comments to explain how the versioning works.
- commit 3de2a1a
* Fri Feb 04 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
* Thu Feb 03 2011 rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
@ -912,6 +947,10 @@ Debug information for package %name-devel
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
* Wed Feb 02 2011 jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
* Wed Feb 02 2011 tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
-------------------------------------------------------------------
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
-------------------------------------------------------------------
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
@ -17,6 +60,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
(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
@ -25,6 +80,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
what it does. Add some comments to explain how the versioning works.
- commit 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
@ -48,6 +109,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de

View File

@ -724,8 +724,9 @@ rm %my_builddir/tmp
%endif
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
# much, but it keeps rpmlint from breaking the package build.
%fdupes $RPM_BUILD_ROOT
# much, but it keeps rpmlint from breaking the package build. Note that we skip
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
%fdupes $RPM_BUILD_ROOT/lib
%preun -f preun.sh
%postun -f postun.sh
@ -887,6 +888,31 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Thu Feb 10 2011 jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
* Wed Feb 09 2011 gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
* Wed Feb 09 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 09 2011 tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
* Wed Feb 09 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- commit e211a69
* Tue Feb 08 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- commit d6a7494
* Tue Feb 08 2011 jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
@ -898,10 +924,19 @@ Debug information for package %name-devel
(bnc#661657).
- commit 39b4c1e
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %%release_major and rename it to %%release_num to better describe
what it does. Add some comments to explain how the versioning works.
- commit 3de2a1a
* Fri Feb 04 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
* Thu Feb 03 2011 rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
@ -916,6 +951,10 @@ Debug information for package %name-devel
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
* Wed Feb 02 2011 jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
* Wed Feb 02 2011 tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
-------------------------------------------------------------------
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
-------------------------------------------------------------------
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
@ -17,6 +60,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
(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
@ -25,6 +80,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
what it does. Add some comments to explain how the versioning works.
- commit 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
@ -48,6 +109,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de

View File

@ -713,8 +713,9 @@ rm %my_builddir/tmp
%endif
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
# much, but it keeps rpmlint from breaking the package build.
%fdupes $RPM_BUILD_ROOT
# much, but it keeps rpmlint from breaking the package build. Note that we skip
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
%fdupes $RPM_BUILD_ROOT/lib
%preun -f preun.sh
%postun -f postun.sh
@ -868,6 +869,31 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Thu Feb 10 2011 jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
* Wed Feb 09 2011 gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
* Wed Feb 09 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 09 2011 tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
* Wed Feb 09 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- commit e211a69
* Tue Feb 08 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- commit d6a7494
* Tue Feb 08 2011 jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
@ -879,10 +905,19 @@ Debug information for package %name-devel
(bnc#661657).
- commit 39b4c1e
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %%release_major and rename it to %%release_num to better describe
what it does. Add some comments to explain how the versioning works.
- commit 3de2a1a
* Fri Feb 04 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
* Thu Feb 03 2011 rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
@ -897,6 +932,10 @@ Debug information for package %name-devel
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
* Wed Feb 02 2011 jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
* Wed Feb 02 2011 tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
-------------------------------------------------------------------
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
-------------------------------------------------------------------
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
@ -17,6 +60,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
(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
@ -25,6 +80,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
what it does. Add some comments to explain how the versioning works.
- commit 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
@ -48,6 +109,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de

View File

@ -713,8 +713,9 @@ rm %my_builddir/tmp
%endif
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
# much, but it keeps rpmlint from breaking the package build.
%fdupes $RPM_BUILD_ROOT
# much, but it keeps rpmlint from breaking the package build. Note that we skip
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
%fdupes $RPM_BUILD_ROOT/lib
%preun -f preun.sh
%postun -f postun.sh
@ -862,6 +863,31 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Thu Feb 10 2011 jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
* Wed Feb 09 2011 gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
* Wed Feb 09 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 09 2011 tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
* Wed Feb 09 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- commit e211a69
* Tue Feb 08 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- commit d6a7494
* Tue Feb 08 2011 jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
@ -873,10 +899,19 @@ Debug information for package %name-devel
(bnc#661657).
- commit 39b4c1e
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %%release_major and rename it to %%release_num to better describe
what it does. Add some comments to explain how the versioning works.
- commit 3de2a1a
* Fri Feb 04 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
* Thu Feb 03 2011 rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
@ -891,6 +926,10 @@ Debug information for package %name-devel
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
* Wed Feb 02 2011 jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
* Wed Feb 02 2011 tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
-------------------------------------------------------------------
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
-------------------------------------------------------------------
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
@ -17,6 +60,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
(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
@ -25,6 +80,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
what it does. Add some comments to explain how the versioning works.
- commit 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
@ -48,6 +109,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de

View File

@ -21,12 +21,11 @@
%define srcversion 2.6.37
%define patchversion 2.6.37
%define variant %{nil}
%define vanilla_only 0
%include %_sourcedir/kernel-spec-macros
%define src_install_dir usr/src/linux-%kernelrelease%variant
%define obj_install_dir /%src_install_dir-obj
%define rpm_install_dir %buildroot%real_install_dir
Name: kernel-source
Summary: The Linux Kernel Sources
@ -160,17 +159,9 @@ echo "Symbol(s): %symbols"
%setup -q -c -T -a 100 -a 101 -a 102 -a 103 -a 104 -a 105 -a 106 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120
%build
# Release number without the EXTRAVERSION
RELEASE=%source_rel
while [ "$RELEASE" != "${RELEASE#[^0-9]*.}" ]; do
RELEASE=${RELEASE#[^0-9]*.}
done
mkdir -p $RPM_BUILD_ROOT/usr/src
cd $RPM_BUILD_ROOT/usr/src
ln -sf linux%variant linux%variant # dummy symlink
# Unpack the vanilla kernel sources
tar -xjf %_sourcedir/linux-%srcversion.tar.bz2
if test "%srcversion" != "%kernelrelease%variant"; then
@ -179,25 +170,35 @@ fi
%if %do_vanilla
cp -al "%buildroot/%src_install_dir" linux-%kernelrelease-vanilla
%if %vanilla_only
mv \
%else
cp -al \
%endif
linux-%kernelrelease%variant linux-%kernelrelease-vanilla
cd linux-%kernelrelease-vanilla
%_sourcedir/apply-patches --vanilla %_sourcedir/series.conf %my_builddir %symbols
rm -f $(find . -name ".gitignore")
cd ..
%endif
cd "%buildroot/%src_install_dir"
%if ! %vanilla_only
ln -sf linux%variant linux%variant # dummy symlink
cd linux-%kernelrelease%variant
%_sourcedir/apply-patches %_sourcedir/series.conf %my_builddir %symbols
rm -f $(find . -name ".gitignore")
if [ -f %_sourcedir/localversion ] ; then
cat %_sourcedir/localversion > localversion
fi
%endif
# Hardlink duplicate files automatically (from package fdupes).
%fdupes $RPM_BUILD_ROOT
%install
%if ! %vanilla_only
# Install the documentation and example Kernel Module Package.
DOC=$RPM_BUILD_ROOT/usr/share/doc/packages/%name
mkdir -p $DOC
@ -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
@ -245,6 +255,31 @@ popd
%endif
%changelog
* Thu Feb 10 2011 jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
* Wed Feb 09 2011 gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
* Wed Feb 09 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 09 2011 tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
* Wed Feb 09 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- commit e211a69
* Tue Feb 08 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- commit d6a7494
* Tue Feb 08 2011 jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
@ -256,10 +291,19 @@ popd
(bnc#661657).
- commit 39b4c1e
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %%release_major and rename it to %%release_num to better describe
what it does. Add some comments to explain how the versioning works.
- commit 3de2a1a
* Fri Feb 04 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
* Thu Feb 03 2011 rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
@ -274,6 +318,10 @@ popd
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
* Wed Feb 02 2011 jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
* Wed Feb 02 2011 tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).

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

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
-------------------------------------------------------------------
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
-------------------------------------------------------------------
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
@ -17,6 +60,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
(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
@ -25,6 +80,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
what it does. Add some comments to explain how the versioning works.
- commit 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
@ -48,6 +109,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de

View File

@ -81,6 +81,31 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
%_docdir/%name/README.SUSE
%changelog
* Thu Feb 10 2011 jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
* Wed Feb 09 2011 gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
* Wed Feb 09 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 09 2011 tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
* Wed Feb 09 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- commit e211a69
* Tue Feb 08 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- commit d6a7494
* Tue Feb 08 2011 jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
@ -92,10 +117,19 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
(bnc#661657).
- commit 39b4c1e
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %%release_major and rename it to %%release_num to better describe
what it does. Add some comments to explain how the versioning works.
- commit 3de2a1a
* Fri Feb 04 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
* Thu Feb 03 2011 rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
@ -110,6 +144,10 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
* Wed Feb 02 2011 jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
* Wed Feb 02 2011 tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
-------------------------------------------------------------------
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
-------------------------------------------------------------------
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
@ -17,6 +60,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
(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
@ -25,6 +80,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
what it does. Add some comments to explain how the versioning works.
- commit 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
@ -48,6 +109,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de

View File

@ -721,8 +721,9 @@ rm %my_builddir/tmp
%endif
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
# much, but it keeps rpmlint from breaking the package build.
%fdupes $RPM_BUILD_ROOT
# much, but it keeps rpmlint from breaking the package build. Note that we skip
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
%fdupes $RPM_BUILD_ROOT/lib
%preun -f preun.sh
%postun -f postun.sh
@ -870,6 +871,31 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Thu Feb 10 2011 jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
* Wed Feb 09 2011 gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
* Wed Feb 09 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 09 2011 tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
* Wed Feb 09 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- commit e211a69
* Tue Feb 08 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- commit d6a7494
* Tue Feb 08 2011 jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
@ -881,10 +907,19 @@ Debug information for package %name-devel
(bnc#661657).
- commit 39b4c1e
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %%release_major and rename it to %%release_num to better describe
what it does. Add some comments to explain how the versioning works.
- commit 3de2a1a
* Fri Feb 04 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
* Thu Feb 03 2011 rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
@ -899,6 +934,10 @@ Debug information for package %name-devel
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
* Wed Feb 02 2011 jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
* Wed Feb 02 2011 tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
-------------------------------------------------------------------
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
-------------------------------------------------------------------
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
@ -17,6 +60,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
(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
@ -25,6 +80,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
what it does. Add some comments to explain how the versioning works.
- commit 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
@ -48,6 +109,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de

View File

@ -717,8 +717,9 @@ rm %my_builddir/tmp
%endif
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
# much, but it keeps rpmlint from breaking the package build.
%fdupes $RPM_BUILD_ROOT
# much, but it keeps rpmlint from breaking the package build. Note that we skip
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
%fdupes $RPM_BUILD_ROOT/lib
%preun -f preun.sh
%postun -f postun.sh
@ -866,6 +867,31 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Thu Feb 10 2011 jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
* Wed Feb 09 2011 gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
* Wed Feb 09 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 09 2011 tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
* Wed Feb 09 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- commit e211a69
* Tue Feb 08 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- commit d6a7494
* Tue Feb 08 2011 jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
@ -877,10 +903,19 @@ Debug information for package %name-devel
(bnc#661657).
- commit 39b4c1e
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %%release_major and rename it to %%release_num to better describe
what it does. Add some comments to explain how the versioning works.
- commit 3de2a1a
* Fri Feb 04 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
* Thu Feb 03 2011 rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
@ -895,6 +930,10 @@ Debug information for package %name-devel
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
* Wed Feb 02 2011 jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
* Wed Feb 02 2011 tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
-------------------------------------------------------------------
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
-------------------------------------------------------------------
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
@ -17,6 +60,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
(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
@ -25,6 +80,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
what it does. Add some comments to explain how the versioning works.
- commit 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
@ -48,6 +109,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de

View File

@ -711,8 +711,9 @@ rm %my_builddir/tmp
%endif
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
# much, but it keeps rpmlint from breaking the package build.
%fdupes $RPM_BUILD_ROOT
# much, but it keeps rpmlint from breaking the package build. Note that we skip
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
%fdupes $RPM_BUILD_ROOT/lib
%preun -f preun.sh
%postun -f postun.sh
@ -862,6 +863,31 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Thu Feb 10 2011 jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
* Wed Feb 09 2011 gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
* Wed Feb 09 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 09 2011 tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
* Wed Feb 09 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- commit e211a69
* Tue Feb 08 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- commit d6a7494
* Tue Feb 08 2011 jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
@ -873,10 +899,19 @@ Debug information for package %name-devel
(bnc#661657).
- commit 39b4c1e
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %%release_major and rename it to %%release_num to better describe
what it does. Add some comments to explain how the versioning works.
- commit 3de2a1a
* Fri Feb 04 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
* Thu Feb 03 2011 rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
@ -891,6 +926,10 @@ Debug information for package %name-devel
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
* Wed Feb 02 2011 jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
* Wed Feb 02 2011 tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
-------------------------------------------------------------------
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
-------------------------------------------------------------------
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
@ -17,6 +60,18 @@ Mon Feb 7 19:41:04 CET 2011 - jslaby@suse.cz
(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
@ -25,6 +80,12 @@ Mon Feb 7 14:27:36 CET 2011 - mmarek@suse.cz
what it does. Add some comments to explain how the versioning works.
- commit 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
@ -48,6 +109,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
overflow.
- commit 4a69163
-------------------------------------------------------------------
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
-------------------------------------------------------------------
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de

View File

@ -713,8 +713,9 @@ rm %my_builddir/tmp
%endif
# Hardlink duplicate files automatically (from package fdupes): It doesn't save
# much, but it keeps rpmlint from breaking the package build.
%fdupes $RPM_BUILD_ROOT
# much, but it keeps rpmlint from breaking the package build. Note that we skip
# /usr/src/linux-obj intentionally, to not accidentally break timestamps there
%fdupes $RPM_BUILD_ROOT/lib
%preun -f preun.sh
%postun -f postun.sh
@ -868,6 +869,31 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files
%changelog
* Thu Feb 10 2011 jeffm@suse.com
- flexcop: fix registering braindead stupid names (brc#575873
bnc#661429).
- commit 2e98bfc
* Wed Feb 09 2011 gregkh@suse.de
- Staging: samsung-laptop: add support for lots of laptops
(bnc#661682).
- commit c6d0dc9
* Wed Feb 09 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 09 2011 tiwai@suse.de
- ALSA: hda - Fix missing CA initialization for HDMI/DP
(bnc#670577).
- commit 474305e
* Wed Feb 09 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in: Do not run fdupes in /usr/src/linux-obj, to
keep timestamps intact.
- commit e211a69
* Tue Feb 08 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove .gitignore files after applying patches
(fix last change).
- commit d6a7494
* Tue Feb 08 2011 jslaby@suse.cz
- orinoco: allow IW_AUTH_MFP to pass through (bnc#661624).
- commit 442a3d7
@ -879,10 +905,19 @@ Debug information for package %name-devel
(bnc#661657).
- commit 39b4c1e
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/{kernel-source.spec.in,mkspec}: Sync with vanilla and linux-next
- commit fecf998
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-source.spec.in: Remove dead code.
- commit b97b6f2
* Mon Feb 07 2011 mmarek@suse.cz
- rpm/kernel-binary.spec.in, rpm/kernel-spec-macros: Fix the definition
of %%release_major and rename it to %%release_num to better describe
what it does. Add some comments to explain how the versioning works.
- commit 3de2a1a
* Fri Feb 04 2011 mmarek@suse.cz
- rpm/compute-PATCHVERSION.sh: Fix sed regexp
- commit d889fe7
* Thu Feb 03 2011 rjw@suse.de
- x86, mtrr: avoid MTRR reprogramming on BP during boot on (bnc#623393).
- commit 0664ad4
@ -897,6 +932,10 @@ Debug information for package %name-devel
- Fix jiffy calculations in calibrate_delay_direct to handle
overflow.
- commit 4a69163
* Wed Feb 02 2011 jeffm@suse.com
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
during failed mount (bnc#668878)
- commit de24d15
* Wed Feb 02 2011 tiwai@suse.de
- ALSA: hda - Fix memory leaks in conexant jack arrays
(bnc#668929).

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,

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ce83baf92f41fa259f263efcace03d04329da468b671e180aa7ae693436e9881
size 126387
oid sha256:35af81eafe77cadebc31e94ce931b3ee6f4dc4f258d39494916e077aff5169d6
size 130923

View File

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

View File

@ -507,6 +507,11 @@
# DRM/Video
########################################################
########################################################
# video4linux
########################################################
patches.fixes/flexcop-fix-registering-braindead-stupid-names
########################################################
# Network
########################################################
@ -579,6 +584,7 @@
# 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
@ -705,6 +711,7 @@
# Staging tree patches
# new drivers that are going upstream
########################################################
patches.drivers/staging-samsung-laptop-add-support-for-lots-of-laptops.patch
########################################################
# "fastboot" patches

View File

@ -1,3 +1,3 @@
2011-02-08 17:33:03 +0100
GIT Revision: f298a55146c6dac58e67fd4ded40dfc6f587cf76
2011-02-10 21:27:27 +0100
GIT Revision: 8f6f8542b7ab9a8174e96eb9eaa831ef62073ae7
GIT Branch: stable