diff --git a/compute-PATCHVERSION.sh b/compute-PATCHVERSION.sh index f350345e..12da67d1 100644 --- a/compute-PATCHVERSION.sh +++ b/compute-PATCHVERSION.sh @@ -25,8 +25,8 @@ parse_srcversion() local IFS=. set -- ${SRCVERSION%%-*} VERSION=$1 - PATCHLEVEL=$2 - SUBLEVEL=$3 + PATCHLEVEL=${2:-0} + SUBLEVEL=${3:-0} EXTRAVERSION=${SRCVERSION#${SRCVERSION%%-*}} } parse_srcversion @@ -73,4 +73,5 @@ eval "$( ' \ | sed -e 's,^+,,' -e 's, *= *\(.*\),="\1",' )" -echo "$VERSION${PATCHLEVEL:+.$PATCHLEVEL}${SUBLEVEL:+.$SUBLEVEL}$EXTRAVERSION" + +echo "$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION" diff --git a/config-options.changes.txt b/config-options.changes.txt index edfdd684..9476ab0e 100644 --- a/config-options.changes.txt +++ b/config-options.changes.txt @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jun 21 11:38:10 UTC 2011 - mmarek@novell.com + +- Updated to 3.0-rc4: + - USB_NET_KALMIA=m + - BACKLIGHT_ADP8870=m + ------------------------------------------------------------------- Fri Jan 21 02:35:17 CET 2011 - trenn@suse.de diff --git a/config.sh b/config.sh index 05aed7ff..69661dfe 100644 --- a/config.sh +++ b/config.sh @@ -1,5 +1,5 @@ # The version of the main tarball to use -SRCVERSION=2.6.39 +SRCVERSION=3.0 # variant of the kernel-source package, either empty or "-rt" VARIANT= # buildservice projects to build the kernel against diff --git a/config.tar.bz2 b/config.tar.bz2 index f842f804..e67f9cf2 100644 --- a/config.tar.bz2 +++ b/config.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5eab40cf2782ece46e8b7ca6c133d0888c87d3cc37ee5de5ea9d5e273048887c -size 225324 +oid sha256:9f82f213ec8e5c313d6c8a45333110fbf589af4cb4a4c415d9fbbf6a0cb20128 +size 230513 diff --git a/kernel-binary.spec.in b/kernel-binary.spec.in index d32d26db..88406ce6 100644 --- a/kernel-binary.spec.in +++ b/kernel-binary.spec.in @@ -284,22 +284,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then %_sourcedir/modversions --unpack . < $_ fi -# If the %jobs macro is defined to a number, make will spawn that many jobs. +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. # There are several ways how to define it: # If you are using the build script: # build --jobs=N kernel-$flavor.spec # With plain rpmbuild: # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # To spawn as many jobs as there are cpu cores: -# rpmbuild -ba --define "jobs 0$(grep -c ^processor /proc/cpuinfo)" \ +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ # kernel-$flavor.spec # You can also set this permanently in ~/.rpmmacros: -# %jobs 0%(grep -c ^processor /proc/cpuinfo) +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) %if %CONFIG_KMSG_IDS == "y" chmod +x ../linux-%srcversion/scripts/kmsg-doc - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 %else - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y %endif @@ -356,7 +356,7 @@ add_vmlinux() fi %endif if $compressed; then - gzip -9 %buildroot/$vmlinux + gzip -n -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } @@ -470,7 +470,7 @@ if [ %CONFIG_MODULES = y ]; then mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor - gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz + gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -501,7 +501,7 @@ if [ %CONFIG_MODULES = y ]; then # Table of types used in exported symbols (for modversion debugging). %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then - gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor + gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor else rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor fi diff --git a/kernel-debug.changes b/kernel-debug.changes index 98c68b8e..e4293953 100644 --- a/kernel-debug.changes +++ b/kernel-debug.changes @@ -1,6 +1,63 @@ +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + ------------------------------------------------------------------- Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in @@ -17,15 +74,43 @@ Sat Jul 9 11:10:31 CEST 2011 - jslaby@suse.cz patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + ------------------------------------------------------------------- Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + ------------------------------------------------------------------- Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -43,6 +128,12 @@ Sun Jun 26 20:20:19 CEST 2011 - jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + ------------------------------------------------------------------- Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz @@ -53,9 +144,39 @@ Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + ------------------------------------------------------------------- Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). @@ -67,6 +188,19 @@ Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de (bnc#697859). - commit 303cc0e +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + ------------------------------------------------------------------- Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de @@ -82,9 +216,41 @@ Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + ------------------------------------------------------------------- Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 @@ -92,9 +258,112 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz ------------------------------------------------------------------- Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + ------------------------------------------------------------------- Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de @@ -103,6 +372,22 @@ Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + ------------------------------------------------------------------- Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de diff --git a/kernel-debug.spec b/kernel-debug.spec index 7f20a2ee..7eff004c 100644 --- a/kernel-debug.spec +++ b/kernel-debug.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-debug (Version 2.6.39.3) +# spec file for package kernel-debug (Version 3.0.0) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -17,8 +17,8 @@ # norootforbuild -%define srcversion 2.6.39 -%define patchversion 2.6.39.3 +%define srcversion 3.0 +%define patchversion 3.0.0 %define variant %{nil} %include %_sourcedir/kernel-spec-macros @@ -55,7 +55,7 @@ Name: kernel-debug Summary: A Debug Version of the Kernel -Version: 2.6.39.3 +Version: 3.0.0 %if %using_buildservice Release: %else @@ -361,22 +361,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then %_sourcedir/modversions --unpack . < $_ fi -# If the %jobs macro is defined to a number, make will spawn that many jobs. +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. # There are several ways how to define it: # If you are using the build script: # build --jobs=N kernel-$flavor.spec # With plain rpmbuild: # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # To spawn as many jobs as there are cpu cores: -# rpmbuild -ba --define "jobs 0$(grep -c ^processor /proc/cpuinfo)" \ +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ # kernel-$flavor.spec # You can also set this permanently in ~/.rpmmacros: -# %jobs 0%(grep -c ^processor /proc/cpuinfo) +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) %if %CONFIG_KMSG_IDS == "y" chmod +x ../linux-%srcversion/scripts/kmsg-doc - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 %else - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y %endif @@ -433,7 +433,7 @@ add_vmlinux() fi %endif if $compressed; then - gzip -9 %buildroot/$vmlinux + gzip -n -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } @@ -547,7 +547,7 @@ if [ %CONFIG_MODULES = y ]; then mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor - gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz + gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -578,7 +578,7 @@ if [ %CONFIG_MODULES = y ]; then # Table of types used in exported symbols (for modversion debugging). %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then - gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor + gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor else rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor fi @@ -875,8 +875,41 @@ Debug information for package %name-devel %files devel-debuginfo -f vmlinux.debug.files %changelog +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 * Sat Jul 09 2011 jslaby@suse.cz - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in aa3d6e2b140aac24a432f830d30047b1842aed0b. @@ -888,10 +921,29 @@ Debug information for package %name-devel - Delete patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f * Mon Jul 04 2011 tiwai@suse.de - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f * Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -902,6 +954,9 @@ Debug information for package %name-devel * Sun Jun 26 2011 jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 * Fri Jun 24 2011 jslaby@suse.cz - Linux 2.6.39.2. - Delete @@ -909,10 +964,31 @@ Debug information for package %name-devel - Delete patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d * Fri Jun 17 2011 trenn@suse.de - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). - x86, mtrr: lock stop machine during MTRR rendezvous sequence (bnc#697859). - stop_machine: reorganize stop_cpus() implementation @@ -920,6 +996,16 @@ Debug information for package %name-devel - x86, mtrr: use __stop_machine() for doing MTRR rendezvous (bnc#697859). - commit 303cc0e +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d * Thu Jun 16 2011 tiwai@suse.de - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps (bnc#700250,bnc#700251,bnc#700253). @@ -932,18 +1018,109 @@ Debug information for package %name-devel - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e * Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 * Wed Jun 15 2011 jack@suse.cz - fs: novfs: Limit check for datacopy between user and kernel space. +- fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e * Fri Jun 10 2011 trenn@suse.de - Update Suresh's patchset to version 3: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c * Wed Jun 08 2011 trenn@suse.de - Update Suresh's version 2 of the patchseries: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. diff --git a/kernel-default.changes b/kernel-default.changes index 98c68b8e..e4293953 100644 --- a/kernel-default.changes +++ b/kernel-default.changes @@ -1,6 +1,63 @@ +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + ------------------------------------------------------------------- Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in @@ -17,15 +74,43 @@ Sat Jul 9 11:10:31 CEST 2011 - jslaby@suse.cz patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + ------------------------------------------------------------------- Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + ------------------------------------------------------------------- Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -43,6 +128,12 @@ Sun Jun 26 20:20:19 CEST 2011 - jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + ------------------------------------------------------------------- Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz @@ -53,9 +144,39 @@ Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + ------------------------------------------------------------------- Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). @@ -67,6 +188,19 @@ Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de (bnc#697859). - commit 303cc0e +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + ------------------------------------------------------------------- Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de @@ -82,9 +216,41 @@ Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + ------------------------------------------------------------------- Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 @@ -92,9 +258,112 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz ------------------------------------------------------------------- Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + ------------------------------------------------------------------- Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de @@ -103,6 +372,22 @@ Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + ------------------------------------------------------------------- Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de diff --git a/kernel-default.spec b/kernel-default.spec index 9a7be64a..d850ff69 100644 --- a/kernel-default.spec +++ b/kernel-default.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-default (Version 2.6.39.3) +# spec file for package kernel-default (Version 3.0.0) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -17,8 +17,8 @@ # norootforbuild -%define srcversion 2.6.39 -%define patchversion 2.6.39.3 +%define srcversion 3.0 +%define patchversion 3.0.0 %define variant %{nil} %include %_sourcedir/kernel-spec-macros @@ -55,7 +55,7 @@ Name: kernel-default Summary: The Standard Kernel -Version: 2.6.39.3 +Version: 3.0.0 %if %using_buildservice Release: %else @@ -376,22 +376,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then %_sourcedir/modversions --unpack . < $_ fi -# If the %jobs macro is defined to a number, make will spawn that many jobs. +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. # There are several ways how to define it: # If you are using the build script: # build --jobs=N kernel-$flavor.spec # With plain rpmbuild: # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # To spawn as many jobs as there are cpu cores: -# rpmbuild -ba --define "jobs 0$(grep -c ^processor /proc/cpuinfo)" \ +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ # kernel-$flavor.spec # You can also set this permanently in ~/.rpmmacros: -# %jobs 0%(grep -c ^processor /proc/cpuinfo) +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) %if %CONFIG_KMSG_IDS == "y" chmod +x ../linux-%srcversion/scripts/kmsg-doc - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 %else - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y %endif @@ -448,7 +448,7 @@ add_vmlinux() fi %endif if $compressed; then - gzip -9 %buildroot/$vmlinux + gzip -n -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } @@ -562,7 +562,7 @@ if [ %CONFIG_MODULES = y ]; then mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor - gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz + gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -593,7 +593,7 @@ if [ %CONFIG_MODULES = y ]; then # Table of types used in exported symbols (for modversion debugging). %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then - gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor + gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor else rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor fi @@ -888,8 +888,41 @@ Debug information for package %name-devel %files devel-debuginfo -f vmlinux.debug.files %changelog +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 * Sat Jul 09 2011 jslaby@suse.cz - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in aa3d6e2b140aac24a432f830d30047b1842aed0b. @@ -901,10 +934,29 @@ Debug information for package %name-devel - Delete patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f * Mon Jul 04 2011 tiwai@suse.de - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f * Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -915,6 +967,9 @@ Debug information for package %name-devel * Sun Jun 26 2011 jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 * Fri Jun 24 2011 jslaby@suse.cz - Linux 2.6.39.2. - Delete @@ -922,10 +977,31 @@ Debug information for package %name-devel - Delete patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d * Fri Jun 17 2011 trenn@suse.de - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). - x86, mtrr: lock stop machine during MTRR rendezvous sequence (bnc#697859). - stop_machine: reorganize stop_cpus() implementation @@ -933,6 +1009,16 @@ Debug information for package %name-devel - x86, mtrr: use __stop_machine() for doing MTRR rendezvous (bnc#697859). - commit 303cc0e +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d * Thu Jun 16 2011 tiwai@suse.de - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps (bnc#700250,bnc#700251,bnc#700253). @@ -945,18 +1031,109 @@ Debug information for package %name-devel - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e * Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 * Wed Jun 15 2011 jack@suse.cz - fs: novfs: Limit check for datacopy between user and kernel space. +- fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e * Fri Jun 10 2011 trenn@suse.de - Update Suresh's patchset to version 3: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c * Wed Jun 08 2011 trenn@suse.de - Update Suresh's version 2 of the patchseries: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. diff --git a/kernel-desktop.changes b/kernel-desktop.changes index 98c68b8e..e4293953 100644 --- a/kernel-desktop.changes +++ b/kernel-desktop.changes @@ -1,6 +1,63 @@ +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + ------------------------------------------------------------------- Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in @@ -17,15 +74,43 @@ Sat Jul 9 11:10:31 CEST 2011 - jslaby@suse.cz patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + ------------------------------------------------------------------- Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + ------------------------------------------------------------------- Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -43,6 +128,12 @@ Sun Jun 26 20:20:19 CEST 2011 - jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + ------------------------------------------------------------------- Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz @@ -53,9 +144,39 @@ Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + ------------------------------------------------------------------- Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). @@ -67,6 +188,19 @@ Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de (bnc#697859). - commit 303cc0e +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + ------------------------------------------------------------------- Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de @@ -82,9 +216,41 @@ Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + ------------------------------------------------------------------- Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 @@ -92,9 +258,112 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz ------------------------------------------------------------------- Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + ------------------------------------------------------------------- Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de @@ -103,6 +372,22 @@ Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + ------------------------------------------------------------------- Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de diff --git a/kernel-desktop.spec b/kernel-desktop.spec index 64de1116..a32f8388 100644 --- a/kernel-desktop.spec +++ b/kernel-desktop.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-desktop (Version 2.6.39.3) +# spec file for package kernel-desktop (Version 3.0.0) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -17,8 +17,8 @@ # norootforbuild -%define srcversion 2.6.39 -%define patchversion 2.6.39.3 +%define srcversion 3.0 +%define patchversion 3.0.0 %define variant %{nil} %include %_sourcedir/kernel-spec-macros @@ -55,7 +55,7 @@ Name: kernel-desktop Summary: Kernel optimized for the desktop -Version: 2.6.39.3 +Version: 3.0.0 %if %using_buildservice Release: %else @@ -370,22 +370,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then %_sourcedir/modversions --unpack . < $_ fi -# If the %jobs macro is defined to a number, make will spawn that many jobs. +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. # There are several ways how to define it: # If you are using the build script: # build --jobs=N kernel-$flavor.spec # With plain rpmbuild: # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # To spawn as many jobs as there are cpu cores: -# rpmbuild -ba --define "jobs 0$(grep -c ^processor /proc/cpuinfo)" \ +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ # kernel-$flavor.spec # You can also set this permanently in ~/.rpmmacros: -# %jobs 0%(grep -c ^processor /proc/cpuinfo) +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) %if %CONFIG_KMSG_IDS == "y" chmod +x ../linux-%srcversion/scripts/kmsg-doc - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 %else - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y %endif @@ -442,7 +442,7 @@ add_vmlinux() fi %endif if $compressed; then - gzip -9 %buildroot/$vmlinux + gzip -n -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } @@ -556,7 +556,7 @@ if [ %CONFIG_MODULES = y ]; then mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor - gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz + gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -587,7 +587,7 @@ if [ %CONFIG_MODULES = y ]; then # Table of types used in exported symbols (for modversion debugging). %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then - gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor + gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor else rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor fi @@ -908,8 +908,41 @@ Debug information for package %name-devel %files devel-debuginfo -f vmlinux.debug.files %changelog +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 * Sat Jul 09 2011 jslaby@suse.cz - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in aa3d6e2b140aac24a432f830d30047b1842aed0b. @@ -921,10 +954,29 @@ Debug information for package %name-devel - Delete patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f * Mon Jul 04 2011 tiwai@suse.de - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f * Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -935,6 +987,9 @@ Debug information for package %name-devel * Sun Jun 26 2011 jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 * Fri Jun 24 2011 jslaby@suse.cz - Linux 2.6.39.2. - Delete @@ -942,10 +997,31 @@ Debug information for package %name-devel - Delete patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d * Fri Jun 17 2011 trenn@suse.de - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). - x86, mtrr: lock stop machine during MTRR rendezvous sequence (bnc#697859). - stop_machine: reorganize stop_cpus() implementation @@ -953,6 +1029,16 @@ Debug information for package %name-devel - x86, mtrr: use __stop_machine() for doing MTRR rendezvous (bnc#697859). - commit 303cc0e +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d * Thu Jun 16 2011 tiwai@suse.de - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps (bnc#700250,bnc#700251,bnc#700253). @@ -965,18 +1051,109 @@ Debug information for package %name-devel - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e * Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 * Wed Jun 15 2011 jack@suse.cz - fs: novfs: Limit check for datacopy between user and kernel space. +- fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e * Fri Jun 10 2011 trenn@suse.de - Update Suresh's patchset to version 3: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c * Wed Jun 08 2011 trenn@suse.de - Update Suresh's version 2 of the patchseries: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. diff --git a/kernel-docs.changes b/kernel-docs.changes index 98c68b8e..e4293953 100644 --- a/kernel-docs.changes +++ b/kernel-docs.changes @@ -1,6 +1,63 @@ +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + ------------------------------------------------------------------- Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in @@ -17,15 +74,43 @@ Sat Jul 9 11:10:31 CEST 2011 - jslaby@suse.cz patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + ------------------------------------------------------------------- Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + ------------------------------------------------------------------- Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -43,6 +128,12 @@ Sun Jun 26 20:20:19 CEST 2011 - jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + ------------------------------------------------------------------- Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz @@ -53,9 +144,39 @@ Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + ------------------------------------------------------------------- Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). @@ -67,6 +188,19 @@ Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de (bnc#697859). - commit 303cc0e +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + ------------------------------------------------------------------- Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de @@ -82,9 +216,41 @@ Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + ------------------------------------------------------------------- Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 @@ -92,9 +258,112 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz ------------------------------------------------------------------- Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + ------------------------------------------------------------------- Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de @@ -103,6 +372,22 @@ Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + ------------------------------------------------------------------- Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de diff --git a/kernel-docs.spec b/kernel-docs.spec index 9ca1b761..918f5dd9 100644 --- a/kernel-docs.spec +++ b/kernel-docs.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-docs (Version 2.6.39.3) +# spec file for package kernel-docs (Version 3.0.0) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -17,14 +17,14 @@ # norootforbuild -%define patchversion 2.6.39.3 +%define patchversion 3.0.0 %define variant %{nil} %include %_sourcedir/kernel-spec-macros Name: kernel-docs Summary: Kernel Documentation -Version: 2.6.39.3 +Version: 3.0.0 %if %using_buildservice Release: %else @@ -99,8 +99,41 @@ rm -rf $RPM_BUILD_ROOT /usr/share/doc/kernel %changelog +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 * Sat Jul 09 2011 jslaby@suse.cz - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in aa3d6e2b140aac24a432f830d30047b1842aed0b. @@ -112,10 +145,29 @@ rm -rf $RPM_BUILD_ROOT - Delete patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f * Mon Jul 04 2011 tiwai@suse.de - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f * Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -126,6 +178,9 @@ rm -rf $RPM_BUILD_ROOT * Sun Jun 26 2011 jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 * Fri Jun 24 2011 jslaby@suse.cz - Linux 2.6.39.2. - Delete @@ -133,10 +188,31 @@ rm -rf $RPM_BUILD_ROOT - Delete patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d * Fri Jun 17 2011 trenn@suse.de - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). - x86, mtrr: lock stop machine during MTRR rendezvous sequence (bnc#697859). - stop_machine: reorganize stop_cpus() implementation @@ -144,6 +220,16 @@ rm -rf $RPM_BUILD_ROOT - x86, mtrr: use __stop_machine() for doing MTRR rendezvous (bnc#697859). - commit 303cc0e +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d * Thu Jun 16 2011 tiwai@suse.de - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps (bnc#700250,bnc#700251,bnc#700253). @@ -156,18 +242,109 @@ rm -rf $RPM_BUILD_ROOT - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e * Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 * Wed Jun 15 2011 jack@suse.cz - fs: novfs: Limit check for datacopy between user and kernel space. +- fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e * Fri Jun 10 2011 trenn@suse.de - Update Suresh's patchset to version 3: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c * Wed Jun 08 2011 trenn@suse.de - Update Suresh's version 2 of the patchseries: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. diff --git a/kernel-ec2.changes b/kernel-ec2.changes index 98c68b8e..e4293953 100644 --- a/kernel-ec2.changes +++ b/kernel-ec2.changes @@ -1,6 +1,63 @@ +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + ------------------------------------------------------------------- Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in @@ -17,15 +74,43 @@ Sat Jul 9 11:10:31 CEST 2011 - jslaby@suse.cz patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + ------------------------------------------------------------------- Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + ------------------------------------------------------------------- Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -43,6 +128,12 @@ Sun Jun 26 20:20:19 CEST 2011 - jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + ------------------------------------------------------------------- Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz @@ -53,9 +144,39 @@ Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + ------------------------------------------------------------------- Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). @@ -67,6 +188,19 @@ Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de (bnc#697859). - commit 303cc0e +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + ------------------------------------------------------------------- Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de @@ -82,9 +216,41 @@ Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + ------------------------------------------------------------------- Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 @@ -92,9 +258,112 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz ------------------------------------------------------------------- Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + ------------------------------------------------------------------- Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de @@ -103,6 +372,22 @@ Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + ------------------------------------------------------------------- Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de diff --git a/kernel-ec2.spec b/kernel-ec2.spec index 79f79c18..12710ec5 100644 --- a/kernel-ec2.spec +++ b/kernel-ec2.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-ec2 (Version 2.6.39.3) +# spec file for package kernel-ec2 (Version 3.0.0) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -17,8 +17,8 @@ # norootforbuild -%define srcversion 2.6.39 -%define patchversion 2.6.39.3 +%define srcversion 3.0 +%define patchversion 3.0.0 %define variant %{nil} %include %_sourcedir/kernel-spec-macros @@ -55,7 +55,7 @@ Name: kernel-ec2 Summary: The Amazon EC2 Xen Kernel -Version: 2.6.39.3 +Version: 3.0.0 %if %using_buildservice Release: %else @@ -360,22 +360,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then %_sourcedir/modversions --unpack . < $_ fi -# If the %jobs macro is defined to a number, make will spawn that many jobs. +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. # There are several ways how to define it: # If you are using the build script: # build --jobs=N kernel-$flavor.spec # With plain rpmbuild: # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # To spawn as many jobs as there are cpu cores: -# rpmbuild -ba --define "jobs 0$(grep -c ^processor /proc/cpuinfo)" \ +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ # kernel-$flavor.spec # You can also set this permanently in ~/.rpmmacros: -# %jobs 0%(grep -c ^processor /proc/cpuinfo) +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) %if %CONFIG_KMSG_IDS == "y" chmod +x ../linux-%srcversion/scripts/kmsg-doc - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 %else - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y %endif @@ -432,7 +432,7 @@ add_vmlinux() fi %endif if $compressed; then - gzip -9 %buildroot/$vmlinux + gzip -n -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } @@ -546,7 +546,7 @@ if [ %CONFIG_MODULES = y ]; then mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor - gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz + gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -577,7 +577,7 @@ if [ %CONFIG_MODULES = y ]; then # Table of types used in exported symbols (for modversion debugging). %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then - gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor + gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor else rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor fi @@ -878,8 +878,41 @@ Debug information for package %name-devel %files devel-debuginfo -f vmlinux.debug.files %changelog +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 * Sat Jul 09 2011 jslaby@suse.cz - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in aa3d6e2b140aac24a432f830d30047b1842aed0b. @@ -891,10 +924,29 @@ Debug information for package %name-devel - Delete patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f * Mon Jul 04 2011 tiwai@suse.de - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f * Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -905,6 +957,9 @@ Debug information for package %name-devel * Sun Jun 26 2011 jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 * Fri Jun 24 2011 jslaby@suse.cz - Linux 2.6.39.2. - Delete @@ -912,10 +967,31 @@ Debug information for package %name-devel - Delete patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d * Fri Jun 17 2011 trenn@suse.de - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). - x86, mtrr: lock stop machine during MTRR rendezvous sequence (bnc#697859). - stop_machine: reorganize stop_cpus() implementation @@ -923,6 +999,16 @@ Debug information for package %name-devel - x86, mtrr: use __stop_machine() for doing MTRR rendezvous (bnc#697859). - commit 303cc0e +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d * Thu Jun 16 2011 tiwai@suse.de - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps (bnc#700250,bnc#700251,bnc#700253). @@ -935,18 +1021,109 @@ Debug information for package %name-devel - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e * Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 * Wed Jun 15 2011 jack@suse.cz - fs: novfs: Limit check for datacopy between user and kernel space. +- fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e * Fri Jun 10 2011 trenn@suse.de - Update Suresh's patchset to version 3: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c * Wed Jun 08 2011 trenn@suse.de - Update Suresh's version 2 of the patchseries: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. diff --git a/kernel-pae.changes b/kernel-pae.changes index 98c68b8e..e4293953 100644 --- a/kernel-pae.changes +++ b/kernel-pae.changes @@ -1,6 +1,63 @@ +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + ------------------------------------------------------------------- Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in @@ -17,15 +74,43 @@ Sat Jul 9 11:10:31 CEST 2011 - jslaby@suse.cz patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + ------------------------------------------------------------------- Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + ------------------------------------------------------------------- Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -43,6 +128,12 @@ Sun Jun 26 20:20:19 CEST 2011 - jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + ------------------------------------------------------------------- Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz @@ -53,9 +144,39 @@ Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + ------------------------------------------------------------------- Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). @@ -67,6 +188,19 @@ Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de (bnc#697859). - commit 303cc0e +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + ------------------------------------------------------------------- Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de @@ -82,9 +216,41 @@ Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + ------------------------------------------------------------------- Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 @@ -92,9 +258,112 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz ------------------------------------------------------------------- Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + ------------------------------------------------------------------- Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de @@ -103,6 +372,22 @@ Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + ------------------------------------------------------------------- Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de diff --git a/kernel-pae.spec b/kernel-pae.spec index 97ffa4fe..e562a75b 100644 --- a/kernel-pae.spec +++ b/kernel-pae.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-pae (Version 2.6.39.3) +# spec file for package kernel-pae (Version 3.0.0) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -17,8 +17,8 @@ # norootforbuild -%define srcversion 2.6.39 -%define patchversion 2.6.39.3 +%define srcversion 3.0 +%define patchversion 3.0.0 %define variant %{nil} %include %_sourcedir/kernel-spec-macros @@ -55,7 +55,7 @@ Name: kernel-pae Summary: Kernel with PAE Support -Version: 2.6.39.3 +Version: 3.0.0 %if %using_buildservice Release: %else @@ -367,22 +367,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then %_sourcedir/modversions --unpack . < $_ fi -# If the %jobs macro is defined to a number, make will spawn that many jobs. +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. # There are several ways how to define it: # If you are using the build script: # build --jobs=N kernel-$flavor.spec # With plain rpmbuild: # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # To spawn as many jobs as there are cpu cores: -# rpmbuild -ba --define "jobs 0$(grep -c ^processor /proc/cpuinfo)" \ +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ # kernel-$flavor.spec # You can also set this permanently in ~/.rpmmacros: -# %jobs 0%(grep -c ^processor /proc/cpuinfo) +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) %if %CONFIG_KMSG_IDS == "y" chmod +x ../linux-%srcversion/scripts/kmsg-doc - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 %else - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y %endif @@ -439,7 +439,7 @@ add_vmlinux() fi %endif if $compressed; then - gzip -9 %buildroot/$vmlinux + gzip -n -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } @@ -553,7 +553,7 @@ if [ %CONFIG_MODULES = y ]; then mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor - gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz + gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -584,7 +584,7 @@ if [ %CONFIG_MODULES = y ]; then # Table of types used in exported symbols (for modversion debugging). %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then - gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor + gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor else rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor fi @@ -893,8 +893,41 @@ Debug information for package %name-devel %files devel-debuginfo -f vmlinux.debug.files %changelog +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 * Sat Jul 09 2011 jslaby@suse.cz - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in aa3d6e2b140aac24a432f830d30047b1842aed0b. @@ -906,10 +939,29 @@ Debug information for package %name-devel - Delete patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f * Mon Jul 04 2011 tiwai@suse.de - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f * Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -920,6 +972,9 @@ Debug information for package %name-devel * Sun Jun 26 2011 jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 * Fri Jun 24 2011 jslaby@suse.cz - Linux 2.6.39.2. - Delete @@ -927,10 +982,31 @@ Debug information for package %name-devel - Delete patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d * Fri Jun 17 2011 trenn@suse.de - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). - x86, mtrr: lock stop machine during MTRR rendezvous sequence (bnc#697859). - stop_machine: reorganize stop_cpus() implementation @@ -938,6 +1014,16 @@ Debug information for package %name-devel - x86, mtrr: use __stop_machine() for doing MTRR rendezvous (bnc#697859). - commit 303cc0e +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d * Thu Jun 16 2011 tiwai@suse.de - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps (bnc#700250,bnc#700251,bnc#700253). @@ -950,18 +1036,109 @@ Debug information for package %name-devel - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e * Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 * Wed Jun 15 2011 jack@suse.cz - fs: novfs: Limit check for datacopy between user and kernel space. +- fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e * Fri Jun 10 2011 trenn@suse.de - Update Suresh's patchset to version 3: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c * Wed Jun 08 2011 trenn@suse.de - Update Suresh's version 2 of the patchseries: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. diff --git a/kernel-ppc64.changes b/kernel-ppc64.changes index 98c68b8e..e4293953 100644 --- a/kernel-ppc64.changes +++ b/kernel-ppc64.changes @@ -1,6 +1,63 @@ +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + ------------------------------------------------------------------- Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in @@ -17,15 +74,43 @@ Sat Jul 9 11:10:31 CEST 2011 - jslaby@suse.cz patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + ------------------------------------------------------------------- Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + ------------------------------------------------------------------- Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -43,6 +128,12 @@ Sun Jun 26 20:20:19 CEST 2011 - jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + ------------------------------------------------------------------- Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz @@ -53,9 +144,39 @@ Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + ------------------------------------------------------------------- Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). @@ -67,6 +188,19 @@ Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de (bnc#697859). - commit 303cc0e +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + ------------------------------------------------------------------- Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de @@ -82,9 +216,41 @@ Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + ------------------------------------------------------------------- Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 @@ -92,9 +258,112 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz ------------------------------------------------------------------- Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + ------------------------------------------------------------------- Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de @@ -103,6 +372,22 @@ Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + ------------------------------------------------------------------- Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de diff --git a/kernel-ppc64.spec b/kernel-ppc64.spec index eb7119dd..1ef306e1 100644 --- a/kernel-ppc64.spec +++ b/kernel-ppc64.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-ppc64 (Version 2.6.39.3) +# spec file for package kernel-ppc64 (Version 3.0.0) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -17,8 +17,8 @@ # norootforbuild -%define srcversion 2.6.39 -%define patchversion 2.6.39.3 +%define srcversion 3.0 +%define patchversion 3.0.0 %define variant %{nil} %include %_sourcedir/kernel-spec-macros @@ -55,7 +55,7 @@ Name: kernel-ppc64 Summary: Kernel for ppc64 Systems -Version: 2.6.39.3 +Version: 3.0.0 %if %using_buildservice Release: %else @@ -371,22 +371,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then %_sourcedir/modversions --unpack . < $_ fi -# If the %jobs macro is defined to a number, make will spawn that many jobs. +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. # There are several ways how to define it: # If you are using the build script: # build --jobs=N kernel-$flavor.spec # With plain rpmbuild: # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # To spawn as many jobs as there are cpu cores: -# rpmbuild -ba --define "jobs 0$(grep -c ^processor /proc/cpuinfo)" \ +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ # kernel-$flavor.spec # You can also set this permanently in ~/.rpmmacros: -# %jobs 0%(grep -c ^processor /proc/cpuinfo) +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) %if %CONFIG_KMSG_IDS == "y" chmod +x ../linux-%srcversion/scripts/kmsg-doc - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 %else - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y %endif @@ -443,7 +443,7 @@ add_vmlinux() fi %endif if $compressed; then - gzip -9 %buildroot/$vmlinux + gzip -n -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } @@ -557,7 +557,7 @@ if [ %CONFIG_MODULES = y ]; then mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor - gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz + gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -588,7 +588,7 @@ if [ %CONFIG_MODULES = y ]; then # Table of types used in exported symbols (for modversion debugging). %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then - gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor + gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor else rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor fi @@ -897,8 +897,41 @@ Debug information for package %name-devel %files devel-debuginfo -f vmlinux.debug.files %changelog +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 * Sat Jul 09 2011 jslaby@suse.cz - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in aa3d6e2b140aac24a432f830d30047b1842aed0b. @@ -910,10 +943,29 @@ Debug information for package %name-devel - Delete patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f * Mon Jul 04 2011 tiwai@suse.de - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f * Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -924,6 +976,9 @@ Debug information for package %name-devel * Sun Jun 26 2011 jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 * Fri Jun 24 2011 jslaby@suse.cz - Linux 2.6.39.2. - Delete @@ -931,10 +986,31 @@ Debug information for package %name-devel - Delete patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d * Fri Jun 17 2011 trenn@suse.de - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). - x86, mtrr: lock stop machine during MTRR rendezvous sequence (bnc#697859). - stop_machine: reorganize stop_cpus() implementation @@ -942,6 +1018,16 @@ Debug information for package %name-devel - x86, mtrr: use __stop_machine() for doing MTRR rendezvous (bnc#697859). - commit 303cc0e +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d * Thu Jun 16 2011 tiwai@suse.de - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps (bnc#700250,bnc#700251,bnc#700253). @@ -954,18 +1040,109 @@ Debug information for package %name-devel - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e * Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 * Wed Jun 15 2011 jack@suse.cz - fs: novfs: Limit check for datacopy between user and kernel space. +- fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e * Fri Jun 10 2011 trenn@suse.de - Update Suresh's patchset to version 3: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c * Wed Jun 08 2011 trenn@suse.de - Update Suresh's version 2 of the patchseries: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. diff --git a/kernel-ps3.changes b/kernel-ps3.changes index 98c68b8e..e4293953 100644 --- a/kernel-ps3.changes +++ b/kernel-ps3.changes @@ -1,6 +1,63 @@ +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + ------------------------------------------------------------------- Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in @@ -17,15 +74,43 @@ Sat Jul 9 11:10:31 CEST 2011 - jslaby@suse.cz patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + ------------------------------------------------------------------- Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + ------------------------------------------------------------------- Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -43,6 +128,12 @@ Sun Jun 26 20:20:19 CEST 2011 - jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + ------------------------------------------------------------------- Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz @@ -53,9 +144,39 @@ Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + ------------------------------------------------------------------- Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). @@ -67,6 +188,19 @@ Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de (bnc#697859). - commit 303cc0e +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + ------------------------------------------------------------------- Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de @@ -82,9 +216,41 @@ Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + ------------------------------------------------------------------- Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 @@ -92,9 +258,112 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz ------------------------------------------------------------------- Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + ------------------------------------------------------------------- Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de @@ -103,6 +372,22 @@ Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + ------------------------------------------------------------------- Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de diff --git a/kernel-ps3.spec b/kernel-ps3.spec index a0c6a029..0dd12c88 100644 --- a/kernel-ps3.spec +++ b/kernel-ps3.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-ps3 (Version 2.6.39.3) +# spec file for package kernel-ps3 (Version 3.0.0) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -17,8 +17,8 @@ # norootforbuild -%define srcversion 2.6.39 -%define patchversion 2.6.39.3 +%define srcversion 3.0 +%define patchversion 3.0.0 %define variant %{nil} %include %_sourcedir/kernel-spec-macros @@ -55,7 +55,7 @@ Name: kernel-ps3 Summary: kernel for ps3 bootloader -Version: 2.6.39.3 +Version: 3.0.0 %if %using_buildservice Release: %else @@ -360,22 +360,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then %_sourcedir/modversions --unpack . < $_ fi -# If the %jobs macro is defined to a number, make will spawn that many jobs. +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. # There are several ways how to define it: # If you are using the build script: # build --jobs=N kernel-$flavor.spec # With plain rpmbuild: # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # To spawn as many jobs as there are cpu cores: -# rpmbuild -ba --define "jobs 0$(grep -c ^processor /proc/cpuinfo)" \ +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ # kernel-$flavor.spec # You can also set this permanently in ~/.rpmmacros: -# %jobs 0%(grep -c ^processor /proc/cpuinfo) +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) %if %CONFIG_KMSG_IDS == "y" chmod +x ../linux-%srcversion/scripts/kmsg-doc - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 %else - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y %endif @@ -432,7 +432,7 @@ add_vmlinux() fi %endif if $compressed; then - gzip -9 %buildroot/$vmlinux + gzip -n -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } @@ -546,7 +546,7 @@ if [ %CONFIG_MODULES = y ]; then mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor - gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz + gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -577,7 +577,7 @@ if [ %CONFIG_MODULES = y ]; then # Table of types used in exported symbols (for modversion debugging). %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then - gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor + gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor else rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor fi @@ -878,8 +878,41 @@ Debug information for package %name-devel %files devel-debuginfo -f vmlinux.debug.files %changelog +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 * Sat Jul 09 2011 jslaby@suse.cz - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in aa3d6e2b140aac24a432f830d30047b1842aed0b. @@ -891,10 +924,29 @@ Debug information for package %name-devel - Delete patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f * Mon Jul 04 2011 tiwai@suse.de - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f * Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -905,6 +957,9 @@ Debug information for package %name-devel * Sun Jun 26 2011 jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 * Fri Jun 24 2011 jslaby@suse.cz - Linux 2.6.39.2. - Delete @@ -912,10 +967,31 @@ Debug information for package %name-devel - Delete patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d * Fri Jun 17 2011 trenn@suse.de - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). - x86, mtrr: lock stop machine during MTRR rendezvous sequence (bnc#697859). - stop_machine: reorganize stop_cpus() implementation @@ -923,6 +999,16 @@ Debug information for package %name-devel - x86, mtrr: use __stop_machine() for doing MTRR rendezvous (bnc#697859). - commit 303cc0e +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d * Thu Jun 16 2011 tiwai@suse.de - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps (bnc#700250,bnc#700251,bnc#700253). @@ -935,18 +1021,109 @@ Debug information for package %name-devel - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e * Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 * Wed Jun 15 2011 jack@suse.cz - fs: novfs: Limit check for datacopy between user and kernel space. +- fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e * Fri Jun 10 2011 trenn@suse.de - Update Suresh's patchset to version 3: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c * Wed Jun 08 2011 trenn@suse.de - Update Suresh's version 2 of the patchseries: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. diff --git a/kernel-s390.changes b/kernel-s390.changes index 98c68b8e..e4293953 100644 --- a/kernel-s390.changes +++ b/kernel-s390.changes @@ -1,6 +1,63 @@ +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + ------------------------------------------------------------------- Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in @@ -17,15 +74,43 @@ Sat Jul 9 11:10:31 CEST 2011 - jslaby@suse.cz patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + ------------------------------------------------------------------- Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + ------------------------------------------------------------------- Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -43,6 +128,12 @@ Sun Jun 26 20:20:19 CEST 2011 - jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + ------------------------------------------------------------------- Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz @@ -53,9 +144,39 @@ Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + ------------------------------------------------------------------- Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). @@ -67,6 +188,19 @@ Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de (bnc#697859). - commit 303cc0e +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + ------------------------------------------------------------------- Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de @@ -82,9 +216,41 @@ Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + ------------------------------------------------------------------- Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 @@ -92,9 +258,112 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz ------------------------------------------------------------------- Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + ------------------------------------------------------------------- Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de @@ -103,6 +372,22 @@ Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + ------------------------------------------------------------------- Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de diff --git a/kernel-s390.spec b/kernel-s390.spec index 0f13eeb7..d31c5ee0 100644 --- a/kernel-s390.spec +++ b/kernel-s390.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-s390 (Version 2.6.39.3) +# spec file for package kernel-s390 (Version 3.0.0) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -17,8 +17,8 @@ # norootforbuild -%define srcversion 2.6.39 -%define patchversion 2.6.39.3 +%define srcversion 3.0 +%define patchversion 3.0.0 %define variant %{nil} %include %_sourcedir/kernel-spec-macros @@ -55,7 +55,7 @@ Name: kernel-s390 Summary: The Standard Kernel -Version: 2.6.39.3 +Version: 3.0.0 %if %using_buildservice Release: %else @@ -360,22 +360,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then %_sourcedir/modversions --unpack . < $_ fi -# If the %jobs macro is defined to a number, make will spawn that many jobs. +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. # There are several ways how to define it: # If you are using the build script: # build --jobs=N kernel-$flavor.spec # With plain rpmbuild: # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # To spawn as many jobs as there are cpu cores: -# rpmbuild -ba --define "jobs 0$(grep -c ^processor /proc/cpuinfo)" \ +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ # kernel-$flavor.spec # You can also set this permanently in ~/.rpmmacros: -# %jobs 0%(grep -c ^processor /proc/cpuinfo) +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) %if %CONFIG_KMSG_IDS == "y" chmod +x ../linux-%srcversion/scripts/kmsg-doc - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 %else - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y %endif @@ -432,7 +432,7 @@ add_vmlinux() fi %endif if $compressed; then - gzip -9 %buildroot/$vmlinux + gzip -n -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } @@ -546,7 +546,7 @@ if [ %CONFIG_MODULES = y ]; then mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor - gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz + gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -577,7 +577,7 @@ if [ %CONFIG_MODULES = y ]; then # Table of types used in exported symbols (for modversion debugging). %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then - gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor + gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor else rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor fi @@ -872,8 +872,41 @@ Debug information for package %name-devel %files devel-debuginfo -f vmlinux.debug.files %changelog +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 * Sat Jul 09 2011 jslaby@suse.cz - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in aa3d6e2b140aac24a432f830d30047b1842aed0b. @@ -885,10 +918,29 @@ Debug information for package %name-devel - Delete patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f * Mon Jul 04 2011 tiwai@suse.de - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f * Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -899,6 +951,9 @@ Debug information for package %name-devel * Sun Jun 26 2011 jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 * Fri Jun 24 2011 jslaby@suse.cz - Linux 2.6.39.2. - Delete @@ -906,10 +961,31 @@ Debug information for package %name-devel - Delete patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d * Fri Jun 17 2011 trenn@suse.de - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). - x86, mtrr: lock stop machine during MTRR rendezvous sequence (bnc#697859). - stop_machine: reorganize stop_cpus() implementation @@ -917,6 +993,16 @@ Debug information for package %name-devel - x86, mtrr: use __stop_machine() for doing MTRR rendezvous (bnc#697859). - commit 303cc0e +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d * Thu Jun 16 2011 tiwai@suse.de - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps (bnc#700250,bnc#700251,bnc#700253). @@ -929,18 +1015,109 @@ Debug information for package %name-devel - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e * Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 * Wed Jun 15 2011 jack@suse.cz - fs: novfs: Limit check for datacopy between user and kernel space. +- fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e * Fri Jun 10 2011 trenn@suse.de - Update Suresh's patchset to version 3: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c * Wed Jun 08 2011 trenn@suse.de - Update Suresh's version 2 of the patchseries: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. diff --git a/kernel-source.changes b/kernel-source.changes index 98c68b8e..e4293953 100644 --- a/kernel-source.changes +++ b/kernel-source.changes @@ -1,6 +1,63 @@ +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + ------------------------------------------------------------------- Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in @@ -17,15 +74,43 @@ Sat Jul 9 11:10:31 CEST 2011 - jslaby@suse.cz patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + ------------------------------------------------------------------- Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + ------------------------------------------------------------------- Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -43,6 +128,12 @@ Sun Jun 26 20:20:19 CEST 2011 - jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + ------------------------------------------------------------------- Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz @@ -53,9 +144,39 @@ Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + ------------------------------------------------------------------- Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). @@ -67,6 +188,19 @@ Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de (bnc#697859). - commit 303cc0e +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + ------------------------------------------------------------------- Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de @@ -82,9 +216,41 @@ Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + ------------------------------------------------------------------- Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 @@ -92,9 +258,112 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz ------------------------------------------------------------------- Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + ------------------------------------------------------------------- Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de @@ -103,6 +372,22 @@ Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + ------------------------------------------------------------------- Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de diff --git a/kernel-source.spec b/kernel-source.spec index bbe65bb9..4225b8cc 100644 --- a/kernel-source.spec +++ b/kernel-source.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-source (Version 2.6.39.3) +# spec file for package kernel-source (Version 3.0.0) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -18,8 +18,8 @@ # norootforbuild # icecream 0 -%define srcversion 2.6.39 -%define patchversion 2.6.39.3 +%define srcversion 3.0 +%define patchversion 3.0.0 %define variant %{nil} %define vanilla_only 0 @@ -29,7 +29,7 @@ Name: kernel-source Summary: The Linux Kernel Sources -Version: 2.6.39.3 +Version: 3.0.0 %if %using_buildservice Release: %else @@ -255,8 +255,41 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts" %endif %changelog +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 * Sat Jul 09 2011 jslaby@suse.cz - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in aa3d6e2b140aac24a432f830d30047b1842aed0b. @@ -268,10 +301,29 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts" - Delete patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f * Mon Jul 04 2011 tiwai@suse.de - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f * Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -282,6 +334,9 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts" * Sun Jun 26 2011 jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 * Fri Jun 24 2011 jslaby@suse.cz - Linux 2.6.39.2. - Delete @@ -289,10 +344,31 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts" - Delete patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d * Fri Jun 17 2011 trenn@suse.de - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). - x86, mtrr: lock stop machine during MTRR rendezvous sequence (bnc#697859). - stop_machine: reorganize stop_cpus() implementation @@ -300,6 +376,16 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts" - x86, mtrr: use __stop_machine() for doing MTRR rendezvous (bnc#697859). - commit 303cc0e +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d * Thu Jun 16 2011 tiwai@suse.de - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps (bnc#700250,bnc#700251,bnc#700253). @@ -312,18 +398,109 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts" - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e * Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 * Wed Jun 15 2011 jack@suse.cz - fs: novfs: Limit check for datacopy between user and kernel space. +- fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e * Fri Jun 10 2011 trenn@suse.de - Update Suresh's patchset to version 3: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c * Wed Jun 08 2011 trenn@suse.de - Update Suresh's version 2 of the patchseries: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. diff --git a/kernel-syms.changes b/kernel-syms.changes index 98c68b8e..e4293953 100644 --- a/kernel-syms.changes +++ b/kernel-syms.changes @@ -1,6 +1,63 @@ +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + ------------------------------------------------------------------- Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in @@ -17,15 +74,43 @@ Sat Jul 9 11:10:31 CEST 2011 - jslaby@suse.cz patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + ------------------------------------------------------------------- Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + ------------------------------------------------------------------- Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -43,6 +128,12 @@ Sun Jun 26 20:20:19 CEST 2011 - jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + ------------------------------------------------------------------- Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz @@ -53,9 +144,39 @@ Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + ------------------------------------------------------------------- Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). @@ -67,6 +188,19 @@ Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de (bnc#697859). - commit 303cc0e +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + ------------------------------------------------------------------- Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de @@ -82,9 +216,41 @@ Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + ------------------------------------------------------------------- Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 @@ -92,9 +258,112 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz ------------------------------------------------------------------- Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + ------------------------------------------------------------------- Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de @@ -103,6 +372,22 @@ Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + ------------------------------------------------------------------- Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de diff --git a/kernel-syms.spec b/kernel-syms.spec index 2d4d5568..31ebe3ef 100644 --- a/kernel-syms.spec +++ b/kernel-syms.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-syms (Version 2.6.39.3) +# spec file for package kernel-syms (Version 3.0.0) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -23,7 +23,7 @@ Name: kernel-syms Summary: Kernel Symbol Versions (modversions) -Version: 2.6.39.3 +Version: 3.0.0 %if %using_buildservice Release: %else @@ -81,8 +81,41 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE %_docdir/%name/README.SUSE %changelog +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 * Sat Jul 09 2011 jslaby@suse.cz - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in aa3d6e2b140aac24a432f830d30047b1842aed0b. @@ -94,10 +127,29 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE - Delete patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f * Mon Jul 04 2011 tiwai@suse.de - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f * Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -108,6 +160,9 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE * Sun Jun 26 2011 jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 * Fri Jun 24 2011 jslaby@suse.cz - Linux 2.6.39.2. - Delete @@ -115,10 +170,31 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE - Delete patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d * Fri Jun 17 2011 trenn@suse.de - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). - x86, mtrr: lock stop machine during MTRR rendezvous sequence (bnc#697859). - stop_machine: reorganize stop_cpus() implementation @@ -126,6 +202,16 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE - x86, mtrr: use __stop_machine() for doing MTRR rendezvous (bnc#697859). - commit 303cc0e +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d * Thu Jun 16 2011 tiwai@suse.de - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps (bnc#700250,bnc#700251,bnc#700253). @@ -138,18 +224,109 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e * Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 * Wed Jun 15 2011 jack@suse.cz - fs: novfs: Limit check for datacopy between user and kernel space. +- fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e * Fri Jun 10 2011 trenn@suse.de - Update Suresh's patchset to version 3: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c * Wed Jun 08 2011 trenn@suse.de - Update Suresh's version 2 of the patchseries: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. diff --git a/kernel-trace.changes b/kernel-trace.changes index 98c68b8e..e4293953 100644 --- a/kernel-trace.changes +++ b/kernel-trace.changes @@ -1,6 +1,63 @@ +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + ------------------------------------------------------------------- Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in @@ -17,15 +74,43 @@ Sat Jul 9 11:10:31 CEST 2011 - jslaby@suse.cz patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + ------------------------------------------------------------------- Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + ------------------------------------------------------------------- Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -43,6 +128,12 @@ Sun Jun 26 20:20:19 CEST 2011 - jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + ------------------------------------------------------------------- Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz @@ -53,9 +144,39 @@ Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + ------------------------------------------------------------------- Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). @@ -67,6 +188,19 @@ Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de (bnc#697859). - commit 303cc0e +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + ------------------------------------------------------------------- Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de @@ -82,9 +216,41 @@ Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + ------------------------------------------------------------------- Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 @@ -92,9 +258,112 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz ------------------------------------------------------------------- Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + ------------------------------------------------------------------- Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de @@ -103,6 +372,22 @@ Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + ------------------------------------------------------------------- Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de diff --git a/kernel-trace.spec b/kernel-trace.spec index c0f5a8f8..95ad5ecc 100644 --- a/kernel-trace.spec +++ b/kernel-trace.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-trace (Version 2.6.39.3) +# spec file for package kernel-trace (Version 3.0.0) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -17,8 +17,8 @@ # norootforbuild -%define srcversion 2.6.39 -%define patchversion 2.6.39.3 +%define srcversion 3.0 +%define patchversion 3.0.0 %define variant %{nil} %include %_sourcedir/kernel-spec-macros @@ -55,7 +55,7 @@ Name: kernel-trace Summary: The Standard Kernel with Tracing Features -Version: 2.6.39.3 +Version: 3.0.0 %if %using_buildservice Release: %else @@ -368,22 +368,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then %_sourcedir/modversions --unpack . < $_ fi -# If the %jobs macro is defined to a number, make will spawn that many jobs. +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. # There are several ways how to define it: # If you are using the build script: # build --jobs=N kernel-$flavor.spec # With plain rpmbuild: # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # To spawn as many jobs as there are cpu cores: -# rpmbuild -ba --define "jobs 0$(grep -c ^processor /proc/cpuinfo)" \ +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ # kernel-$flavor.spec # You can also set this permanently in ~/.rpmmacros: -# %jobs 0%(grep -c ^processor /proc/cpuinfo) +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) %if %CONFIG_KMSG_IDS == "y" chmod +x ../linux-%srcversion/scripts/kmsg-doc - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 %else - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y %endif @@ -440,7 +440,7 @@ add_vmlinux() fi %endif if $compressed; then - gzip -9 %buildroot/$vmlinux + gzip -n -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } @@ -554,7 +554,7 @@ if [ %CONFIG_MODULES = y ]; then mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor - gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz + gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -585,7 +585,7 @@ if [ %CONFIG_MODULES = y ]; then # Table of types used in exported symbols (for modversion debugging). %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then - gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor + gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor else rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor fi @@ -880,8 +880,41 @@ Debug information for package %name-devel %files devel-debuginfo -f vmlinux.debug.files %changelog +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 * Sat Jul 09 2011 jslaby@suse.cz - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in aa3d6e2b140aac24a432f830d30047b1842aed0b. @@ -893,10 +926,29 @@ Debug information for package %name-devel - Delete patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f * Mon Jul 04 2011 tiwai@suse.de - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f * Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -907,6 +959,9 @@ Debug information for package %name-devel * Sun Jun 26 2011 jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 * Fri Jun 24 2011 jslaby@suse.cz - Linux 2.6.39.2. - Delete @@ -914,10 +969,31 @@ Debug information for package %name-devel - Delete patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d * Fri Jun 17 2011 trenn@suse.de - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). - x86, mtrr: lock stop machine during MTRR rendezvous sequence (bnc#697859). - stop_machine: reorganize stop_cpus() implementation @@ -925,6 +1001,16 @@ Debug information for package %name-devel - x86, mtrr: use __stop_machine() for doing MTRR rendezvous (bnc#697859). - commit 303cc0e +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d * Thu Jun 16 2011 tiwai@suse.de - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps (bnc#700250,bnc#700251,bnc#700253). @@ -937,18 +1023,109 @@ Debug information for package %name-devel - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e * Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 * Wed Jun 15 2011 jack@suse.cz - fs: novfs: Limit check for datacopy between user and kernel space. +- fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e * Fri Jun 10 2011 trenn@suse.de - Update Suresh's patchset to version 3: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c * Wed Jun 08 2011 trenn@suse.de - Update Suresh's version 2 of the patchseries: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. diff --git a/kernel-vanilla.changes b/kernel-vanilla.changes index 98c68b8e..e4293953 100644 --- a/kernel-vanilla.changes +++ b/kernel-vanilla.changes @@ -1,6 +1,63 @@ +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + ------------------------------------------------------------------- Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in @@ -17,15 +74,43 @@ Sat Jul 9 11:10:31 CEST 2011 - jslaby@suse.cz patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + ------------------------------------------------------------------- Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + ------------------------------------------------------------------- Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -43,6 +128,12 @@ Sun Jun 26 20:20:19 CEST 2011 - jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + ------------------------------------------------------------------- Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz @@ -53,9 +144,39 @@ Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + ------------------------------------------------------------------- Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). @@ -67,6 +188,19 @@ Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de (bnc#697859). - commit 303cc0e +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + ------------------------------------------------------------------- Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de @@ -82,9 +216,41 @@ Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + ------------------------------------------------------------------- Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 @@ -92,9 +258,112 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz ------------------------------------------------------------------- Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + ------------------------------------------------------------------- Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de @@ -103,6 +372,22 @@ Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + ------------------------------------------------------------------- Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de diff --git a/kernel-vanilla.spec b/kernel-vanilla.spec index 384850e0..82804a51 100644 --- a/kernel-vanilla.spec +++ b/kernel-vanilla.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-vanilla (Version 2.6.39.3) +# spec file for package kernel-vanilla (Version 3.0.0) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -17,8 +17,8 @@ # norootforbuild -%define srcversion 2.6.39 -%define patchversion 2.6.39.3 +%define srcversion 3.0 +%define patchversion 3.0.0 %define variant %{nil} %include %_sourcedir/kernel-spec-macros @@ -55,7 +55,7 @@ Name: kernel-vanilla Summary: The Standard Kernel - without any SUSE patches -Version: 2.6.39.3 +Version: 3.0.0 %if %using_buildservice Release: %else @@ -364,22 +364,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then %_sourcedir/modversions --unpack . < $_ fi -# If the %jobs macro is defined to a number, make will spawn that many jobs. +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. # There are several ways how to define it: # If you are using the build script: # build --jobs=N kernel-$flavor.spec # With plain rpmbuild: # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # To spawn as many jobs as there are cpu cores: -# rpmbuild -ba --define "jobs 0$(grep -c ^processor /proc/cpuinfo)" \ +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ # kernel-$flavor.spec # You can also set this permanently in ~/.rpmmacros: -# %jobs 0%(grep -c ^processor /proc/cpuinfo) +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) %if %CONFIG_KMSG_IDS == "y" chmod +x ../linux-%srcversion/scripts/kmsg-doc - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 %else - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y %endif @@ -436,7 +436,7 @@ add_vmlinux() fi %endif if $compressed; then - gzip -9 %buildroot/$vmlinux + gzip -n -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } @@ -550,7 +550,7 @@ if [ %CONFIG_MODULES = y ]; then mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor - gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz + gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -581,7 +581,7 @@ if [ %CONFIG_MODULES = y ]; then # Table of types used in exported symbols (for modversion debugging). %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then - gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor + gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor else rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor fi @@ -876,8 +876,41 @@ Debug information for package %name-devel %files devel-debuginfo -f vmlinux.debug.files %changelog +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 * Sat Jul 09 2011 jslaby@suse.cz - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in aa3d6e2b140aac24a432f830d30047b1842aed0b. @@ -889,10 +922,29 @@ Debug information for package %name-devel - Delete patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f * Mon Jul 04 2011 tiwai@suse.de - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f * Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -903,6 +955,9 @@ Debug information for package %name-devel * Sun Jun 26 2011 jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 * Fri Jun 24 2011 jslaby@suse.cz - Linux 2.6.39.2. - Delete @@ -910,10 +965,31 @@ Debug information for package %name-devel - Delete patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d * Fri Jun 17 2011 trenn@suse.de - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). - x86, mtrr: lock stop machine during MTRR rendezvous sequence (bnc#697859). - stop_machine: reorganize stop_cpus() implementation @@ -921,6 +997,16 @@ Debug information for package %name-devel - x86, mtrr: use __stop_machine() for doing MTRR rendezvous (bnc#697859). - commit 303cc0e +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d * Thu Jun 16 2011 tiwai@suse.de - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps (bnc#700250,bnc#700251,bnc#700253). @@ -933,18 +1019,109 @@ Debug information for package %name-devel - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e * Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 * Wed Jun 15 2011 jack@suse.cz - fs: novfs: Limit check for datacopy between user and kernel space. +- fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e * Fri Jun 10 2011 trenn@suse.de - Update Suresh's patchset to version 3: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c * Wed Jun 08 2011 trenn@suse.de - Update Suresh's version 2 of the patchseries: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. diff --git a/kernel-xen.changes b/kernel-xen.changes index 98c68b8e..e4293953 100644 --- a/kernel-xen.changes +++ b/kernel-xen.changes @@ -1,6 +1,63 @@ +------------------------------------------------------------------- +Sun Jul 24 08:15:18 CEST 2011 - jslaby@suse.cz + +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf + +------------------------------------------------------------------- +Fri Jul 22 10:24:06 CEST 2011 - mmarek@suse.cz + +- Update to 3.0. +- commit 50c05d7 + +------------------------------------------------------------------- +Thu Jul 21 14:50:39 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 + +------------------------------------------------------------------- +Mon Jul 18 14:35:31 CEST 2011 - jdelvare@suse.de + +- tulip: Disable debugging messages by default +- commit 141a54f + +------------------------------------------------------------------- +Fri Jul 15 10:14:30 CEST 2011 - ohering@suse.de + +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 + +------------------------------------------------------------------- +Thu Jul 14 17:52:45 CEST 2011 - tiwai@suse.de + +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 + +------------------------------------------------------------------- +Thu Jul 14 17:26:51 CEST 2011 - tiwai@suse.de + +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 + +------------------------------------------------------------------- +Wed Jul 13 03:16:09 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc7. +- commit 0de37e1 + ------------------------------------------------------------------- Sat Jul 9 11:17:46 CEST 2011 - jslaby@suse.cz +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in @@ -17,15 +74,43 @@ Sat Jul 9 11:10:31 CEST 2011 - jslaby@suse.cz patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +------------------------------------------------------------------- +Thu Jul 7 00:58:01 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da + +------------------------------------------------------------------- +Tue Jul 5 09:18:43 CEST 2011 - jbeulich@novell.com + +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f + ------------------------------------------------------------------- Mon Jul 4 12:07:08 CEST 2011 - tiwai@suse.de +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +------------------------------------------------------------------- +Wed Jun 29 15:12:07 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc5. +- commit 9eb1a0f + ------------------------------------------------------------------- Wed Jun 29 14:46:33 CEST 2011 - jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -43,6 +128,12 @@ Sun Jun 26 20:20:19 CEST 2011 - jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +------------------------------------------------------------------- +Fri Jun 24 01:30:11 CEST 2011 - jeffm@suse.com + +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 + ------------------------------------------------------------------- Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz @@ -53,9 +144,39 @@ Fri Jun 24 01:10:51 CEST 2011 - jslaby@suse.cz patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +------------------------------------------------------------------- +Tue Jun 21 14:06:48 CEST 2011 - mmarek@suse.cz + +- Update vanilla configs. +- commit 1738011 + +------------------------------------------------------------------- +Tue Jun 21 12:14:44 CEST 2011 - mmarek@suse.cz + +- Update to 3.0-rc4 +- commit 1b6bf5d + +------------------------------------------------------------------- +Fri Jun 17 17:29:41 CEST 2011 - mmarek@suse.cz + +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d + ------------------------------------------------------------------- Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). @@ -67,6 +188,19 @@ Fri Jun 17 13:23:54 CEST 2011 - trenn@suse.de (bnc#697859). - commit 303cc0e +------------------------------------------------------------------- +Thu Jun 16 12:16:16 CEST 2011 - mmarek@suse.cz + +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d + ------------------------------------------------------------------- Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de @@ -82,9 +216,41 @@ Thu Jun 16 12:05:15 CEST 2011 - tiwai@suse.de (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +------------------------------------------------------------------- +Thu Jun 16 12:04:56 CEST 2011 - ohering@suse.de + +- Update vanilla config files. +- commit a642909 + +------------------------------------------------------------------- +Thu Jun 16 11:50:58 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf + +------------------------------------------------------------------- +Thu Jun 16 11:27:44 CEST 2011 - ohering@suse.de + +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c + +------------------------------------------------------------------- +Wed Jun 15 20:40:28 CEST 2011 - jeffm@suse.com + +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e + ------------------------------------------------------------------- Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 @@ -92,9 +258,112 @@ Wed Jun 15 18:33:50 CEST 2011 - jack@suse.cz ------------------------------------------------------------------- Wed Jun 15 18:22:05 CEST 2011 - jack@suse.cz +- fs: novfs: Limit check for datacopy between user and kernel space. - fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +------------------------------------------------------------------- +Wed Jun 15 08:05:05 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 + +------------------------------------------------------------------- +Tue Jun 14 17:13:47 CEST 2011 - mmarek@suse.cz + +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f + +------------------------------------------------------------------- +Mon Jun 13 21:52:37 CEST 2011 - jeffm@suse.com + +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 + +------------------------------------------------------------------- +Mon Jun 13 17:29:32 CEST 2011 - jeffm@suse.com + +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 + +------------------------------------------------------------------- +Mon Jun 13 17:18:17 CEST 2011 - jeffm@suse.com + +- Update config files. +- commit 2cd7359 + +------------------------------------------------------------------- +Mon Jun 13 17:15:33 CEST 2011 - jeffm@suse.com + +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d + +------------------------------------------------------------------- +Mon Jun 13 16:58:50 CEST 2011 - mmarek@suse.cz + +- Remove copypasted lines from vanilla configs. +- commit b395e52 + +------------------------------------------------------------------- +Mon Jun 13 16:27:20 CEST 2011 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 + +------------------------------------------------------------------- +Mon Jun 13 16:00:19 CEST 2011 - mmarek@suse.cz + +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 + +------------------------------------------------------------------- +Mon Jun 13 14:41:50 CEST 2011 - mmarek@suse.cz + +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 + +------------------------------------------------------------------- +Mon Jun 13 14:06:28 CEST 2011 - mmarek@suse.cz + +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 + +------------------------------------------------------------------- +Sat Jun 11 23:37:42 CEST 2011 - jeffm@suse.de + +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 + +------------------------------------------------------------------- +Fri Jun 10 20:24:41 CEST 2011 - jeffm@suse.com + +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 + +------------------------------------------------------------------- +Fri Jun 10 17:12:22 CEST 2011 - jeffm@suse.com + +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e + ------------------------------------------------------------------- Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de @@ -103,6 +372,22 @@ Fri Jun 10 10:35:10 CEST 2011 - trenn@suse.de - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +------------------------------------------------------------------- +Wed Jun 8 20:18:25 CEST 2011 - jeffm@suse.com + +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 + +------------------------------------------------------------------- +Wed Jun 8 17:07:32 CEST 2011 - jeffm@suse.com + +- Update to 3.0-rc2. +- commit b97d26c + ------------------------------------------------------------------- Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de diff --git a/kernel-xen.spec b/kernel-xen.spec index db78ef3b..d5141328 100644 --- a/kernel-xen.spec +++ b/kernel-xen.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-xen (Version 2.6.39.3) +# spec file for package kernel-xen (Version 3.0.0) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -17,8 +17,8 @@ # norootforbuild -%define srcversion 2.6.39 -%define patchversion 2.6.39.3 +%define srcversion 3.0 +%define patchversion 3.0.0 %define variant %{nil} %include %_sourcedir/kernel-spec-macros @@ -55,7 +55,7 @@ Name: kernel-xen Summary: The Xen Kernel -Version: 2.6.39.3 +Version: 3.0.0 %if %using_buildservice Release: %else @@ -360,22 +360,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then %_sourcedir/modversions --unpack . < $_ fi -# If the %jobs macro is defined to a number, make will spawn that many jobs. +# The %{_smp_mflags} macro is defined to a number, make will spawn that many jobs. # There are several ways how to define it: # If you are using the build script: # build --jobs=N kernel-$flavor.spec # With plain rpmbuild: # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # To spawn as many jobs as there are cpu cores: -# rpmbuild -ba --define "jobs 0$(grep -c ^processor /proc/cpuinfo)" \ +# rpmbuild -ba --define "%_smp_mflags -j 0$(grep -Ec 'cpu[0-9]' /proc/stat)" \ # kernel-$flavor.spec # You can also set this permanently in ~/.rpmmacros: -# %jobs 0%(grep -c ^processor /proc/cpuinfo) +# %_smp_mflags -j 0%(grep -Ec 'cpu[0-9]' /proc/stat) %if %CONFIG_KMSG_IDS == "y" chmod +x ../linux-%srcversion/scripts/kmsg-doc - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y D=2 %else - make %{?jobs:-j%jobs} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y + make %{?_smp_mflags} all $MAKE_ARGS CONFIG_DEBUG_SECTION_MISMATCH=y %endif @@ -432,7 +432,7 @@ add_vmlinux() fi %endif if $compressed; then - gzip -9 %buildroot/$vmlinux + gzip -n -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } @@ -546,7 +546,7 @@ if [ %CONFIG_MODULES = y ]; then mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor - gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz + gzip -n -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -577,7 +577,7 @@ if [ %CONFIG_MODULES = y ]; then # Table of types used in exported symbols (for modversion debugging). %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then - gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor + gzip -n -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor else rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor fi @@ -878,8 +878,41 @@ Debug information for package %name-devel %files devel-debuginfo -f vmlinux.debug.files %changelog +* Sun Jul 24 2011 jslaby@suse.cz +- fix crash in scsi_dispatch_cmd() (bnc#707853). +- commit dfe0dcf +* Fri Jul 22 2011 mmarek@suse.cz +- Update to 3.0. +- commit 50c05d7 +* Thu Jul 21 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc7 and c/s 1098. +- Update Xen config files. +- commit f4eb207 +* Mon Jul 18 2011 jdelvare@suse.de +- tulip: Disable debugging messages by default +- commit 141a54f +* Fri Jul 15 2011 ohering@suse.de +- hv: only load the driver in a hyper-v guest (bnc#704957). +- commit f2f7449 +* Thu Jul 14 2011 tiwai@suse.de +- Refresh patches.suse/SUSE-bootsplash. Fix for nouveau. +- commit 27de298 +* Thu Jul 14 2011 tiwai@suse.de +- ALSA: hda - Add Kconfig for the default buffer size + (bnc#682725). +- Update config files. +- Delete, replaced with the new upstream patch + patches.drivers/alsa-hda-0019-Increase-default-buffer-size. +- commit 40c7644 +* Wed Jul 13 2011 jeffm@suse.com +- Update to 3.0-rc7. +- commit 0de37e1 * Sat Jul 09 2011 jslaby@suse.cz - Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. +- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. + They were superseded by other patches in + aa3d6e2b140aac24a432f830d30047b1842aed0b. +- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. They were superseded by other patches in aa3d6e2b140aac24a432f830d30047b1842aed0b. @@ -891,10 +924,29 @@ Debug information for package %name-devel - Delete patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. - commit 8f499df +* Thu Jul 07 2011 jeffm@suse.com +- Update to 3.0-rc6. + - Eliminated 1 patch. +- commit 56e99da +* Tue Jul 05 2011 jbeulich@novell.com +- Update Xen patches to 3.0-rc5 and c/s 1095. +- xen: prepare tmem shim to handle frontswap. +- support booting Xen from EFI (fate#311376, fate#311529, + bnc#578927, bnc#628554). +- config.conf: Re-enabled Xen flavors. +- Update x86 config files. +- Delete patches.xen/xen-blkback-bimodal-suse. +- commit 4c2a76f * Mon Jul 04 2011 tiwai@suse.de - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) +- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493) - commit b4495f4 +* Wed Jun 29 2011 jeffm@suse.com +- Update to 3.0-rc5. +- commit 9eb1a0f * Wed Jun 29 2011 jslaby@suse.cz +- TTY: ldisc, do not close until there are readers (bnc#698247 + bnc#693374). - TTY: ldisc, do not close until there are readers (bnc#698247 bnc#693374). - commit 0615f1a @@ -905,6 +957,9 @@ Debug information for package %name-devel * Sun Jun 26 2011 jslaby@suse.cz - bridge: provide a cow_metrics method for fake_ops. - commit 5bff18d +* Fri Jun 24 2011 jeffm@suse.com +- Enable TOMOYO (FATE#310292, bnc#668381). +- commit 997e757 * Fri Jun 24 2011 jslaby@suse.cz - Linux 2.6.39.2. - Delete @@ -912,10 +967,31 @@ Debug information for package %name-devel - Delete patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. - commit a1dc102 +* Tue Jun 21 2011 mmarek@suse.cz +- Update vanilla configs. +- commit 1738011 +* Tue Jun 21 2011 mmarek@suse.cz +- Update to 3.0-rc4 +- commit 1b6bf5d +* Fri Jun 17 2011 mmarek@suse.cz +- rpm/post.sh: Touch /boot/do_purge_kernels on package install + (fate#312018). +- rpm/postun.sh: Remove it again if it still exists on package + uninstall. +- commit 82f4a5d * Fri Jun 17 2011 trenn@suse.de - stop_machine: implement stop_machine_from_offline_cpu() (bnc#697859). - stop_machine: kill __stop_machine() (bnc#697859). +- x86, mtrr: lock stop machine during MTRR rendezvous sequence + (bnc#697859). +- stop_machine: reorganize stop_cpus() implementation + (bnc#697859). +- x86, mtrr: use __stop_machine() for doing MTRR rendezvous + (bnc#697859). +- stop_machine: implement stop_machine_from_offline_cpu() + (bnc#697859). +- stop_machine: kill __stop_machine() (bnc#697859). - x86, mtrr: lock stop machine during MTRR rendezvous sequence (bnc#697859). - stop_machine: reorganize stop_cpus() implementation @@ -923,6 +999,16 @@ Debug information for package %name-devel - x86, mtrr: use __stop_machine() for doing MTRR rendezvous (bnc#697859). - commit 303cc0e +* Thu Jun 16 2011 mmarek@suse.cz +- Remove the novfs patches, it should be packaged as a KMP, or + ideally, reimplemented as a fuse filesystem (which is the reason why + the current implementation it is never going to be accepted upstream). +- Delete patches.fixes/novfs-copy_user-fixes.diff. +- Delete patches.fixes/novfs-minsize-fixes. +- Delete patches.fixes/novfs-nwcapi.patch. +- Delete patches.suse/novfs-client-module. +- Delete patches.suse/novfs-remove-bkl. +- commit bc3a79d * Thu Jun 16 2011 tiwai@suse.de - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps (bnc#700250,bnc#700251,bnc#700253). @@ -935,18 +1021,109 @@ Debug information for package %name-devel - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs (bnc#700250,bnc#700251,bnc#700253). - commit e9fb121 +* Thu Jun 16 2011 ohering@suse.de +- Update vanilla config files. +- commit a642909 +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- rpm/kernel-binary.spec.in: + jobs is not defined for home: projects, use the new _smp_mflags to enable parallel build +- commit 1009eaf +* Thu Jun 16 2011 ohering@suse.de +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- rpm/kernel-binary.spec.in: + Update comment, get the number of cpus from /proc/stat +- commit b4cf18c +* Wed Jun 15 2011 jeffm@suse.com +- Update config files: Disable BRCMSMAC on ppc/ppc64. +- commit 20b3d8e * Wed Jun 15 2011 jack@suse.cz +- "Unable to save Login Script" appears when trying to save a + user login script (bnc#638985). - "Unable to save Login Script" appears when trying to save a user login script (bnc#638985). - commit fb87098 * Wed Jun 15 2011 jack@suse.cz - fs: novfs: Limit check for datacopy between user and kernel space. +- fs: novfs: Limit check for datacopy between user and kernel space. - commit 2985362 +* Wed Jun 15 2011 jeffm@suse.com +- Update to 3.0-rc3. + - Eliminated 2 patches. +- commit a1fe999 +* Tue Jun 14 2011 mmarek@suse.cz +- scripts/config.sh: Remove MIRROR handling, _find_tarball() does it + itself. +- commit 18ad47f +* Mon Jun 13 2011 jeffm@suse.com +- nouveau: Make vga_switcheroo code depend on VGA_SWITCHEROO. +- commit b3f32a6 +* Mon Jun 13 2011 jeffm@suse.com +- apm: Honor CONFIG_APM_CPU_IDLE=n. +- commit 8ad9b51 +* Mon Jun 13 2011 jeffm@suse.com +- Update config files. +- commit 2cd7359 +* Mon Jun 13 2011 jeffm@suse.com +- Delete patches.rpmify/qla4xx-missing-readq-definition. +- commit b48337d +* Mon Jun 13 2011 mmarek@suse.cz +- Remove copypasted lines from vanilla configs. +- commit b395e52 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/kernel-binary.spec.in: Call gzip with -n. +- commit 9a65e48 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/mkspec: Put the -rcX tag into the rpm version instead of the + trailing zero. Rpm considers "rc" older than "0", so this will sort + properly. +- commit 8d9b2b9 +* Mon Jun 13 2011 mmarek@suse.cz +- x86, build: Do not set the root_dev field in bzImage. +- commit 15e4a82 +* Mon Jun 13 2011 mmarek@suse.cz +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/compute-PATCHVERSION.sh: Set default PATCHLEVEL and SUBLEVEL to 0. + The package version will thus always match the Makefile version and + the SRCVERSION variable will only be used to determine the tarball + version. +- rpm/kernel-binary.spec.in: Revert the previous hack. +- commit 95c9977 +* Sat Jun 11 2011 jeffm@suse.de +- kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL. +- kbuild: Fix for empty SUBLEVEL or PATCHLEVEL. +- Refresh patches.suse/supported-flag. +- rpm/kernel-binary.spec.in: Hack to work around v3.0 vs v3.0.0 +- commit a95ebd8 +* Fri Jun 10 2011 jeffm@suse.com +- Delete patches.suse/file-capabilities-disable-by-default.diff. +- commit 2694a88 +* Fri Jun 10 2011 jeffm@suse.com +- x86: Remove warning and warning_symbol from struct + stacktrace_ops. +- Delete + patches.fixes/asus-wmi-Remove-__init-from-asus_wmi_platform_init.patch. +- commit 608ce9e * Fri Jun 10 2011 trenn@suse.de - Update Suresh's patchset to version 3: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - commit 9f2e923 +* Wed Jun 08 2011 jeffm@suse.com +- Revert "Revert "- Updated to 3.0-rc1."" + This reverts commit b2d9e72dc9cd8e62d49e0565babd76332f7c2114. + Conflicts: + rpm/config.sh + series.conf +- commit 408e273 +* Wed Jun 08 2011 jeffm@suse.com +- Update to 3.0-rc2. +- commit b97d26c * Wed Jun 08 2011 trenn@suse.de - Update Suresh's version 2 of the patchseries: - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. diff --git a/linux-3.0.tar.bz2 b/linux-3.0.tar.bz2 new file mode 100644 index 00000000..8b596c8a --- /dev/null +++ b/linux-3.0.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64b0228b54ce39b0b2df086109a7b737cde58e3df4f779506ddcaccee90356a0 +size 76753134 diff --git a/mkspec b/mkspec index 2f1700a5..9988534a 100644 --- a/mkspec +++ b/mkspec @@ -38,9 +38,13 @@ my %binary_descriptions = parse_descriptions(); $patches="--patches $patches" if $patches; my $patchversion = `$dir/compute-PATCHVERSION.sh $patches`; chomp $patchversion; -my $rpmversion; +my $rpmversion = $patchversion; +# stuff the -rcX tag into the rpm version if possible; +$rpmversion =~ s/\.0-rc/.rc/; +$rpmversion =~ s/-rc\d+//; +$rpmversion =~ s/-/./g; + if (defined($rpmrelease)) { - ($rpmversion = $patchversion) =~ s/-.*//; # convince abuild that we really want this release number xopen(my $fh, '>', "$dir/get_release_number.sh"); print $fh "#!/bin/sh\n"; @@ -48,7 +52,7 @@ if (defined($rpmrelease)) { close($fh); chmod(0755, "$dir/get_release_number.sh"); } else { - ($rpmversion, $rpmrelease) = (split(/-/, $patchversion, 2), ""); + $rpmrelease = ""; } $rpmrelease =~ s/[^.]$/$&./; $rpmrelease =~ s/-/./g; diff --git a/patches.arch.tar.bz2 b/patches.arch.tar.bz2 index 3c849aa6..161d632e 100644 --- a/patches.arch.tar.bz2 +++ b/patches.arch.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9ce7c67d76781fa003e0729067b12531f669bd34c3298cd57b595ba98b0737e0 -size 67833 +oid sha256:86caf712f46364ffd27cc60983c7b0385ae0fdede5d0dca84fcc1b8c9bca337e +size 67714 diff --git a/patches.drivers.tar.bz2 b/patches.drivers.tar.bz2 index 06ccfa2f..131befad 100644 --- a/patches.drivers.tar.bz2 +++ b/patches.drivers.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2445928b9ca117c8c7326d29c546e1f3b26aac30ea073a48a12c99316db9eb0e -size 13643 +oid sha256:3461f856907853729c79a72b049126dc4d728b4b229af45fd730b555e5f8c855 +size 9053 diff --git a/patches.fixes.tar.bz2 b/patches.fixes.tar.bz2 index 22aca35d..9a544faf 100644 --- a/patches.fixes.tar.bz2 +++ b/patches.fixes.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f30dccb646dd4b05c36eb086a5aba59ebcfc2d27016566cc31c482b5ff1ad5ae -size 38704 +oid sha256:5fd0af21f90d3335ddd523a5becf503a27800c3c0f96424a2ce17f3f34712102 +size 26880 diff --git a/patches.kernel.org.tar.bz2 b/patches.kernel.org.tar.bz2 index 2ac5c0a9..d24bdeb8 100644 --- a/patches.kernel.org.tar.bz2 +++ b/patches.kernel.org.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:407962217e392cd1ecde5c9ef44c38c875acffe9d7d852f1febf91d4fb3ff7d4 -size 113617 +oid sha256:9dde5510f9ad1aef9c1f1d3b2a8099a006fe55fdab5ebcf2c141624b999d057e +size 136 diff --git a/patches.rpmify.tar.bz2 b/patches.rpmify.tar.bz2 index 23f25de7..a3baa6e5 100644 --- a/patches.rpmify.tar.bz2 +++ b/patches.rpmify.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b2561dc8750958c1350dc3ed54e854d71dcd32d59a6ab617cba66ef201105c1d -size 3373 +oid sha256:b77f31327dd5dfafb5b9fae40600e78ec6e596606423decee89d64b7d52708d1 +size 3923 diff --git a/patches.suse.tar.bz2 b/patches.suse.tar.bz2 index 16c5a9d3..8973a083 100644 --- a/patches.suse.tar.bz2 +++ b/patches.suse.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cfe3ac43ed1ad0093eae31dc3da633e7b0d727cbc025772645dc207543b6bd0d -size 193238 +oid sha256:193b89c8fedf4593068d00f042afb7a1338df3593aaf3805c8e1617378f5f3f4 +size 126225 diff --git a/patches.xen.tar.bz2 b/patches.xen.tar.bz2 index ad886ef9..4b73dee6 100644 --- a/patches.xen.tar.bz2 +++ b/patches.xen.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e2c084524bd568ec9403d41dc91aa770d717385b70ac85f9784e29e5b1c3d27c -size 2028504 +oid sha256:b6116c742d33d832eb88589ca64f3cc3684459998f2b6de8858157c86b557867 +size 2035970 diff --git a/post.sh b/post.sh index fc0e3a4f..8850a76c 100644 --- a/post.sh +++ b/post.sh @@ -1,3 +1,6 @@ +# Flag to trigger /etc/init.d/purge-kernels on next reboot (fate#312018) +touch /boot/do_purge_kernels + # It must be possible to install different kernel.rpm packages in parallel. # But in this post install script, the /boot/vmlinux symlink is replaced. # On powerpc, the different kernels are for different board/firmware types diff --git a/postun.sh b/postun.sh index d1514e4d..e2dddc27 100644 --- a/postun.sh +++ b/postun.sh @@ -1,3 +1,8 @@ +# If a kernel package is removed before the next reboot, we assume that the +# multiversion variable in /etc/zypp/zypp.conf is not configured and we delete +# the flag again (fate#312018) +rm -f /boot/do_purge_kernels + wm2=/usr/lib/module-init-tools/weak-modules2 nvr=@SUBPACKAGE@-@RPM_VERSION_RELEASE@ diff --git a/series.conf b/series.conf index a35c4555..44aa1353 100644 --- a/series.conf +++ b/series.conf @@ -27,17 +27,14 @@ # DO NOT MODIFY THEM! # Send separate patches upstream if you find a problem... ######################################################## - patches.kernel.org/patch-2.6.39.1 - patches.kernel.org/patch-2.6.39.1-2 - patches.kernel.org/patch-2.6.39.2-3 ######################################################## # Build fixes that apply to the vanilla kernel too. # Patches in patches.rpmify are applied to both -vanilla # and patched flavors. ######################################################## - patches.rpmify/qla4xx-missing-readq-definition - patches.rpmify/kvm-fix-off-by-one-in-kvm_for_each_vcpu-iteration + patches.rpmify/apm-honor-config_apm_cpu_idle-n + patches.rpmify/nouveau-make-vga_switcheroo-code-depend-on-vga_switcheroo ######################################################## # kABI consistency patches @@ -56,7 +53,6 @@ patches.rpmify/rpm-kernel-config patches.rpmify/split-package - patches.rpmify/buildhost patches.rpmify/cloneconfig.diff ######################################################## @@ -66,6 +62,7 @@ patches.suse/supported-flag-enterprise patches.suse/genksyms-add-override-flag.diff patches.suse/kconfig-automate-kernel-desktop + patches.fixes/no-built-in-root_dev ######################################################## # Simple export additions/removals @@ -90,7 +87,6 @@ ######################################################## # ia64 ######################################################## - patches.fixes/ia64-sparse-fixes.diff ######################################################## # i386 @@ -175,7 +171,6 @@ patches.fixes/grab-swap-token-oops patches.fixes/remount-no-shrink-dcache - patches.suse/file-capabilities-disable-by-default.diff patches.suse/readahead-request-tunables.patch patches.fixes/fs-partitions-efi-c-corrupted-guid-partition-tables-can-cause-kernel-oops @@ -195,8 +190,6 @@ patches.suse/connector-read-mostly patches.suse/kbd-ignore-gfx.patch - patches.fixes/scsi-aic94xx-world-writable-sysfs-update_bios-file - ######################################################## # # ACPI patches @@ -301,14 +294,6 @@ # xfs ######################################################## - ######################################################## - # novfs - ######################################################## - patches.suse/novfs-client-module - patches.fixes/novfs-nwcapi.patch - patches.fixes/novfs-copy_user-fixes.diff - patches.fixes/novfs-minsize-fixes - ######################################################## # other filesystem stuff: richacls ######################################################## @@ -378,13 +363,12 @@ patches.suse/scsi-error-test-unit-ready-timeout patches.fixes/scsi-scan-blist-update - patches.fixes/proc-scsi-scsi-fix.diff - patches.fixes/scsi-ibmvscsi-show-config.patch # bnc#362850 patches.fixes/sd_liberal_28_sense_invalid.diff patches.fixes/scsi-ibmvscsi-module_alias.patch + patches.fixes/SCSI-fix-crash-in-scsi_dispatch_cmd.patch ######################################################## # DRM/Video @@ -398,6 +382,7 @@ # Network ######################################################## patches.fixes/tulip-quad-NIC-ifdown + patches.fixes/net-tulip-debug-off-by-default.patch patches.drivers/ehea-modinfo.patch ######################################################## @@ -438,18 +423,11 @@ patches.suse/elousb-2.6.35-api-changes patches.fixes/input-add-acer-aspire-5710-to-nomux.patch patches.drivers/input-Add-LED-support-to-Synaptics-device - patches.fixes/hid-add-noget-quirk-for-symboltec.patch - patches.fixes/revert-HID-magicmouse-ignore-ivalid-report-id.patch ########################################################## # Sound ########################################################## - patches.drivers/alsa-hda-0019-Increase-default-buffer-size - patches.drivers/alsa-hda-0022-HD-Audio-patch-for-Intel-Panther-Point - patches.drivers/alsa-hda-0023-Enable-sync_write-workaround-for-AMD - patches.drivers/alsa-hda-0024-Enable-snoop-bit-for-AMD-controllers - patches.drivers/alsa-hda-0026-Reorganize-controller-quriks-with-bit-flags - patches.drivers/alsa-hda-0027-fix-AZX_DCAPS_NO_TCSEL-quirk-check-in-drive + patches.drivers/alsa-hda-Add-Kconfig-for-the-default-buffer-size ######################################################## # Char / serial @@ -458,10 +436,9 @@ ######################################################## # Other driver fixes ######################################################## + patches.suse/staging-hv-vmbus-init-on-dmi-match.patch patches.fixes/parport-mutex - # Allow setting maximum number of raw devices - patches.suse/raw_device_max_minors_param.diff patches.suse/no-partition-scan ######################################################## @@ -471,7 +448,6 @@ ######################################################## # Suspend/Resume stuff ######################################################## - patches.fixes/PM-Print-a-warning-if-firmware-is-requested-when-tas.patch ######################################################## # device-mapper @@ -483,6 +459,7 @@ patches.suse/dm-raid45-api-update-remove-dm_put-after-dm_table_get_md patches.suse/dm-raid45-api-update-no-barriers patches.suse/dm-raid45-api-2.6.39 + patches.suse/dm-raid45-api-3.0 patches.fixes/dm-mpath-reattach-dh patches.suse/dm-mpath-leastpending-path-update +needs_update patches.suse/dm-mpath-accept-failed-paths @@ -529,6 +506,7 @@ ######################################################## patches.suse/crasher-26.diff patches.suse/stack-unwind + patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops patches.suse/no-frame-pointer-select patches.arch/x86_64-unwind-annotations @@ -581,12 +559,11 @@ patches.xen/add-console-use-vt # split out patches - patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch - patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-x86_64.patch + patches.xen/kexec-move-segment-code-i386.patch + patches.xen/kexec-move-segment-code-x86_64.patch patches.xen/ipv6-no-autoconf patches.xen/pci-guestdev patches.xen/pci-reserve - patches.xen/tmem # bulk stuff, new files for xen patches.xen/xen3-auto-xen-arch.diff @@ -637,12 +614,12 @@ patches.xen/xen3-patch-2.6.37 patches.xen/xen3-patch-2.6.38 patches.xen/xen3-patch-2.6.39 + patches.xen/xen3-patch-3.0-rc5 patches.xen/xen3-stack-unwind patches.xen/xen3-x86_64-unwind-annotations # bugfixes and enhancements patches.xen/xen-balloon-max-target - patches.xen/xen-blkback-bimodal-suse patches.xen/xen-blkif-protocol-fallback-hack patches.xen/xen-blkback-cdrom patches.xen/xen-blktap-modular @@ -660,6 +637,7 @@ patches.xen/xen-spinlock-poll-early patches.xen/xen-pcpu-hotplug patches.xen/xen-mem-hotplug + patches.xen/xen-frontswap patches.xen/xen-swiotlb-heuristics patches.xen/xen-configurable-guest-devices patches.xen/xen-netback-nr-irqs @@ -674,7 +652,6 @@ patches.xen/xen-kzalloc patches.xen/xen-unpriv-build patches.xen/xen-setup-gsi - patches.xen/xen-sfc-netfront-gcc46 patches.xen/xen-x86-panic-no-reboot patches.xen/xen-x86-dcr-fallback patches.xen/xen-x86-no-lapic @@ -683,6 +660,7 @@ patches.xen/xen-x86-exit-mmap patches.xen/xen-x86-per-cpu-vcpu-info patches.xen/xen-x86-msr-on-pcpu + patches.xen/xen-x86-EFI patches.xen/xen-x86_64-pgd-pin patches.xen/xen-x86_64-pgd-alloc-order patches.xen/xen-x86_64-dump-user-pgt diff --git a/source-timestamp b/source-timestamp index ed8c711c..a77d2bb7 100644 --- a/source-timestamp +++ b/source-timestamp @@ -1,3 +1,3 @@ -2011-07-09 11:18:50 +0200 -GIT Revision: 84b09a013664a6cf54c95f35cfa601b3f0cda94a +2011-07-24 08:15:52 +0200 +GIT Revision: 5a1af7d97e6fa84c81f994836546163d4007976c GIT Branch: stable diff --git a/supported.conf b/supported.conf index 05bfeb6c..c392b454 100644 --- a/supported.conf +++ b/supported.conf @@ -1615,6 +1615,7 @@ kernel/drivers/rtc/rtc-ds1553 kernel/drivers/rtc/rtc-ds1672 kernel/drivers/rtc/rtc-ds1742 + kernel/drivers/rtc/rtc-efi kernel/drivers/rtc/rtc-fm3130 kernel/drivers/rtc/rtc-isl1208 kernel/drivers/rtc/rtc-lib