GIT Revision: 5a1af7d97e6fa84c81f994836546163d4007976c

OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=68
This commit is contained in:
Michal Marek 2011-07-25 05:01:42 +00:00 committed by Git OBS Bridge
parent b542381dc5
commit 3c06df60c5
47 changed files with 6680 additions and 210 deletions

View File

@ -25,8 +25,8 @@ parse_srcversion()
local IFS=. local IFS=.
set -- ${SRCVERSION%%-*} set -- ${SRCVERSION%%-*}
VERSION=$1 VERSION=$1
PATCHLEVEL=$2 PATCHLEVEL=${2:-0}
SUBLEVEL=$3 SUBLEVEL=${3:-0}
EXTRAVERSION=${SRCVERSION#${SRCVERSION%%-*}} EXTRAVERSION=${SRCVERSION#${SRCVERSION%%-*}}
} }
parse_srcversion parse_srcversion
@ -73,4 +73,5 @@ eval "$(
' \ ' \
| sed -e 's,^+,,' -e 's, *= *\(.*\),="\1",' | sed -e 's,^+,,' -e 's, *= *\(.*\),="\1",'
)" )"
echo "$VERSION${PATCHLEVEL:+.$PATCHLEVEL}${SUBLEVEL:+.$SUBLEVEL}$EXTRAVERSION"
echo "$VERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION"

View File

@ -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 Fri Jan 21 02:35:17 CET 2011 - trenn@suse.de

View File

@ -1,5 +1,5 @@
# The version of the main tarball to use # 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 of the kernel-source package, either empty or "-rt"
VARIANT= VARIANT=
# buildservice projects to build the kernel against # buildservice projects to build the kernel against

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:5eab40cf2782ece46e8b7ca6c133d0888c87d3cc37ee5de5ea9d5e273048887c oid sha256:9f82f213ec8e5c313d6c8a45333110fbf589af4cb4a4c415d9fbbf6a0cb20128
size 225324 size 230513

View File

@ -284,22 +284,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
%_sourcedir/modversions --unpack . < $_ %_sourcedir/modversions --unpack . < $_
fi 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: # There are several ways how to define it:
# If you are using the build script: # If you are using the build script:
# build --jobs=N kernel-$flavor.spec # build --jobs=N kernel-$flavor.spec
# With plain rpmbuild: # With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores: # 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 # kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros: # 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" %if %CONFIG_KMSG_IDS == "y"
chmod +x ../linux-%srcversion/scripts/kmsg-doc 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 %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 %endif
@ -356,7 +356,7 @@ add_vmlinux()
fi fi
%endif %endif
if $compressed; then if $compressed; then
gzip -9 %buildroot/$vmlinux gzip -n -9 %buildroot/$vmlinux
chmod a-x %buildroot/$vmlinux.gz chmod a-x %buildroot/$vmlinux.gz
fi fi
} }
@ -470,7 +470,7 @@ if [ %CONFIG_MODULES = y ]; then
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor 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 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). # Table of types used in exported symbols (for modversion debugging).
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then 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 else
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
fi fi

View File

@ -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 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_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in 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. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 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) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - 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 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - 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. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - 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 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. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 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() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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). (bnc#697859).
- commit 303cc0e - 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 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). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - 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 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. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 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. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de

View File

@ -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. # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,8 +17,8 @@
# norootforbuild # norootforbuild
%define srcversion 2.6.39 %define srcversion 3.0
%define patchversion 2.6.39.3 %define patchversion 3.0.0
%define variant %{nil} %define variant %{nil}
%include %_sourcedir/kernel-spec-macros %include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-debug Name: kernel-debug
Summary: A Debug Version of the Kernel Summary: A Debug Version of the Kernel
Version: 2.6.39.3 Version: 3.0.0
%if %using_buildservice %if %using_buildservice
Release: <RELEASE> Release: <RELEASE>
%else %else
@ -361,22 +361,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
%_sourcedir/modversions --unpack . < $_ %_sourcedir/modversions --unpack . < $_
fi 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: # There are several ways how to define it:
# If you are using the build script: # If you are using the build script:
# build --jobs=N kernel-$flavor.spec # build --jobs=N kernel-$flavor.spec
# With plain rpmbuild: # With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores: # 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 # kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros: # 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" %if %CONFIG_KMSG_IDS == "y"
chmod +x ../linux-%srcversion/scripts/kmsg-doc 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 %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 %endif
@ -433,7 +433,7 @@ add_vmlinux()
fi fi
%endif %endif
if $compressed; then if $compressed; then
gzip -9 %buildroot/$vmlinux gzip -n -9 %buildroot/$vmlinux
chmod a-x %buildroot/$vmlinux.gz chmod a-x %buildroot/$vmlinux.gz
fi fi
} }
@ -547,7 +547,7 @@ if [ %CONFIG_MODULES = y ]; then
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor 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 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). # Table of types used in exported symbols (for modversion debugging).
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then 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 else
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
fi fi
@ -875,8 +875,41 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files %files devel-debuginfo -f vmlinux.debug.files
%changelog %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 * Sat Jul 09 2011 jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - 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. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b. aa3d6e2b140aac24a432f830d30047b1842aed0b.
@ -888,10 +921,29 @@ Debug information for package %name-devel
- Delete - Delete
patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 * 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)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
* Wed Jun 29 2011 jeffm@suse.com
- Update to 3.0-rc5.
- commit 9eb1a0f
* Wed Jun 29 2011 jslaby@suse.cz * 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -902,6 +954,9 @@ Debug information for package %name-devel
* Sun Jun 26 2011 jslaby@suse.cz * Sun Jun 26 2011 jslaby@suse.cz
- bridge: provide a cow_metrics method for fake_ops. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - commit 5bff18d
* Fri Jun 24 2011 jeffm@suse.com
- Enable TOMOYO (FATE#310292, bnc#668381).
- commit 997e757
* Fri Jun 24 2011 jslaby@suse.cz * Fri Jun 24 2011 jslaby@suse.cz
- Linux 2.6.39.2. - Linux 2.6.39.2.
- Delete - Delete
@ -909,10 +964,31 @@ Debug information for package %name-devel
- Delete - Delete
patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 * Fri Jun 17 2011 trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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 - x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859). (bnc#697859).
- stop_machine: reorganize stop_cpus() implementation - 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 - x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859). (bnc#697859).
- commit 303cc0e - 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 * Thu Jun 16 2011 tiwai@suse.de
- ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps
(bnc#700250,bnc#700251,bnc#700253). (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 - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs
(bnc#700250,bnc#700251,bnc#700253). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 * 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
* Wed Jun 15 2011 jack@suse.cz * 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.
- fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 * Fri Jun 10 2011 trenn@suse.de
- Update Suresh's patchset to version 3: - Update Suresh's patchset to version 3:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 * Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries: - Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.

View File

@ -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 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_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in 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. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 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) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - 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 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - 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. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - 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 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. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 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() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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). (bnc#697859).
- commit 303cc0e - 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 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). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - 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 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. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 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. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de

View File

@ -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. # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,8 +17,8 @@
# norootforbuild # norootforbuild
%define srcversion 2.6.39 %define srcversion 3.0
%define patchversion 2.6.39.3 %define patchversion 3.0.0
%define variant %{nil} %define variant %{nil}
%include %_sourcedir/kernel-spec-macros %include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-default Name: kernel-default
Summary: The Standard Kernel Summary: The Standard Kernel
Version: 2.6.39.3 Version: 3.0.0
%if %using_buildservice %if %using_buildservice
Release: <RELEASE> Release: <RELEASE>
%else %else
@ -376,22 +376,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
%_sourcedir/modversions --unpack . < $_ %_sourcedir/modversions --unpack . < $_
fi 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: # There are several ways how to define it:
# If you are using the build script: # If you are using the build script:
# build --jobs=N kernel-$flavor.spec # build --jobs=N kernel-$flavor.spec
# With plain rpmbuild: # With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores: # 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 # kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros: # 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" %if %CONFIG_KMSG_IDS == "y"
chmod +x ../linux-%srcversion/scripts/kmsg-doc 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 %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 %endif
@ -448,7 +448,7 @@ add_vmlinux()
fi fi
%endif %endif
if $compressed; then if $compressed; then
gzip -9 %buildroot/$vmlinux gzip -n -9 %buildroot/$vmlinux
chmod a-x %buildroot/$vmlinux.gz chmod a-x %buildroot/$vmlinux.gz
fi fi
} }
@ -562,7 +562,7 @@ if [ %CONFIG_MODULES = y ]; then
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor 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 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). # Table of types used in exported symbols (for modversion debugging).
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then 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 else
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
fi fi
@ -888,8 +888,41 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files %files devel-debuginfo -f vmlinux.debug.files
%changelog %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 * Sat Jul 09 2011 jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - 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. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b. aa3d6e2b140aac24a432f830d30047b1842aed0b.
@ -901,10 +934,29 @@ Debug information for package %name-devel
- Delete - Delete
patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 * 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)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
* Wed Jun 29 2011 jeffm@suse.com
- Update to 3.0-rc5.
- commit 9eb1a0f
* Wed Jun 29 2011 jslaby@suse.cz * 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -915,6 +967,9 @@ Debug information for package %name-devel
* Sun Jun 26 2011 jslaby@suse.cz * Sun Jun 26 2011 jslaby@suse.cz
- bridge: provide a cow_metrics method for fake_ops. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - commit 5bff18d
* Fri Jun 24 2011 jeffm@suse.com
- Enable TOMOYO (FATE#310292, bnc#668381).
- commit 997e757
* Fri Jun 24 2011 jslaby@suse.cz * Fri Jun 24 2011 jslaby@suse.cz
- Linux 2.6.39.2. - Linux 2.6.39.2.
- Delete - Delete
@ -922,10 +977,31 @@ Debug information for package %name-devel
- Delete - Delete
patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 * Fri Jun 17 2011 trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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 - x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859). (bnc#697859).
- stop_machine: reorganize stop_cpus() implementation - 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 - x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859). (bnc#697859).
- commit 303cc0e - 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 * Thu Jun 16 2011 tiwai@suse.de
- ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps
(bnc#700250,bnc#700251,bnc#700253). (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 - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs
(bnc#700250,bnc#700251,bnc#700253). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 * 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
* Wed Jun 15 2011 jack@suse.cz * 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.
- fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 * Fri Jun 10 2011 trenn@suse.de
- Update Suresh's patchset to version 3: - Update Suresh's patchset to version 3:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 * Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries: - Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.

View File

@ -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 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_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in 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. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 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) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - 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 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - 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. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - 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 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. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 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() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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). (bnc#697859).
- commit 303cc0e - 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 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). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - 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 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. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 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. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de

View File

@ -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. # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,8 +17,8 @@
# norootforbuild # norootforbuild
%define srcversion 2.6.39 %define srcversion 3.0
%define patchversion 2.6.39.3 %define patchversion 3.0.0
%define variant %{nil} %define variant %{nil}
%include %_sourcedir/kernel-spec-macros %include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-desktop Name: kernel-desktop
Summary: Kernel optimized for the desktop Summary: Kernel optimized for the desktop
Version: 2.6.39.3 Version: 3.0.0
%if %using_buildservice %if %using_buildservice
Release: <RELEASE> Release: <RELEASE>
%else %else
@ -370,22 +370,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
%_sourcedir/modversions --unpack . < $_ %_sourcedir/modversions --unpack . < $_
fi 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: # There are several ways how to define it:
# If you are using the build script: # If you are using the build script:
# build --jobs=N kernel-$flavor.spec # build --jobs=N kernel-$flavor.spec
# With plain rpmbuild: # With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores: # 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 # kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros: # 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" %if %CONFIG_KMSG_IDS == "y"
chmod +x ../linux-%srcversion/scripts/kmsg-doc 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 %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 %endif
@ -442,7 +442,7 @@ add_vmlinux()
fi fi
%endif %endif
if $compressed; then if $compressed; then
gzip -9 %buildroot/$vmlinux gzip -n -9 %buildroot/$vmlinux
chmod a-x %buildroot/$vmlinux.gz chmod a-x %buildroot/$vmlinux.gz
fi fi
} }
@ -556,7 +556,7 @@ if [ %CONFIG_MODULES = y ]; then
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor 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 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). # Table of types used in exported symbols (for modversion debugging).
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then 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 else
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
fi fi
@ -908,8 +908,41 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files %files devel-debuginfo -f vmlinux.debug.files
%changelog %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 * Sat Jul 09 2011 jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - 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. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b. aa3d6e2b140aac24a432f830d30047b1842aed0b.
@ -921,10 +954,29 @@ Debug information for package %name-devel
- Delete - Delete
patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 * 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)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
* Wed Jun 29 2011 jeffm@suse.com
- Update to 3.0-rc5.
- commit 9eb1a0f
* Wed Jun 29 2011 jslaby@suse.cz * 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -935,6 +987,9 @@ Debug information for package %name-devel
* Sun Jun 26 2011 jslaby@suse.cz * Sun Jun 26 2011 jslaby@suse.cz
- bridge: provide a cow_metrics method for fake_ops. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - commit 5bff18d
* Fri Jun 24 2011 jeffm@suse.com
- Enable TOMOYO (FATE#310292, bnc#668381).
- commit 997e757
* Fri Jun 24 2011 jslaby@suse.cz * Fri Jun 24 2011 jslaby@suse.cz
- Linux 2.6.39.2. - Linux 2.6.39.2.
- Delete - Delete
@ -942,10 +997,31 @@ Debug information for package %name-devel
- Delete - Delete
patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 * Fri Jun 17 2011 trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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 - x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859). (bnc#697859).
- stop_machine: reorganize stop_cpus() implementation - 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 - x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859). (bnc#697859).
- commit 303cc0e - 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 * Thu Jun 16 2011 tiwai@suse.de
- ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps
(bnc#700250,bnc#700251,bnc#700253). (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 - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs
(bnc#700250,bnc#700251,bnc#700253). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 * 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
* Wed Jun 15 2011 jack@suse.cz * 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.
- fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 * Fri Jun 10 2011 trenn@suse.de
- Update Suresh's patchset to version 3: - Update Suresh's patchset to version 3:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 * Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries: - Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.

View File

@ -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 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_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in 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. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 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) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - 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 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - 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. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - 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 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. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 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() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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). (bnc#697859).
- commit 303cc0e - 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 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). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - 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 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. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 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. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de

View File

@ -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. # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,14 +17,14 @@
# norootforbuild # norootforbuild
%define patchversion 2.6.39.3 %define patchversion 3.0.0
%define variant %{nil} %define variant %{nil}
%include %_sourcedir/kernel-spec-macros %include %_sourcedir/kernel-spec-macros
Name: kernel-docs Name: kernel-docs
Summary: Kernel Documentation Summary: Kernel Documentation
Version: 2.6.39.3 Version: 3.0.0
%if %using_buildservice %if %using_buildservice
Release: <RELEASE> Release: <RELEASE>
%else %else
@ -99,8 +99,41 @@ rm -rf $RPM_BUILD_ROOT
/usr/share/doc/kernel /usr/share/doc/kernel
%changelog %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 * Sat Jul 09 2011 jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - 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. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b. aa3d6e2b140aac24a432f830d30047b1842aed0b.
@ -112,10 +145,29 @@ rm -rf $RPM_BUILD_ROOT
- Delete - Delete
patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 * 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)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
* Wed Jun 29 2011 jeffm@suse.com
- Update to 3.0-rc5.
- commit 9eb1a0f
* Wed Jun 29 2011 jslaby@suse.cz * 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -126,6 +178,9 @@ rm -rf $RPM_BUILD_ROOT
* Sun Jun 26 2011 jslaby@suse.cz * Sun Jun 26 2011 jslaby@suse.cz
- bridge: provide a cow_metrics method for fake_ops. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - commit 5bff18d
* Fri Jun 24 2011 jeffm@suse.com
- Enable TOMOYO (FATE#310292, bnc#668381).
- commit 997e757
* Fri Jun 24 2011 jslaby@suse.cz * Fri Jun 24 2011 jslaby@suse.cz
- Linux 2.6.39.2. - Linux 2.6.39.2.
- Delete - Delete
@ -133,10 +188,31 @@ rm -rf $RPM_BUILD_ROOT
- Delete - Delete
patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 * Fri Jun 17 2011 trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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 - x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859). (bnc#697859).
- stop_machine: reorganize stop_cpus() implementation - stop_machine: reorganize stop_cpus() implementation
@ -144,6 +220,16 @@ rm -rf $RPM_BUILD_ROOT
- x86, mtrr: use __stop_machine() for doing MTRR rendezvous - x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859). (bnc#697859).
- commit 303cc0e - 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 * Thu Jun 16 2011 tiwai@suse.de
- ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps
(bnc#700250,bnc#700251,bnc#700253). (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 - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs
(bnc#700250,bnc#700251,bnc#700253). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 * 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
* Wed Jun 15 2011 jack@suse.cz * 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.
- fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 * Fri Jun 10 2011 trenn@suse.de
- Update Suresh's patchset to version 3: - Update Suresh's patchset to version 3:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 * Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries: - Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.

View File

@ -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 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_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in 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. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 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) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - 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 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - 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. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - 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 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. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 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() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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). (bnc#697859).
- commit 303cc0e - 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 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). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - 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 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. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 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. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de

View File

@ -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. # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,8 +17,8 @@
# norootforbuild # norootforbuild
%define srcversion 2.6.39 %define srcversion 3.0
%define patchversion 2.6.39.3 %define patchversion 3.0.0
%define variant %{nil} %define variant %{nil}
%include %_sourcedir/kernel-spec-macros %include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-ec2 Name: kernel-ec2
Summary: The Amazon EC2 Xen Kernel Summary: The Amazon EC2 Xen Kernel
Version: 2.6.39.3 Version: 3.0.0
%if %using_buildservice %if %using_buildservice
Release: <RELEASE> Release: <RELEASE>
%else %else
@ -360,22 +360,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
%_sourcedir/modversions --unpack . < $_ %_sourcedir/modversions --unpack . < $_
fi 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: # There are several ways how to define it:
# If you are using the build script: # If you are using the build script:
# build --jobs=N kernel-$flavor.spec # build --jobs=N kernel-$flavor.spec
# With plain rpmbuild: # With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores: # 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 # kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros: # 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" %if %CONFIG_KMSG_IDS == "y"
chmod +x ../linux-%srcversion/scripts/kmsg-doc 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 %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 %endif
@ -432,7 +432,7 @@ add_vmlinux()
fi fi
%endif %endif
if $compressed; then if $compressed; then
gzip -9 %buildroot/$vmlinux gzip -n -9 %buildroot/$vmlinux
chmod a-x %buildroot/$vmlinux.gz chmod a-x %buildroot/$vmlinux.gz
fi fi
} }
@ -546,7 +546,7 @@ if [ %CONFIG_MODULES = y ]; then
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor 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 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). # Table of types used in exported symbols (for modversion debugging).
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then 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 else
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
fi fi
@ -878,8 +878,41 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files %files devel-debuginfo -f vmlinux.debug.files
%changelog %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 * Sat Jul 09 2011 jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - 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. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b. aa3d6e2b140aac24a432f830d30047b1842aed0b.
@ -891,10 +924,29 @@ Debug information for package %name-devel
- Delete - Delete
patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 * 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)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
* Wed Jun 29 2011 jeffm@suse.com
- Update to 3.0-rc5.
- commit 9eb1a0f
* Wed Jun 29 2011 jslaby@suse.cz * 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -905,6 +957,9 @@ Debug information for package %name-devel
* Sun Jun 26 2011 jslaby@suse.cz * Sun Jun 26 2011 jslaby@suse.cz
- bridge: provide a cow_metrics method for fake_ops. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - commit 5bff18d
* Fri Jun 24 2011 jeffm@suse.com
- Enable TOMOYO (FATE#310292, bnc#668381).
- commit 997e757
* Fri Jun 24 2011 jslaby@suse.cz * Fri Jun 24 2011 jslaby@suse.cz
- Linux 2.6.39.2. - Linux 2.6.39.2.
- Delete - Delete
@ -912,10 +967,31 @@ Debug information for package %name-devel
- Delete - Delete
patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 * Fri Jun 17 2011 trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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 - x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859). (bnc#697859).
- stop_machine: reorganize stop_cpus() implementation - 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 - x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859). (bnc#697859).
- commit 303cc0e - 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 * Thu Jun 16 2011 tiwai@suse.de
- ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps
(bnc#700250,bnc#700251,bnc#700253). (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 - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs
(bnc#700250,bnc#700251,bnc#700253). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 * 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
* Wed Jun 15 2011 jack@suse.cz * 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.
- fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 * Fri Jun 10 2011 trenn@suse.de
- Update Suresh's patchset to version 3: - Update Suresh's patchset to version 3:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 * Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries: - Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.

View File

@ -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 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_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in 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. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 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) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - 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 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - 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. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - 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 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. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 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() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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). (bnc#697859).
- commit 303cc0e - 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 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). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - 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 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. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 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. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de

View File

@ -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. # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,8 +17,8 @@
# norootforbuild # norootforbuild
%define srcversion 2.6.39 %define srcversion 3.0
%define patchversion 2.6.39.3 %define patchversion 3.0.0
%define variant %{nil} %define variant %{nil}
%include %_sourcedir/kernel-spec-macros %include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-pae Name: kernel-pae
Summary: Kernel with PAE Support Summary: Kernel with PAE Support
Version: 2.6.39.3 Version: 3.0.0
%if %using_buildservice %if %using_buildservice
Release: <RELEASE> Release: <RELEASE>
%else %else
@ -367,22 +367,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
%_sourcedir/modversions --unpack . < $_ %_sourcedir/modversions --unpack . < $_
fi 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: # There are several ways how to define it:
# If you are using the build script: # If you are using the build script:
# build --jobs=N kernel-$flavor.spec # build --jobs=N kernel-$flavor.spec
# With plain rpmbuild: # With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores: # 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 # kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros: # 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" %if %CONFIG_KMSG_IDS == "y"
chmod +x ../linux-%srcversion/scripts/kmsg-doc 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 %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 %endif
@ -439,7 +439,7 @@ add_vmlinux()
fi fi
%endif %endif
if $compressed; then if $compressed; then
gzip -9 %buildroot/$vmlinux gzip -n -9 %buildroot/$vmlinux
chmod a-x %buildroot/$vmlinux.gz chmod a-x %buildroot/$vmlinux.gz
fi fi
} }
@ -553,7 +553,7 @@ if [ %CONFIG_MODULES = y ]; then
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor 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 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). # Table of types used in exported symbols (for modversion debugging).
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then 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 else
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
fi fi
@ -893,8 +893,41 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files %files devel-debuginfo -f vmlinux.debug.files
%changelog %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 * Sat Jul 09 2011 jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - 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. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b. aa3d6e2b140aac24a432f830d30047b1842aed0b.
@ -906,10 +939,29 @@ Debug information for package %name-devel
- Delete - Delete
patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 * 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)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
* Wed Jun 29 2011 jeffm@suse.com
- Update to 3.0-rc5.
- commit 9eb1a0f
* Wed Jun 29 2011 jslaby@suse.cz * 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -920,6 +972,9 @@ Debug information for package %name-devel
* Sun Jun 26 2011 jslaby@suse.cz * Sun Jun 26 2011 jslaby@suse.cz
- bridge: provide a cow_metrics method for fake_ops. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - commit 5bff18d
* Fri Jun 24 2011 jeffm@suse.com
- Enable TOMOYO (FATE#310292, bnc#668381).
- commit 997e757
* Fri Jun 24 2011 jslaby@suse.cz * Fri Jun 24 2011 jslaby@suse.cz
- Linux 2.6.39.2. - Linux 2.6.39.2.
- Delete - Delete
@ -927,10 +982,31 @@ Debug information for package %name-devel
- Delete - Delete
patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 * Fri Jun 17 2011 trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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 - x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859). (bnc#697859).
- stop_machine: reorganize stop_cpus() implementation - 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 - x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859). (bnc#697859).
- commit 303cc0e - 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 * Thu Jun 16 2011 tiwai@suse.de
- ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps
(bnc#700250,bnc#700251,bnc#700253). (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 - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs
(bnc#700250,bnc#700251,bnc#700253). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 * 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
* Wed Jun 15 2011 jack@suse.cz * 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.
- fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 * Fri Jun 10 2011 trenn@suse.de
- Update Suresh's patchset to version 3: - Update Suresh's patchset to version 3:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 * Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries: - Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.

View File

@ -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 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_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in 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. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 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) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - 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 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - 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. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - 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 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. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 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() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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). (bnc#697859).
- commit 303cc0e - 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 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). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - 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 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. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 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. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de

View File

@ -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. # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,8 +17,8 @@
# norootforbuild # norootforbuild
%define srcversion 2.6.39 %define srcversion 3.0
%define patchversion 2.6.39.3 %define patchversion 3.0.0
%define variant %{nil} %define variant %{nil}
%include %_sourcedir/kernel-spec-macros %include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-ppc64 Name: kernel-ppc64
Summary: Kernel for ppc64 Systems Summary: Kernel for ppc64 Systems
Version: 2.6.39.3 Version: 3.0.0
%if %using_buildservice %if %using_buildservice
Release: <RELEASE> Release: <RELEASE>
%else %else
@ -371,22 +371,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
%_sourcedir/modversions --unpack . < $_ %_sourcedir/modversions --unpack . < $_
fi 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: # There are several ways how to define it:
# If you are using the build script: # If you are using the build script:
# build --jobs=N kernel-$flavor.spec # build --jobs=N kernel-$flavor.spec
# With plain rpmbuild: # With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores: # 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 # kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros: # 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" %if %CONFIG_KMSG_IDS == "y"
chmod +x ../linux-%srcversion/scripts/kmsg-doc 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 %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 %endif
@ -443,7 +443,7 @@ add_vmlinux()
fi fi
%endif %endif
if $compressed; then if $compressed; then
gzip -9 %buildroot/$vmlinux gzip -n -9 %buildroot/$vmlinux
chmod a-x %buildroot/$vmlinux.gz chmod a-x %buildroot/$vmlinux.gz
fi fi
} }
@ -557,7 +557,7 @@ if [ %CONFIG_MODULES = y ]; then
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor 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 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). # Table of types used in exported symbols (for modversion debugging).
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then 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 else
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
fi fi
@ -897,8 +897,41 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files %files devel-debuginfo -f vmlinux.debug.files
%changelog %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 * Sat Jul 09 2011 jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - 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. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b. aa3d6e2b140aac24a432f830d30047b1842aed0b.
@ -910,10 +943,29 @@ Debug information for package %name-devel
- Delete - Delete
patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 * 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)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
* Wed Jun 29 2011 jeffm@suse.com
- Update to 3.0-rc5.
- commit 9eb1a0f
* Wed Jun 29 2011 jslaby@suse.cz * 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -924,6 +976,9 @@ Debug information for package %name-devel
* Sun Jun 26 2011 jslaby@suse.cz * Sun Jun 26 2011 jslaby@suse.cz
- bridge: provide a cow_metrics method for fake_ops. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - commit 5bff18d
* Fri Jun 24 2011 jeffm@suse.com
- Enable TOMOYO (FATE#310292, bnc#668381).
- commit 997e757
* Fri Jun 24 2011 jslaby@suse.cz * Fri Jun 24 2011 jslaby@suse.cz
- Linux 2.6.39.2. - Linux 2.6.39.2.
- Delete - Delete
@ -931,10 +986,31 @@ Debug information for package %name-devel
- Delete - Delete
patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 * Fri Jun 17 2011 trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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 - x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859). (bnc#697859).
- stop_machine: reorganize stop_cpus() implementation - 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 - x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859). (bnc#697859).
- commit 303cc0e - 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 * Thu Jun 16 2011 tiwai@suse.de
- ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps
(bnc#700250,bnc#700251,bnc#700253). (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 - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs
(bnc#700250,bnc#700251,bnc#700253). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 * 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
* Wed Jun 15 2011 jack@suse.cz * 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.
- fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 * Fri Jun 10 2011 trenn@suse.de
- Update Suresh's patchset to version 3: - Update Suresh's patchset to version 3:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 * Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries: - Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.

View File

@ -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 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_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in 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. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 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) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - 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 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - 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. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - 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 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. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 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() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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). (bnc#697859).
- commit 303cc0e - 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 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). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - 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 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. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 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. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de

View File

@ -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. # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,8 +17,8 @@
# norootforbuild # norootforbuild
%define srcversion 2.6.39 %define srcversion 3.0
%define patchversion 2.6.39.3 %define patchversion 3.0.0
%define variant %{nil} %define variant %{nil}
%include %_sourcedir/kernel-spec-macros %include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-ps3 Name: kernel-ps3
Summary: kernel for ps3 bootloader Summary: kernel for ps3 bootloader
Version: 2.6.39.3 Version: 3.0.0
%if %using_buildservice %if %using_buildservice
Release: <RELEASE> Release: <RELEASE>
%else %else
@ -360,22 +360,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
%_sourcedir/modversions --unpack . < $_ %_sourcedir/modversions --unpack . < $_
fi 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: # There are several ways how to define it:
# If you are using the build script: # If you are using the build script:
# build --jobs=N kernel-$flavor.spec # build --jobs=N kernel-$flavor.spec
# With plain rpmbuild: # With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores: # 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 # kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros: # 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" %if %CONFIG_KMSG_IDS == "y"
chmod +x ../linux-%srcversion/scripts/kmsg-doc 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 %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 %endif
@ -432,7 +432,7 @@ add_vmlinux()
fi fi
%endif %endif
if $compressed; then if $compressed; then
gzip -9 %buildroot/$vmlinux gzip -n -9 %buildroot/$vmlinux
chmod a-x %buildroot/$vmlinux.gz chmod a-x %buildroot/$vmlinux.gz
fi fi
} }
@ -546,7 +546,7 @@ if [ %CONFIG_MODULES = y ]; then
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor 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 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). # Table of types used in exported symbols (for modversion debugging).
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then 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 else
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
fi fi
@ -878,8 +878,41 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files %files devel-debuginfo -f vmlinux.debug.files
%changelog %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 * Sat Jul 09 2011 jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - 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. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b. aa3d6e2b140aac24a432f830d30047b1842aed0b.
@ -891,10 +924,29 @@ Debug information for package %name-devel
- Delete - Delete
patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 * 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)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
* Wed Jun 29 2011 jeffm@suse.com
- Update to 3.0-rc5.
- commit 9eb1a0f
* Wed Jun 29 2011 jslaby@suse.cz * 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -905,6 +957,9 @@ Debug information for package %name-devel
* Sun Jun 26 2011 jslaby@suse.cz * Sun Jun 26 2011 jslaby@suse.cz
- bridge: provide a cow_metrics method for fake_ops. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - commit 5bff18d
* Fri Jun 24 2011 jeffm@suse.com
- Enable TOMOYO (FATE#310292, bnc#668381).
- commit 997e757
* Fri Jun 24 2011 jslaby@suse.cz * Fri Jun 24 2011 jslaby@suse.cz
- Linux 2.6.39.2. - Linux 2.6.39.2.
- Delete - Delete
@ -912,10 +967,31 @@ Debug information for package %name-devel
- Delete - Delete
patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 * Fri Jun 17 2011 trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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 - x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859). (bnc#697859).
- stop_machine: reorganize stop_cpus() implementation - 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 - x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859). (bnc#697859).
- commit 303cc0e - 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 * Thu Jun 16 2011 tiwai@suse.de
- ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps
(bnc#700250,bnc#700251,bnc#700253). (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 - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs
(bnc#700250,bnc#700251,bnc#700253). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 * 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
* Wed Jun 15 2011 jack@suse.cz * 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.
- fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 * Fri Jun 10 2011 trenn@suse.de
- Update Suresh's patchset to version 3: - Update Suresh's patchset to version 3:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 * Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries: - Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.

View File

@ -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 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_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in 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. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 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) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - 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 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - 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. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - 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 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. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 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() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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). (bnc#697859).
- commit 303cc0e - 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 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). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - 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 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. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 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. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de

View File

@ -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. # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,8 +17,8 @@
# norootforbuild # norootforbuild
%define srcversion 2.6.39 %define srcversion 3.0
%define patchversion 2.6.39.3 %define patchversion 3.0.0
%define variant %{nil} %define variant %{nil}
%include %_sourcedir/kernel-spec-macros %include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-s390 Name: kernel-s390
Summary: The Standard Kernel Summary: The Standard Kernel
Version: 2.6.39.3 Version: 3.0.0
%if %using_buildservice %if %using_buildservice
Release: <RELEASE> Release: <RELEASE>
%else %else
@ -360,22 +360,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
%_sourcedir/modversions --unpack . < $_ %_sourcedir/modversions --unpack . < $_
fi 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: # There are several ways how to define it:
# If you are using the build script: # If you are using the build script:
# build --jobs=N kernel-$flavor.spec # build --jobs=N kernel-$flavor.spec
# With plain rpmbuild: # With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores: # 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 # kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros: # 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" %if %CONFIG_KMSG_IDS == "y"
chmod +x ../linux-%srcversion/scripts/kmsg-doc 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 %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 %endif
@ -432,7 +432,7 @@ add_vmlinux()
fi fi
%endif %endif
if $compressed; then if $compressed; then
gzip -9 %buildroot/$vmlinux gzip -n -9 %buildroot/$vmlinux
chmod a-x %buildroot/$vmlinux.gz chmod a-x %buildroot/$vmlinux.gz
fi fi
} }
@ -546,7 +546,7 @@ if [ %CONFIG_MODULES = y ]; then
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor 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 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). # Table of types used in exported symbols (for modversion debugging).
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then 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 else
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
fi fi
@ -872,8 +872,41 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files %files devel-debuginfo -f vmlinux.debug.files
%changelog %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 * Sat Jul 09 2011 jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - 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. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b. aa3d6e2b140aac24a432f830d30047b1842aed0b.
@ -885,10 +918,29 @@ Debug information for package %name-devel
- Delete - Delete
patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 * 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)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
* Wed Jun 29 2011 jeffm@suse.com
- Update to 3.0-rc5.
- commit 9eb1a0f
* Wed Jun 29 2011 jslaby@suse.cz * 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -899,6 +951,9 @@ Debug information for package %name-devel
* Sun Jun 26 2011 jslaby@suse.cz * Sun Jun 26 2011 jslaby@suse.cz
- bridge: provide a cow_metrics method for fake_ops. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - commit 5bff18d
* Fri Jun 24 2011 jeffm@suse.com
- Enable TOMOYO (FATE#310292, bnc#668381).
- commit 997e757
* Fri Jun 24 2011 jslaby@suse.cz * Fri Jun 24 2011 jslaby@suse.cz
- Linux 2.6.39.2. - Linux 2.6.39.2.
- Delete - Delete
@ -906,10 +961,31 @@ Debug information for package %name-devel
- Delete - Delete
patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 * Fri Jun 17 2011 trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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 - x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859). (bnc#697859).
- stop_machine: reorganize stop_cpus() implementation - 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 - x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859). (bnc#697859).
- commit 303cc0e - 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 * Thu Jun 16 2011 tiwai@suse.de
- ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps
(bnc#700250,bnc#700251,bnc#700253). (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 - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs
(bnc#700250,bnc#700251,bnc#700253). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 * 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
* Wed Jun 15 2011 jack@suse.cz * 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.
- fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 * Fri Jun 10 2011 trenn@suse.de
- Update Suresh's patchset to version 3: - Update Suresh's patchset to version 3:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 * Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries: - Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.

View File

@ -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 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_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in 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. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 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) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - 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 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - 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. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - 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 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. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 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() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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). (bnc#697859).
- commit 303cc0e - 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 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). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - 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 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. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 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. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de

View File

@ -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. # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -18,8 +18,8 @@
# norootforbuild # norootforbuild
# icecream 0 # icecream 0
%define srcversion 2.6.39 %define srcversion 3.0
%define patchversion 2.6.39.3 %define patchversion 3.0.0
%define variant %{nil} %define variant %{nil}
%define vanilla_only 0 %define vanilla_only 0
@ -29,7 +29,7 @@
Name: kernel-source Name: kernel-source
Summary: The Linux Kernel Sources Summary: The Linux Kernel Sources
Version: 2.6.39.3 Version: 3.0.0
%if %using_buildservice %if %using_buildservice
Release: <RELEASE> Release: <RELEASE>
%else %else
@ -255,8 +255,41 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
%endif %endif
%changelog %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 * Sat Jul 09 2011 jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - 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. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b. aa3d6e2b140aac24a432f830d30047b1842aed0b.
@ -268,10 +301,29 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
- Delete - Delete
patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 * 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)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
* Wed Jun 29 2011 jeffm@suse.com
- Update to 3.0-rc5.
- commit 9eb1a0f
* Wed Jun 29 2011 jslaby@suse.cz * 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -282,6 +334,9 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
* Sun Jun 26 2011 jslaby@suse.cz * Sun Jun 26 2011 jslaby@suse.cz
- bridge: provide a cow_metrics method for fake_ops. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - commit 5bff18d
* Fri Jun 24 2011 jeffm@suse.com
- Enable TOMOYO (FATE#310292, bnc#668381).
- commit 997e757
* Fri Jun 24 2011 jslaby@suse.cz * Fri Jun 24 2011 jslaby@suse.cz
- Linux 2.6.39.2. - Linux 2.6.39.2.
- Delete - Delete
@ -289,10 +344,31 @@ find %buildroot/usr/src/linux* ! -type l | xargs touch -d "$ts"
- Delete - Delete
patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 * Fri Jun 17 2011 trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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 - x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859). (bnc#697859).
- stop_machine: reorganize stop_cpus() implementation - 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 - x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859). (bnc#697859).
- commit 303cc0e - 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 * Thu Jun 16 2011 tiwai@suse.de
- ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps
(bnc#700250,bnc#700251,bnc#700253). (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 - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs
(bnc#700250,bnc#700251,bnc#700253). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 * 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
* Wed Jun 15 2011 jack@suse.cz * 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.
- fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 * Fri Jun 10 2011 trenn@suse.de
- Update Suresh's patchset to version 3: - Update Suresh's patchset to version 3:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 * Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries: - Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.

View File

@ -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 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_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in 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. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 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) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - 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 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - 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. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - 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 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. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 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() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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). (bnc#697859).
- commit 303cc0e - 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 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). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - 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 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. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 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. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de

View File

@ -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. # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -23,7 +23,7 @@
Name: kernel-syms Name: kernel-syms
Summary: Kernel Symbol Versions (modversions) Summary: Kernel Symbol Versions (modversions)
Version: 2.6.39.3 Version: 3.0.0
%if %using_buildservice %if %using_buildservice
Release: <RELEASE> Release: <RELEASE>
%else %else
@ -81,8 +81,41 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
%_docdir/%name/README.SUSE %_docdir/%name/README.SUSE
%changelog %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 * Sat Jul 09 2011 jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - 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. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b. aa3d6e2b140aac24a432f830d30047b1842aed0b.
@ -94,10 +127,29 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
- Delete - Delete
patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 * 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)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
* Wed Jun 29 2011 jeffm@suse.com
- Update to 3.0-rc5.
- commit 9eb1a0f
* Wed Jun 29 2011 jslaby@suse.cz * 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -108,6 +160,9 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
* Sun Jun 26 2011 jslaby@suse.cz * Sun Jun 26 2011 jslaby@suse.cz
- bridge: provide a cow_metrics method for fake_ops. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - commit 5bff18d
* Fri Jun 24 2011 jeffm@suse.com
- Enable TOMOYO (FATE#310292, bnc#668381).
- commit 997e757
* Fri Jun 24 2011 jslaby@suse.cz * Fri Jun 24 2011 jslaby@suse.cz
- Linux 2.6.39.2. - Linux 2.6.39.2.
- Delete - Delete
@ -115,10 +170,31 @@ install -m 644 -D %{SOURCE0} %buildroot/%_docdir/%name/README.SUSE
- Delete - Delete
patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 * Fri Jun 17 2011 trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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 - x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859). (bnc#697859).
- stop_machine: reorganize stop_cpus() implementation - 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 - x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859). (bnc#697859).
- commit 303cc0e - 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 * Thu Jun 16 2011 tiwai@suse.de
- ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps
(bnc#700250,bnc#700251,bnc#700253). (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 - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs
(bnc#700250,bnc#700251,bnc#700253). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 * 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
* Wed Jun 15 2011 jack@suse.cz * 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.
- fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 * Fri Jun 10 2011 trenn@suse.de
- Update Suresh's patchset to version 3: - Update Suresh's patchset to version 3:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 * Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries: - Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.

View File

@ -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 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_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in 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. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 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) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - 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 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - 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. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - 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 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. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 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() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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). (bnc#697859).
- commit 303cc0e - 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 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). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - 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 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. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 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. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de

View File

@ -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. # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,8 +17,8 @@
# norootforbuild # norootforbuild
%define srcversion 2.6.39 %define srcversion 3.0
%define patchversion 2.6.39.3 %define patchversion 3.0.0
%define variant %{nil} %define variant %{nil}
%include %_sourcedir/kernel-spec-macros %include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-trace Name: kernel-trace
Summary: The Standard Kernel with Tracing Features Summary: The Standard Kernel with Tracing Features
Version: 2.6.39.3 Version: 3.0.0
%if %using_buildservice %if %using_buildservice
Release: <RELEASE> Release: <RELEASE>
%else %else
@ -368,22 +368,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
%_sourcedir/modversions --unpack . < $_ %_sourcedir/modversions --unpack . < $_
fi 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: # There are several ways how to define it:
# If you are using the build script: # If you are using the build script:
# build --jobs=N kernel-$flavor.spec # build --jobs=N kernel-$flavor.spec
# With plain rpmbuild: # With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores: # 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 # kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros: # 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" %if %CONFIG_KMSG_IDS == "y"
chmod +x ../linux-%srcversion/scripts/kmsg-doc 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 %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 %endif
@ -440,7 +440,7 @@ add_vmlinux()
fi fi
%endif %endif
if $compressed; then if $compressed; then
gzip -9 %buildroot/$vmlinux gzip -n -9 %buildroot/$vmlinux
chmod a-x %buildroot/$vmlinux.gz chmod a-x %buildroot/$vmlinux.gz
fi fi
} }
@ -554,7 +554,7 @@ if [ %CONFIG_MODULES = y ]; then
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor 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 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). # Table of types used in exported symbols (for modversion debugging).
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then 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 else
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
fi fi
@ -880,8 +880,41 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files %files devel-debuginfo -f vmlinux.debug.files
%changelog %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 * Sat Jul 09 2011 jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - 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. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b. aa3d6e2b140aac24a432f830d30047b1842aed0b.
@ -893,10 +926,29 @@ Debug information for package %name-devel
- Delete - Delete
patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 * 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)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
* Wed Jun 29 2011 jeffm@suse.com
- Update to 3.0-rc5.
- commit 9eb1a0f
* Wed Jun 29 2011 jslaby@suse.cz * 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -907,6 +959,9 @@ Debug information for package %name-devel
* Sun Jun 26 2011 jslaby@suse.cz * Sun Jun 26 2011 jslaby@suse.cz
- bridge: provide a cow_metrics method for fake_ops. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - commit 5bff18d
* Fri Jun 24 2011 jeffm@suse.com
- Enable TOMOYO (FATE#310292, bnc#668381).
- commit 997e757
* Fri Jun 24 2011 jslaby@suse.cz * Fri Jun 24 2011 jslaby@suse.cz
- Linux 2.6.39.2. - Linux 2.6.39.2.
- Delete - Delete
@ -914,10 +969,31 @@ Debug information for package %name-devel
- Delete - Delete
patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 * Fri Jun 17 2011 trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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 - x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859). (bnc#697859).
- stop_machine: reorganize stop_cpus() implementation - 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 - x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859). (bnc#697859).
- commit 303cc0e - 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 * Thu Jun 16 2011 tiwai@suse.de
- ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps
(bnc#700250,bnc#700251,bnc#700253). (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 - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs
(bnc#700250,bnc#700251,bnc#700253). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 * 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
* Wed Jun 15 2011 jack@suse.cz * 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.
- fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 * Fri Jun 10 2011 trenn@suse.de
- Update Suresh's patchset to version 3: - Update Suresh's patchset to version 3:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 * Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries: - Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.

View File

@ -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 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_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in 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. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 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) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - 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 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - 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. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - 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 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. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 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() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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). (bnc#697859).
- commit 303cc0e - 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 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). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - 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 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. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 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. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de

View File

@ -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. # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,8 +17,8 @@
# norootforbuild # norootforbuild
%define srcversion 2.6.39 %define srcversion 3.0
%define patchversion 2.6.39.3 %define patchversion 3.0.0
%define variant %{nil} %define variant %{nil}
%include %_sourcedir/kernel-spec-macros %include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-vanilla Name: kernel-vanilla
Summary: The Standard Kernel - without any SUSE patches Summary: The Standard Kernel - without any SUSE patches
Version: 2.6.39.3 Version: 3.0.0
%if %using_buildservice %if %using_buildservice
Release: <RELEASE> Release: <RELEASE>
%else %else
@ -364,22 +364,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
%_sourcedir/modversions --unpack . < $_ %_sourcedir/modversions --unpack . < $_
fi 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: # There are several ways how to define it:
# If you are using the build script: # If you are using the build script:
# build --jobs=N kernel-$flavor.spec # build --jobs=N kernel-$flavor.spec
# With plain rpmbuild: # With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores: # 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 # kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros: # 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" %if %CONFIG_KMSG_IDS == "y"
chmod +x ../linux-%srcversion/scripts/kmsg-doc 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 %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 %endif
@ -436,7 +436,7 @@ add_vmlinux()
fi fi
%endif %endif
if $compressed; then if $compressed; then
gzip -9 %buildroot/$vmlinux gzip -n -9 %buildroot/$vmlinux
chmod a-x %buildroot/$vmlinux.gz chmod a-x %buildroot/$vmlinux.gz
fi fi
} }
@ -550,7 +550,7 @@ if [ %CONFIG_MODULES = y ]; then
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor 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 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). # Table of types used in exported symbols (for modversion debugging).
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then 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 else
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
fi fi
@ -876,8 +876,41 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files %files devel-debuginfo -f vmlinux.debug.files
%changelog %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 * Sat Jul 09 2011 jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - 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. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b. aa3d6e2b140aac24a432f830d30047b1842aed0b.
@ -889,10 +922,29 @@ Debug information for package %name-devel
- Delete - Delete
patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 * 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)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
* Wed Jun 29 2011 jeffm@suse.com
- Update to 3.0-rc5.
- commit 9eb1a0f
* Wed Jun 29 2011 jslaby@suse.cz * 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -903,6 +955,9 @@ Debug information for package %name-devel
* Sun Jun 26 2011 jslaby@suse.cz * Sun Jun 26 2011 jslaby@suse.cz
- bridge: provide a cow_metrics method for fake_ops. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - commit 5bff18d
* Fri Jun 24 2011 jeffm@suse.com
- Enable TOMOYO (FATE#310292, bnc#668381).
- commit 997e757
* Fri Jun 24 2011 jslaby@suse.cz * Fri Jun 24 2011 jslaby@suse.cz
- Linux 2.6.39.2. - Linux 2.6.39.2.
- Delete - Delete
@ -910,10 +965,31 @@ Debug information for package %name-devel
- Delete - Delete
patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 * Fri Jun 17 2011 trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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 - x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859). (bnc#697859).
- stop_machine: reorganize stop_cpus() implementation - 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 - x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859). (bnc#697859).
- commit 303cc0e - 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 * Thu Jun 16 2011 tiwai@suse.de
- ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps
(bnc#700250,bnc#700251,bnc#700253). (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 - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs
(bnc#700250,bnc#700251,bnc#700253). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 * 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
* Wed Jun 15 2011 jack@suse.cz * 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.
- fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 * Fri Jun 10 2011 trenn@suse.de
- Update Suresh's patchset to version 3: - Update Suresh's patchset to version 3:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 * Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries: - Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.

View File

@ -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 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_stop_machine_1_2.patch.
- Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in 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. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 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) - Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - 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 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - 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. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - 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 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. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 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() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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). (bnc#697859).
- commit 303cc0e - 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 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). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - 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 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. - fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 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. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 Wed Jun 8 10:40:09 CEST 2011 - trenn@suse.de

View File

@ -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. # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,8 +17,8 @@
# norootforbuild # norootforbuild
%define srcversion 2.6.39 %define srcversion 3.0
%define patchversion 2.6.39.3 %define patchversion 3.0.0
%define variant %{nil} %define variant %{nil}
%include %_sourcedir/kernel-spec-macros %include %_sourcedir/kernel-spec-macros
@ -55,7 +55,7 @@
Name: kernel-xen Name: kernel-xen
Summary: The Xen Kernel Summary: The Xen Kernel
Version: 2.6.39.3 Version: 3.0.0
%if %using_buildservice %if %using_buildservice
Release: <RELEASE> Release: <RELEASE>
%else %else
@ -360,22 +360,22 @@ if test -e %my_builddir/kabi/%cpu_arch/symtypes-%build_flavor; then
%_sourcedir/modversions --unpack . < $_ %_sourcedir/modversions --unpack . < $_
fi 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: # There are several ways how to define it:
# If you are using the build script: # If you are using the build script:
# build --jobs=N kernel-$flavor.spec # build --jobs=N kernel-$flavor.spec
# With plain rpmbuild: # With plain rpmbuild:
# rpmbuild -ba --define 'jobs N' kernel-$flavor.spec # rpmbuild -ba --define 'jobs N' kernel-$flavor.spec
# To spawn as many jobs as there are cpu cores: # 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 # kernel-$flavor.spec
# You can also set this permanently in ~/.rpmmacros: # 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" %if %CONFIG_KMSG_IDS == "y"
chmod +x ../linux-%srcversion/scripts/kmsg-doc 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 %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 %endif
@ -432,7 +432,7 @@ add_vmlinux()
fi fi
%endif %endif
if $compressed; then if $compressed; then
gzip -9 %buildroot/$vmlinux gzip -n -9 %buildroot/$vmlinux
chmod a-x %buildroot/$vmlinux.gz chmod a-x %buildroot/$vmlinux.gz
fi fi
} }
@ -546,7 +546,7 @@ if [ %CONFIG_MODULES = y ]; then
mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch
ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor 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 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). # Table of types used in exported symbols (for modversion debugging).
%_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor
if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then 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 else
rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor
fi fi
@ -878,8 +878,41 @@ Debug information for package %name-devel
%files devel-debuginfo -f vmlinux.debug.files %files devel-debuginfo -f vmlinux.debug.files
%changelog %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 * Sat Jul 09 2011 jslaby@suse.cz
- Delete patches.fixes/x86_mtrr_stop_machine_1_2.patch. - 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. - Delete patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
They were superseded by other patches in They were superseded by other patches in
aa3d6e2b140aac24a432f830d30047b1842aed0b. aa3d6e2b140aac24a432f830d30047b1842aed0b.
@ -891,10 +924,29 @@ Debug information for package %name-devel
- Delete - Delete
patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch. patches.fixes/tty-ldisc-do-not-close-until-there-are-readers.patch.
- commit 8f499df - 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 * 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)
- Fix invalid colormap override in SUSE-bootsplash patch (bnc#584493)
- commit b4495f4 - commit b4495f4
* Wed Jun 29 2011 jeffm@suse.com
- Update to 3.0-rc5.
- commit 9eb1a0f
* Wed Jun 29 2011 jslaby@suse.cz * 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 - TTY: ldisc, do not close until there are readers (bnc#698247
bnc#693374). bnc#693374).
- commit 0615f1a - commit 0615f1a
@ -905,6 +957,9 @@ Debug information for package %name-devel
* Sun Jun 26 2011 jslaby@suse.cz * Sun Jun 26 2011 jslaby@suse.cz
- bridge: provide a cow_metrics method for fake_ops. - bridge: provide a cow_metrics method for fake_ops.
- commit 5bff18d - commit 5bff18d
* Fri Jun 24 2011 jeffm@suse.com
- Enable TOMOYO (FATE#310292, bnc#668381).
- commit 997e757
* Fri Jun 24 2011 jslaby@suse.cz * Fri Jun 24 2011 jslaby@suse.cz
- Linux 2.6.39.2. - Linux 2.6.39.2.
- Delete - Delete
@ -912,10 +967,31 @@ Debug information for package %name-devel
- Delete - Delete
patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch. patches.kernel.org/0001-Revert-x86-efi-Retain-boot-service-code-until-after-.patch.
- commit a1dc102 - 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 * Fri Jun 17 2011 trenn@suse.de
- stop_machine: implement stop_machine_from_offline_cpu() - stop_machine: implement stop_machine_from_offline_cpu()
(bnc#697859). (bnc#697859).
- stop_machine: kill __stop_machine() (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 - x86, mtrr: lock stop machine during MTRR rendezvous sequence
(bnc#697859). (bnc#697859).
- stop_machine: reorganize stop_cpus() implementation - 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 - x86, mtrr: use __stop_machine() for doing MTRR rendezvous
(bnc#697859). (bnc#697859).
- commit 303cc0e - 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 * Thu Jun 16 2011 tiwai@suse.de
- ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps - ALSA: fix hda AZX_DCAPS_NO_TCSEL quirk check in driver_caps
(bnc#700250,bnc#700251,bnc#700253). (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 - ALSA: hda - ALSA HD Audio patch for Intel Panther Point DeviceIDs
(bnc#700250,bnc#700251,bnc#700253). (bnc#700250,bnc#700251,bnc#700253).
- commit e9fb121 - 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 * 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 - "Unable to save Login Script" appears when trying to save a
user login script (bnc#638985). user login script (bnc#638985).
- commit fb87098 - commit fb87098
* Wed Jun 15 2011 jack@suse.cz * 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.
- fs: novfs: Limit check for datacopy between user and kernel space.
- commit 2985362 - 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 <linux/version.h> 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 * Fri Jun 10 2011 trenn@suse.de
- Update Suresh's patchset to version 3: - Update Suresh's patchset to version 3:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.
- Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch. - Refresh patches.fixes/x86_mtrr_use_stop_machine_2_2.patch.
- commit 9f2e923 - 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 * Wed Jun 08 2011 trenn@suse.de
- Update Suresh's version 2 of the patchseries: - Update Suresh's version 2 of the patchseries:
- Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch. - Refresh patches.fixes/x86_mtrr_stop_machine_1_2.patch.

3
linux-3.0.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:64b0228b54ce39b0b2df086109a7b737cde58e3df4f779506ddcaccee90356a0
size 76753134

10
mkspec
View File

@ -38,9 +38,13 @@ my %binary_descriptions = parse_descriptions();
$patches="--patches $patches" if $patches; $patches="--patches $patches" if $patches;
my $patchversion = `$dir/compute-PATCHVERSION.sh $patches`; my $patchversion = `$dir/compute-PATCHVERSION.sh $patches`;
chomp $patchversion; 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)) { if (defined($rpmrelease)) {
($rpmversion = $patchversion) =~ s/-.*//;
# convince abuild that we really want this release number # convince abuild that we really want this release number
xopen(my $fh, '>', "$dir/get_release_number.sh"); xopen(my $fh, '>', "$dir/get_release_number.sh");
print $fh "#!/bin/sh\n"; print $fh "#!/bin/sh\n";
@ -48,7 +52,7 @@ if (defined($rpmrelease)) {
close($fh); close($fh);
chmod(0755, "$dir/get_release_number.sh"); chmod(0755, "$dir/get_release_number.sh");
} else { } else {
($rpmversion, $rpmrelease) = (split(/-/, $patchversion, 2), ""); $rpmrelease = "";
} }
$rpmrelease =~ s/[^.]$/$&./; $rpmrelease =~ s/[^.]$/$&./;
$rpmrelease =~ s/-/./g; $rpmrelease =~ s/-/./g;

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:9ce7c67d76781fa003e0729067b12531f669bd34c3298cd57b595ba98b0737e0 oid sha256:86caf712f46364ffd27cc60983c7b0385ae0fdede5d0dca84fcc1b8c9bca337e
size 67833 size 67714

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:2445928b9ca117c8c7326d29c546e1f3b26aac30ea073a48a12c99316db9eb0e oid sha256:3461f856907853729c79a72b049126dc4d728b4b229af45fd730b555e5f8c855
size 13643 size 9053

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:f30dccb646dd4b05c36eb086a5aba59ebcfc2d27016566cc31c482b5ff1ad5ae oid sha256:5fd0af21f90d3335ddd523a5becf503a27800c3c0f96424a2ce17f3f34712102
size 38704 size 26880

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:407962217e392cd1ecde5c9ef44c38c875acffe9d7d852f1febf91d4fb3ff7d4 oid sha256:9dde5510f9ad1aef9c1f1d3b2a8099a006fe55fdab5ebcf2c141624b999d057e
size 113617 size 136

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:b2561dc8750958c1350dc3ed54e854d71dcd32d59a6ab617cba66ef201105c1d oid sha256:b77f31327dd5dfafb5b9fae40600e78ec6e596606423decee89d64b7d52708d1
size 3373 size 3923

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:cfe3ac43ed1ad0093eae31dc3da633e7b0d727cbc025772645dc207543b6bd0d oid sha256:193b89c8fedf4593068d00f042afb7a1338df3593aaf3805c8e1617378f5f3f4
size 193238 size 126225

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:e2c084524bd568ec9403d41dc91aa770d717385b70ac85f9784e29e5b1c3d27c oid sha256:b6116c742d33d832eb88589ca64f3cc3684459998f2b6de8858157c86b557867
size 2028504 size 2035970

View File

@ -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. # It must be possible to install different kernel.rpm packages in parallel.
# But in this post install script, the /boot/vmlinux symlink is replaced. # But in this post install script, the /boot/vmlinux symlink is replaced.
# On powerpc, the different kernels are for different board/firmware types # On powerpc, the different kernels are for different board/firmware types

View File

@ -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 wm2=/usr/lib/module-init-tools/weak-modules2
nvr=@SUBPACKAGE@-@RPM_VERSION_RELEASE@ nvr=@SUBPACKAGE@-@RPM_VERSION_RELEASE@

View File

@ -27,17 +27,14 @@
# DO NOT MODIFY THEM! # DO NOT MODIFY THEM!
# Send separate patches upstream if you find a problem... # 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. # Build fixes that apply to the vanilla kernel too.
# Patches in patches.rpmify are applied to both -vanilla # Patches in patches.rpmify are applied to both -vanilla
# and patched flavors. # and patched flavors.
######################################################## ########################################################
patches.rpmify/qla4xx-missing-readq-definition patches.rpmify/apm-honor-config_apm_cpu_idle-n
patches.rpmify/kvm-fix-off-by-one-in-kvm_for_each_vcpu-iteration patches.rpmify/nouveau-make-vga_switcheroo-code-depend-on-vga_switcheroo
######################################################## ########################################################
# kABI consistency patches # kABI consistency patches
@ -56,7 +53,6 @@
patches.rpmify/rpm-kernel-config patches.rpmify/rpm-kernel-config
patches.rpmify/split-package patches.rpmify/split-package
patches.rpmify/buildhost
patches.rpmify/cloneconfig.diff patches.rpmify/cloneconfig.diff
######################################################## ########################################################
@ -66,6 +62,7 @@
patches.suse/supported-flag-enterprise patches.suse/supported-flag-enterprise
patches.suse/genksyms-add-override-flag.diff patches.suse/genksyms-add-override-flag.diff
patches.suse/kconfig-automate-kernel-desktop patches.suse/kconfig-automate-kernel-desktop
patches.fixes/no-built-in-root_dev
######################################################## ########################################################
# Simple export additions/removals # Simple export additions/removals
@ -90,7 +87,6 @@
######################################################## ########################################################
# ia64 # ia64
######################################################## ########################################################
patches.fixes/ia64-sparse-fixes.diff
######################################################## ########################################################
# i386 # i386
@ -175,7 +171,6 @@
patches.fixes/grab-swap-token-oops patches.fixes/grab-swap-token-oops
patches.fixes/remount-no-shrink-dcache patches.fixes/remount-no-shrink-dcache
patches.suse/file-capabilities-disable-by-default.diff
patches.suse/readahead-request-tunables.patch patches.suse/readahead-request-tunables.patch
patches.fixes/fs-partitions-efi-c-corrupted-guid-partition-tables-can-cause-kernel-oops 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/connector-read-mostly
patches.suse/kbd-ignore-gfx.patch patches.suse/kbd-ignore-gfx.patch
patches.fixes/scsi-aic94xx-world-writable-sysfs-update_bios-file
######################################################## ########################################################
# #
# ACPI patches # ACPI patches
@ -301,14 +294,6 @@
# xfs # 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 # other filesystem stuff: richacls
######################################################## ########################################################
@ -378,13 +363,12 @@
patches.suse/scsi-error-test-unit-ready-timeout patches.suse/scsi-error-test-unit-ready-timeout
patches.fixes/scsi-scan-blist-update patches.fixes/scsi-scan-blist-update
patches.fixes/proc-scsi-scsi-fix.diff
patches.fixes/scsi-ibmvscsi-show-config.patch patches.fixes/scsi-ibmvscsi-show-config.patch
# bnc#362850 # bnc#362850
patches.fixes/sd_liberal_28_sense_invalid.diff patches.fixes/sd_liberal_28_sense_invalid.diff
patches.fixes/scsi-ibmvscsi-module_alias.patch patches.fixes/scsi-ibmvscsi-module_alias.patch
patches.fixes/SCSI-fix-crash-in-scsi_dispatch_cmd.patch
######################################################## ########################################################
# DRM/Video # DRM/Video
@ -398,6 +382,7 @@
# Network # Network
######################################################## ########################################################
patches.fixes/tulip-quad-NIC-ifdown patches.fixes/tulip-quad-NIC-ifdown
patches.fixes/net-tulip-debug-off-by-default.patch
patches.drivers/ehea-modinfo.patch patches.drivers/ehea-modinfo.patch
######################################################## ########################################################
@ -438,18 +423,11 @@
patches.suse/elousb-2.6.35-api-changes patches.suse/elousb-2.6.35-api-changes
patches.fixes/input-add-acer-aspire-5710-to-nomux.patch patches.fixes/input-add-acer-aspire-5710-to-nomux.patch
patches.drivers/input-Add-LED-support-to-Synaptics-device 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 # Sound
########################################################## ##########################################################
patches.drivers/alsa-hda-0019-Increase-default-buffer-size patches.drivers/alsa-hda-Add-Kconfig-for-the-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
######################################################## ########################################################
# Char / serial # Char / serial
@ -458,10 +436,9 @@
######################################################## ########################################################
# Other driver fixes # Other driver fixes
######################################################## ########################################################
patches.suse/staging-hv-vmbus-init-on-dmi-match.patch
patches.fixes/parport-mutex patches.fixes/parport-mutex
# Allow setting maximum number of raw devices
patches.suse/raw_device_max_minors_param.diff
patches.suse/no-partition-scan patches.suse/no-partition-scan
######################################################## ########################################################
@ -471,7 +448,6 @@
######################################################## ########################################################
# Suspend/Resume stuff # Suspend/Resume stuff
######################################################## ########################################################
patches.fixes/PM-Print-a-warning-if-firmware-is-requested-when-tas.patch
######################################################## ########################################################
# device-mapper # 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-remove-dm_put-after-dm_table_get_md
patches.suse/dm-raid45-api-update-no-barriers patches.suse/dm-raid45-api-update-no-barriers
patches.suse/dm-raid45-api-2.6.39 patches.suse/dm-raid45-api-2.6.39
patches.suse/dm-raid45-api-3.0
patches.fixes/dm-mpath-reattach-dh patches.fixes/dm-mpath-reattach-dh
patches.suse/dm-mpath-leastpending-path-update patches.suse/dm-mpath-leastpending-path-update
+needs_update patches.suse/dm-mpath-accept-failed-paths +needs_update patches.suse/dm-mpath-accept-failed-paths
@ -529,6 +506,7 @@
######################################################## ########################################################
patches.suse/crasher-26.diff patches.suse/crasher-26.diff
patches.suse/stack-unwind patches.suse/stack-unwind
patches.suse/revert-x86-remove-warning-and-warning_symbol-from-struct-stacktrace_ops
patches.suse/no-frame-pointer-select patches.suse/no-frame-pointer-select
patches.arch/x86_64-unwind-annotations patches.arch/x86_64-unwind-annotations
@ -581,12 +559,11 @@
patches.xen/add-console-use-vt patches.xen/add-console-use-vt
# split out patches # split out patches
patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch patches.xen/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-x86_64.patch
patches.xen/ipv6-no-autoconf patches.xen/ipv6-no-autoconf
patches.xen/pci-guestdev patches.xen/pci-guestdev
patches.xen/pci-reserve patches.xen/pci-reserve
patches.xen/tmem
# bulk stuff, new files for xen # bulk stuff, new files for xen
patches.xen/xen3-auto-xen-arch.diff patches.xen/xen3-auto-xen-arch.diff
@ -637,12 +614,12 @@
patches.xen/xen3-patch-2.6.37 patches.xen/xen3-patch-2.6.37
patches.xen/xen3-patch-2.6.38 patches.xen/xen3-patch-2.6.38
patches.xen/xen3-patch-2.6.39 patches.xen/xen3-patch-2.6.39
patches.xen/xen3-patch-3.0-rc5
patches.xen/xen3-stack-unwind patches.xen/xen3-stack-unwind
patches.xen/xen3-x86_64-unwind-annotations patches.xen/xen3-x86_64-unwind-annotations
# bugfixes and enhancements # bugfixes and enhancements
patches.xen/xen-balloon-max-target patches.xen/xen-balloon-max-target
patches.xen/xen-blkback-bimodal-suse
patches.xen/xen-blkif-protocol-fallback-hack patches.xen/xen-blkif-protocol-fallback-hack
patches.xen/xen-blkback-cdrom patches.xen/xen-blkback-cdrom
patches.xen/xen-blktap-modular patches.xen/xen-blktap-modular
@ -660,6 +637,7 @@
patches.xen/xen-spinlock-poll-early patches.xen/xen-spinlock-poll-early
patches.xen/xen-pcpu-hotplug patches.xen/xen-pcpu-hotplug
patches.xen/xen-mem-hotplug patches.xen/xen-mem-hotplug
patches.xen/xen-frontswap
patches.xen/xen-swiotlb-heuristics patches.xen/xen-swiotlb-heuristics
patches.xen/xen-configurable-guest-devices patches.xen/xen-configurable-guest-devices
patches.xen/xen-netback-nr-irqs patches.xen/xen-netback-nr-irqs
@ -674,7 +652,6 @@
patches.xen/xen-kzalloc patches.xen/xen-kzalloc
patches.xen/xen-unpriv-build patches.xen/xen-unpriv-build
patches.xen/xen-setup-gsi patches.xen/xen-setup-gsi
patches.xen/xen-sfc-netfront-gcc46
patches.xen/xen-x86-panic-no-reboot patches.xen/xen-x86-panic-no-reboot
patches.xen/xen-x86-dcr-fallback patches.xen/xen-x86-dcr-fallback
patches.xen/xen-x86-no-lapic patches.xen/xen-x86-no-lapic
@ -683,6 +660,7 @@
patches.xen/xen-x86-exit-mmap patches.xen/xen-x86-exit-mmap
patches.xen/xen-x86-per-cpu-vcpu-info patches.xen/xen-x86-per-cpu-vcpu-info
patches.xen/xen-x86-msr-on-pcpu 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-pin
patches.xen/xen-x86_64-pgd-alloc-order patches.xen/xen-x86_64-pgd-alloc-order
patches.xen/xen-x86_64-dump-user-pgt patches.xen/xen-x86_64-dump-user-pgt

View File

@ -1,3 +1,3 @@
2011-07-09 11:18:50 +0200 2011-07-24 08:15:52 +0200
GIT Revision: 84b09a013664a6cf54c95f35cfa601b3f0cda94a GIT Revision: 5a1af7d97e6fa84c81f994836546163d4007976c
GIT Branch: stable GIT Branch: stable

View File

@ -1615,6 +1615,7 @@
kernel/drivers/rtc/rtc-ds1553 kernel/drivers/rtc/rtc-ds1553
kernel/drivers/rtc/rtc-ds1672 kernel/drivers/rtc/rtc-ds1672
kernel/drivers/rtc/rtc-ds1742 kernel/drivers/rtc/rtc-ds1742
kernel/drivers/rtc/rtc-efi
kernel/drivers/rtc/rtc-fm3130 kernel/drivers/rtc/rtc-fm3130
kernel/drivers/rtc/rtc-isl1208 kernel/drivers/rtc/rtc-isl1208
kernel/drivers/rtc/rtc-lib kernel/drivers/rtc/rtc-lib