GIT Revision: 7e199aa9a3e097fd66d73d0dbb652daad0a38b21

OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=112
This commit is contained in:
Michal Marek 2012-03-20 06:05:08 +00:00 committed by Git OBS Bridge
parent 16ea545ce3
commit 81e6ac43ca
47 changed files with 6211 additions and 195 deletions

View File

@ -1,5 +1,5 @@
# The version of the main tarball to use
SRCVERSION=3.2
SRCVERSION=3.3
# variant of the kernel-source package, either empty or "-rt"
VARIANT=
# buildservice projects to build the kernel against

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a34c6331f6e5c72dd47c6279f6c7ed105e4e78b8305c9f1430c7088c73608b3c
size 275598
oid sha256:358ab664e12ed9e0d08543972d4463abb257667d3c33252da406563d707d3144
size 288526

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2d3be68acff5cd9d3cd0d5e76e21c12e9b8b41f765640dcac091d227ac068701
size 491
oid sha256:59d268a3fba95a4822be04a478e75c6875671e730955f3f7da59caccad496e28
size 426

View File

@ -25,6 +25,7 @@
%include %_sourcedir/kernel-spec-macros
%define build_flavor @FLAVOR@
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
@ -134,6 +135,17 @@ Provides: kernel = %version-%source_rel
@SOURCES@
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: @ARCHS@
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
%if ! %build_default
BuildArch: i686
# KMPs are always built as i586, because rpm does not allow to build
# subpackages for different architectures. Therefore, we change the
# /usr/src/linux-obj/<arch> symlink to i586.
%define kmp_target_cpu i586
%endif
%endif
# These files are found in the kernel-source package:
@NOSOURCE@
@ -548,9 +560,9 @@ if [ %CONFIG_MODULES = y ]; then
# Some architecture's $(uname -m) output is different from the ARCH
# parameter that needs to be passed to kbuild. Create symlinks from
# $(uname -m) to the ARCH directory.
if [ ! -e %rpm_install_dir/%_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%_target_cpu
if [ ! -e %rpm_install_dir/%kmp_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%kmp_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%kmp_target_cpu
fi
# We were building in %my_builddir/linux-%srcversion, but the sources will
@ -825,9 +837,9 @@ kernel module packages) against the %build_flavor flavor of the kernel.
%dir /usr/src/linux-obj/%cpu_arch
%ghost /usr/src/linux-obj/%cpu_arch_flavor
%obj_install_dir/%cpu_arch_flavor
%if %_target_cpu != %cpu_arch
%obj_install_dir/%_target_cpu
/usr/src/linux-obj/%_target_cpu
%if %kmp_target_cpu != %cpu_arch
%obj_install_dir/%kmp_target_cpu
/usr/src/linux-obj/%kmp_target_cpu
%endif
%endif

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon Mar 19 11:16:34 CET 2012 - jslaby@suse.cz
- Update (vanilla) config files.
- commit 55a0a56
-------------------------------------------------------------------
Mon Mar 19 11:07:00 CET 2012 - jslaby@suse.cz
- Delete
patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch.
- Delete patches.arch/dell_optiplex_990_fix_reboot.patch.
- Delete
patches.drivers/alsa-hda-0004-Add-missing-static-ADC-tables-for-ALC269-qu.
- Delete patches.drivers/libata-unlock-hpa-by-default.
- Delete patches.fixes/scsi-add-tgps-setting.
- Delete patches.fixes/scsi-dh-rdac-add-stk.
- Delete patches.suse/dm-mpath-evaluate-request-result-and-sense.
- Delete patches.suse/richacl-fix.
Remove unused patches.
- commit 2cbabfe
-------------------------------------------------------------------
Mon Mar 19 06:27:04 CET 2012 - jeffm@suse.com
- Update to 3.3-final.
- commit a9ab64a
-------------------------------------------------------------------
Fri Mar 16 07:23:33 CET 2012 - ohering@suse.de
- Update bugnumber patches.suse/sd_init.mark_majors_busy.patch (bnc#744658).
- commit e60f2c3
-------------------------------------------------------------------
Tue Mar 13 11:07:58 CET 2012 - jslaby@suse.cz
@ -17,6 +51,190 @@ Mon Mar 12 17:02:51 CET 2012 - jslaby@suse.cz
request_irq() (bnc#750106).
- commit 4bff877
-------------------------------------------------------------------
Mon Mar 12 16:35:36 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc7 and c/s 1163.
- commit 0054c83
-------------------------------------------------------------------
Mon Mar 12 15:26:55 CET 2012 - ohering@suse.de
- Staging: hv: storvsc: Cleanup some comments.
- Staging: hv: storvsc: Cleanup storvsc_probe().
- Staging: hv: storvsc: Cleanup storvsc_queuecommand().
- Staging: hv: storvsc: Introduce defines for srb status codes.
- Staging: hv: storvsc: Cleanup storvsc_host_reset_handler().
- Staging: hv: storvsc: Move and cleanup storvsc_remove().
- Staging: hv: storvsc: Add a comment to explain life-cycle
management.
- Staging: hv: storvsc: Get rid of the on_io_completion in
hv_storvsc_request.
- Staging: hv: storvsc: Rename the context field in
hv_storvsc_request.
- Staging: hv: storvsc: Miscellaneous cleanup of storvsc driver.
- Staging: hv: storvsc: Cleanup the code for generating protocol
version.
- Staging: hv: storvsc: Cleanup some protocol related constants.
- Staging: hv: storvsc: Get rid of some unused defines.
- Staging: hv: storvsc: Consolidate the request structure.
- Staging: hv: storvsc: Consolidate all the wire protocol
definitions.
- Staging: hv: storvsc: Move the storage driver out of the
staging area.
- Rename patches.suse/staging-hv-pata_piix-ignore-disks.patch to
patches.suse/suse-hv-pata_piix-ignore-disks.patch
- commit 7487199
-------------------------------------------------------------------
Mon Mar 12 03:43:53 CET 2012 - jeffm@suse.com
- Update to 3.3-rc7.
- commit 81a18ea
-------------------------------------------------------------------
Sun Mar 11 00:32:36 CET 2012 - jeffm@suse.com
- btrfs: Handle EIO.
- btrfs: add varargs to btrfs_error.
- btrfs: Remove BUG_ON from __finish_chunk_alloc().
- btrfs: Remove BUG_ON from __btrfs_alloc_chunk().
- btrfs: Don't BUG_ON insert errors in btrfs_alloc_dev_extent().
- btrfs: Go readonly on tree errors in balance_level.
- btrfs: Don't BUG_ON errors from update_ref_for_cow().
- btrfs: Go readonly on bad extent refs in update_ref_for_cow().
- btrfs: Don't BUG_ON errors in __finish_chunk_alloc().
- btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range().
- btrfs: Don't BUG_ON() errors in update_ref_for_cow().
- btrfs: Don't BUG_ON errors from btrfs_create_subvol_root().
- btrfs: btrfs_drop_snapshot should return int.
- brfs: split extent_state ops.
- btrfs: drop gfp_t from lock_extent.
- btrfs: scrub functions should return void.
- btrfs: btrfs_set_item_key_safe should BUG on error and return
void.
- btrfs: Add extent_state alloc/free tracing.
- btrfs: btrfs_destroy_pending_snapshots should return void.
- btrfs: btrfs_destroy_ordered_extents should return void.
- btrfs: btrfs_destroy_ordered_operations should return void.
- btrfs: del_fs_roots should return void.
- btrfs: btrfs_free_fs_root should return void.
- btrfs: btrfs_add_ordered_sum should return void.
- btrfs: btrfs_add_ordered_operation should return void.
- btrfs: btrfs_run_ordered_operations should return void.
- btrfs: btrfs_wait_ordered_range should return void.
- btrfs: btrfs_wait_ordered_extents should return void.
- btrfs: __btrfs_remove_ordered_extent should return void.
- btrfs: btrfs_put_ordered_extent should return void.
- btrfs: update_inline_extent_backref should return void.
- btrfs: copy_for_split should return void.
- btrfs: end_compressed_writeback should return void.
- btrfs: btrfs_extend_item should return void.
- btrfs: btrfs_truncate_item should return void.
- btrfs: add_delayed_data_ref should return void.
- btrfs: add_delayed_tree_ref should return void.
- btrfs: add_delayed_ref_head should return void.
- btrfs: insert_ptr should return void.
- btrfs: del_ptr should return void.
- btrfs: setup_items_for_insert should return void.
- btrfs: fixup_low_keys should return void.
- btrfs: __add_reloc_root error push-up.
- btrfs: ->submit_bio_hook error push-up.
- btrfs: Factor out tree->ops->merge_bio_hook call.
- btrfs: Simplify btrfs_submit_bio_hook.
- btrfs: Fix kfree of member instead of structure.
- btrfs: setup_inline_extent_backref should return void.
- btrfs: btrfs_set_block_group_rw should return void.
- btrfs: btrfs_prepare_extent_commit should return void.
- btrfs: btrfs_destroy_delalloc_inodes should return void.
- btrfs: __setup_root should return void.
- btrfs: btrfs_invalidate_inodes should return void.
- btrfs: btrfs_init_compress should return void.
- btrfs: wait_for_writer should return void.
- btrfs: btrfs_end_log_trans should return void.
- btrfs: btrfs_requeue_work should return void.
- btrfs: btrfs_stop_workers should return void.
- btrfs: run_ordered_completions should return void.
- btrfs: fill_device_from_item should return void.
- btrfs: schedule_bio should return void.
- btrfs: btrfs_close_extra_devices should return void.
- btrfs: run_scheduled_bios should return void.
- btrfs: btrfs_cleanup_fs_uuids should return void.
- btrfs: clear_extent_buffer_dirty should return void.
- btrfs: check_page_writeback should return void.
- btrfs: check_page_locked should return void.
- btrfs: check_page_uptodate should return void.
- btrfs: __unlock_for_delalloc should return void.
- btrfs: wait_extent_bit should return void.
- btrfs: wait_on_state should return void.
- btrfs: btrfs_update_root error push-up.
- btrfs: find_and_setup_root error push-up.
- btrfs: Remove set bits return from clear_extent_bit.
- btrfs: avoid NULL deref in btrfs_reserve_extent with
DEBUG_ENOSPC.
- btrfs: clean_tree_block should panic on observed memory
corruption and return void.
- btrfs: btrfs_tree_{,un}lock should return void.
- btrfs: Simplify btrfs_insert_root.
- btrfs: Panic on bad rbtree operations.
- btrfs: Catch locking failures in {set,clear,convert}_extent_bit.
- btrfs: Add btrfs_panic().
- commit fd31baf
-------------------------------------------------------------------
Fri Mar 9 15:02:13 CET 2012 - ohering@suse.de
- mark busy sd majors as allocated (bug#744658).
- commit b2a640b
-------------------------------------------------------------------
Thu Mar 8 13:37:39 CET 2012 - mmarek@suse.cz
- Fix vanilla config files.
- commit b343c8a
-------------------------------------------------------------------
Thu Mar 8 11:56:26 CET 2012 - mmarek@suse.cz
- Delete patches.rpmify/nvme-broken, nvme builds again on 32bit.
- commit d60272f
-------------------------------------------------------------------
Thu Mar 8 11:34:18 CET 2012 - jbeulich@novell.com
- patches.suse/crasher-26.diff: Eliminate build warnings.
- commit 67c3c8d
-------------------------------------------------------------------
Thu Mar 8 10:55:04 CET 2012 - agraf@suse.de
- armv7l: config: omap: disable HDMI output (breaks build)
- commit 6a871bd
-------------------------------------------------------------------
Tue Mar 6 20:02:14 CET 2012 - agraf@suse.de
- armv7l: omap2plus: Enable TIDSPBRIDGE and SND codecs
- commit 0d8ec4d
-------------------------------------------------------------------
Mon Mar 5 07:01:47 CET 2012 - jeffm@suse.com
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit f4b95ae
-------------------------------------------------------------------
Mon Mar 5 05:35:06 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6. Previous commit was configs.
- commit 639167f
-------------------------------------------------------------------
Mon Mar 5 05:14:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6.
- commit ebec13a
-------------------------------------------------------------------
Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
@ -24,6 +242,13 @@ Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit 2c205b4
-------------------------------------------------------------------
Sun Mar 4 14:21:47 CET 2012 - jslaby@suse.cz
- Update config files.
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit adb37b7
-------------------------------------------------------------------
Thu Mar 1 18:15:58 CET 2012 - jslaby@suse.cz
@ -38,6 +263,14 @@ Thu Mar 1 10:00:42 CET 2012 - jslaby@suse.cz
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit 82a8603
-------------------------------------------------------------------
Wed Feb 29 15:22:34 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc5 and c/s 1157.
- config.conf: Re-enable Xen configs.
- Update config files.
- commit f225622
-------------------------------------------------------------------
Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
@ -47,6 +280,12 @@ Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
same fix will be ported here.
- commit 2bcad53
-------------------------------------------------------------------
Mon Feb 27 03:38:40 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc5.
- commit 0b7f048
-------------------------------------------------------------------
Sun Feb 26 14:19:13 CET 2012 - jslaby@suse.cz
@ -75,6 +314,12 @@ Tue Feb 21 11:56:39 CET 2012 - jslaby@suse.cz
- Linux 3.2.7.
- commit 3d38d11
-------------------------------------------------------------------
Sun Feb 19 18:00:16 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc4.
- commit 8831dca
-------------------------------------------------------------------
Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
@ -83,6 +328,12 @@ Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
patches.fixes/PM-Hibernate-Fix-s2disk-regression-related-to-freezi.patch.
- commit 264e0d4
-------------------------------------------------------------------
Mon Feb 13 19:33:57 CET 2012 - trenn@suse.de
- cpufreq/gx: Fix the compile error.
- commit 4ba1d8b
-------------------------------------------------------------------
Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
@ -90,6 +341,93 @@ Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
Enable brcm80211 wireless driver.
- commit 70a4760
-------------------------------------------------------------------
Mon Feb 13 17:23:49 CET 2012 - mmarek@suse.cz
- nvme: Mark as broken on x86_32.
- commit 28ad576
-------------------------------------------------------------------
Sun Feb 12 18:15:10 CET 2012 - trenn@suse.de
- Add driver auto probing for x86 features v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Fix overrun check in arch_print_cpu_modalias()
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- crypto: Add support for x86 cpuid
auto loading for x86 crypto drivers
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Clean up modalias feature matching
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel-idle: convert to x86_cpu_id auto probing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert via-cputemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k7: Fix CPU family number
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: Load acpi-cpufreq from processor driver automatically
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Revert change of auto_demotion_flags for Nehalem
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert coretemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k6: Really enable auto-loading
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- X86: Introduce HW-Pstate scattered cpuid feature
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- cpufreq: Add support for x86 cpuinfo auto loading v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86: autoload microcode driver on Intel and AMD systems v2
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- CPU: Introduce ARCH_HAS_CPU_AUTOPROBE and X86 parts
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: remove duplicated lines of merging
problems with acpi_processor_start
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- Update config files.
- commit 6efe9b5
-------------------------------------------------------------------
Fri Feb 10 12:03:36 CET 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Build x86 packages as i686, except for
-default (bnc#745632). KMPs are still built as i586.
- commit 88a632b
-------------------------------------------------------------------
Thu Feb 9 15:57:54 CET 2012 - jeffm@suse.com
- Update to 3.3-rc3.
- commit 07ec27c
-------------------------------------------------------------------
Thu Feb 9 12:53:26 CET 2012 - agraf@suse.de
- armv7l: Update config files.
- commit d223353
-------------------------------------------------------------------
Thu Feb 9 12:48:21 CET 2012 - agraf@suse.de
- armv7l: config: integrate bmwiedemann's updates to make it usable
- commit 76d12ed
-------------------------------------------------------------------
Tue Feb 7 18:28:41 CET 2012 - jeffm@suse.com
- Update vanilla config files.
- commit fd3673f
-------------------------------------------------------------------
Tue Feb 7 18:12:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc2.
- Eliminated 5 patches.
- Xen is disabled.
- commit d017ea1
-------------------------------------------------------------------
Sat Feb 4 15:19:04 CET 2012 - jslaby@suse.cz

View File

@ -17,14 +17,15 @@
# norootforbuild
%define srcversion 3.2
%define patchversion 3.2.10
%define srcversion 3.3
%define patchversion 3.3.0
%define variant %{nil}
%define vanilla_only 0
%include %_sourcedir/kernel-spec-macros
%define build_flavor debug
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
@ -56,7 +57,7 @@
Name: kernel-debug
Summary: A Debug Version of the Kernel
Version: 3.2.10
Version: 3.3.0
Release: 0
License: GPL-2.0
Group: System/Kernel
@ -196,6 +197,17 @@ Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: %ix86 ia64 ppc64 x86_64
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
%if ! %build_default
BuildArch: i686
# KMPs are always built as i586, because rpm does not allow to build
# subpackages for different architectures. Therefore, we change the
# /usr/src/linux-obj/<arch> symlink to i586.
%define kmp_target_cpu i586
%endif
%endif
# These files are found in the kernel-source package:
NoSource: 0
@ -627,9 +639,9 @@ if [ %CONFIG_MODULES = y ]; then
# Some architecture's $(uname -m) output is different from the ARCH
# parameter that needs to be passed to kbuild. Create symlinks from
# $(uname -m) to the ARCH directory.
if [ ! -e %rpm_install_dir/%_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%_target_cpu
if [ ! -e %rpm_install_dir/%kmp_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%kmp_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%kmp_target_cpu
fi
# We were building in %my_builddir/linux-%srcversion, but the sources will
@ -906,9 +918,9 @@ kernel module packages) against the %build_flavor flavor of the kernel.
%dir /usr/src/linux-obj/%cpu_arch
%ghost /usr/src/linux-obj/%cpu_arch_flavor
%obj_install_dir/%cpu_arch_flavor
%if %_target_cpu != %cpu_arch
%obj_install_dir/%_target_cpu
/usr/src/linux-obj/%_target_cpu
%if %kmp_target_cpu != %cpu_arch
%obj_install_dir/%kmp_target_cpu
/usr/src/linux-obj/%kmp_target_cpu
%endif
%endif

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon Mar 19 11:16:34 CET 2012 - jslaby@suse.cz
- Update (vanilla) config files.
- commit 55a0a56
-------------------------------------------------------------------
Mon Mar 19 11:07:00 CET 2012 - jslaby@suse.cz
- Delete
patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch.
- Delete patches.arch/dell_optiplex_990_fix_reboot.patch.
- Delete
patches.drivers/alsa-hda-0004-Add-missing-static-ADC-tables-for-ALC269-qu.
- Delete patches.drivers/libata-unlock-hpa-by-default.
- Delete patches.fixes/scsi-add-tgps-setting.
- Delete patches.fixes/scsi-dh-rdac-add-stk.
- Delete patches.suse/dm-mpath-evaluate-request-result-and-sense.
- Delete patches.suse/richacl-fix.
Remove unused patches.
- commit 2cbabfe
-------------------------------------------------------------------
Mon Mar 19 06:27:04 CET 2012 - jeffm@suse.com
- Update to 3.3-final.
- commit a9ab64a
-------------------------------------------------------------------
Fri Mar 16 07:23:33 CET 2012 - ohering@suse.de
- Update bugnumber patches.suse/sd_init.mark_majors_busy.patch (bnc#744658).
- commit e60f2c3
-------------------------------------------------------------------
Tue Mar 13 11:07:58 CET 2012 - jslaby@suse.cz
@ -17,6 +51,190 @@ Mon Mar 12 17:02:51 CET 2012 - jslaby@suse.cz
request_irq() (bnc#750106).
- commit 4bff877
-------------------------------------------------------------------
Mon Mar 12 16:35:36 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc7 and c/s 1163.
- commit 0054c83
-------------------------------------------------------------------
Mon Mar 12 15:26:55 CET 2012 - ohering@suse.de
- Staging: hv: storvsc: Cleanup some comments.
- Staging: hv: storvsc: Cleanup storvsc_probe().
- Staging: hv: storvsc: Cleanup storvsc_queuecommand().
- Staging: hv: storvsc: Introduce defines for srb status codes.
- Staging: hv: storvsc: Cleanup storvsc_host_reset_handler().
- Staging: hv: storvsc: Move and cleanup storvsc_remove().
- Staging: hv: storvsc: Add a comment to explain life-cycle
management.
- Staging: hv: storvsc: Get rid of the on_io_completion in
hv_storvsc_request.
- Staging: hv: storvsc: Rename the context field in
hv_storvsc_request.
- Staging: hv: storvsc: Miscellaneous cleanup of storvsc driver.
- Staging: hv: storvsc: Cleanup the code for generating protocol
version.
- Staging: hv: storvsc: Cleanup some protocol related constants.
- Staging: hv: storvsc: Get rid of some unused defines.
- Staging: hv: storvsc: Consolidate the request structure.
- Staging: hv: storvsc: Consolidate all the wire protocol
definitions.
- Staging: hv: storvsc: Move the storage driver out of the
staging area.
- Rename patches.suse/staging-hv-pata_piix-ignore-disks.patch to
patches.suse/suse-hv-pata_piix-ignore-disks.patch
- commit 7487199
-------------------------------------------------------------------
Mon Mar 12 03:43:53 CET 2012 - jeffm@suse.com
- Update to 3.3-rc7.
- commit 81a18ea
-------------------------------------------------------------------
Sun Mar 11 00:32:36 CET 2012 - jeffm@suse.com
- btrfs: Handle EIO.
- btrfs: add varargs to btrfs_error.
- btrfs: Remove BUG_ON from __finish_chunk_alloc().
- btrfs: Remove BUG_ON from __btrfs_alloc_chunk().
- btrfs: Don't BUG_ON insert errors in btrfs_alloc_dev_extent().
- btrfs: Go readonly on tree errors in balance_level.
- btrfs: Don't BUG_ON errors from update_ref_for_cow().
- btrfs: Go readonly on bad extent refs in update_ref_for_cow().
- btrfs: Don't BUG_ON errors in __finish_chunk_alloc().
- btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range().
- btrfs: Don't BUG_ON() errors in update_ref_for_cow().
- btrfs: Don't BUG_ON errors from btrfs_create_subvol_root().
- btrfs: btrfs_drop_snapshot should return int.
- brfs: split extent_state ops.
- btrfs: drop gfp_t from lock_extent.
- btrfs: scrub functions should return void.
- btrfs: btrfs_set_item_key_safe should BUG on error and return
void.
- btrfs: Add extent_state alloc/free tracing.
- btrfs: btrfs_destroy_pending_snapshots should return void.
- btrfs: btrfs_destroy_ordered_extents should return void.
- btrfs: btrfs_destroy_ordered_operations should return void.
- btrfs: del_fs_roots should return void.
- btrfs: btrfs_free_fs_root should return void.
- btrfs: btrfs_add_ordered_sum should return void.
- btrfs: btrfs_add_ordered_operation should return void.
- btrfs: btrfs_run_ordered_operations should return void.
- btrfs: btrfs_wait_ordered_range should return void.
- btrfs: btrfs_wait_ordered_extents should return void.
- btrfs: __btrfs_remove_ordered_extent should return void.
- btrfs: btrfs_put_ordered_extent should return void.
- btrfs: update_inline_extent_backref should return void.
- btrfs: copy_for_split should return void.
- btrfs: end_compressed_writeback should return void.
- btrfs: btrfs_extend_item should return void.
- btrfs: btrfs_truncate_item should return void.
- btrfs: add_delayed_data_ref should return void.
- btrfs: add_delayed_tree_ref should return void.
- btrfs: add_delayed_ref_head should return void.
- btrfs: insert_ptr should return void.
- btrfs: del_ptr should return void.
- btrfs: setup_items_for_insert should return void.
- btrfs: fixup_low_keys should return void.
- btrfs: __add_reloc_root error push-up.
- btrfs: ->submit_bio_hook error push-up.
- btrfs: Factor out tree->ops->merge_bio_hook call.
- btrfs: Simplify btrfs_submit_bio_hook.
- btrfs: Fix kfree of member instead of structure.
- btrfs: setup_inline_extent_backref should return void.
- btrfs: btrfs_set_block_group_rw should return void.
- btrfs: btrfs_prepare_extent_commit should return void.
- btrfs: btrfs_destroy_delalloc_inodes should return void.
- btrfs: __setup_root should return void.
- btrfs: btrfs_invalidate_inodes should return void.
- btrfs: btrfs_init_compress should return void.
- btrfs: wait_for_writer should return void.
- btrfs: btrfs_end_log_trans should return void.
- btrfs: btrfs_requeue_work should return void.
- btrfs: btrfs_stop_workers should return void.
- btrfs: run_ordered_completions should return void.
- btrfs: fill_device_from_item should return void.
- btrfs: schedule_bio should return void.
- btrfs: btrfs_close_extra_devices should return void.
- btrfs: run_scheduled_bios should return void.
- btrfs: btrfs_cleanup_fs_uuids should return void.
- btrfs: clear_extent_buffer_dirty should return void.
- btrfs: check_page_writeback should return void.
- btrfs: check_page_locked should return void.
- btrfs: check_page_uptodate should return void.
- btrfs: __unlock_for_delalloc should return void.
- btrfs: wait_extent_bit should return void.
- btrfs: wait_on_state should return void.
- btrfs: btrfs_update_root error push-up.
- btrfs: find_and_setup_root error push-up.
- btrfs: Remove set bits return from clear_extent_bit.
- btrfs: avoid NULL deref in btrfs_reserve_extent with
DEBUG_ENOSPC.
- btrfs: clean_tree_block should panic on observed memory
corruption and return void.
- btrfs: btrfs_tree_{,un}lock should return void.
- btrfs: Simplify btrfs_insert_root.
- btrfs: Panic on bad rbtree operations.
- btrfs: Catch locking failures in {set,clear,convert}_extent_bit.
- btrfs: Add btrfs_panic().
- commit fd31baf
-------------------------------------------------------------------
Fri Mar 9 15:02:13 CET 2012 - ohering@suse.de
- mark busy sd majors as allocated (bug#744658).
- commit b2a640b
-------------------------------------------------------------------
Thu Mar 8 13:37:39 CET 2012 - mmarek@suse.cz
- Fix vanilla config files.
- commit b343c8a
-------------------------------------------------------------------
Thu Mar 8 11:56:26 CET 2012 - mmarek@suse.cz
- Delete patches.rpmify/nvme-broken, nvme builds again on 32bit.
- commit d60272f
-------------------------------------------------------------------
Thu Mar 8 11:34:18 CET 2012 - jbeulich@novell.com
- patches.suse/crasher-26.diff: Eliminate build warnings.
- commit 67c3c8d
-------------------------------------------------------------------
Thu Mar 8 10:55:04 CET 2012 - agraf@suse.de
- armv7l: config: omap: disable HDMI output (breaks build)
- commit 6a871bd
-------------------------------------------------------------------
Tue Mar 6 20:02:14 CET 2012 - agraf@suse.de
- armv7l: omap2plus: Enable TIDSPBRIDGE and SND codecs
- commit 0d8ec4d
-------------------------------------------------------------------
Mon Mar 5 07:01:47 CET 2012 - jeffm@suse.com
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit f4b95ae
-------------------------------------------------------------------
Mon Mar 5 05:35:06 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6. Previous commit was configs.
- commit 639167f
-------------------------------------------------------------------
Mon Mar 5 05:14:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6.
- commit ebec13a
-------------------------------------------------------------------
Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
@ -24,6 +242,13 @@ Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit 2c205b4
-------------------------------------------------------------------
Sun Mar 4 14:21:47 CET 2012 - jslaby@suse.cz
- Update config files.
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit adb37b7
-------------------------------------------------------------------
Thu Mar 1 18:15:58 CET 2012 - jslaby@suse.cz
@ -38,6 +263,14 @@ Thu Mar 1 10:00:42 CET 2012 - jslaby@suse.cz
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit 82a8603
-------------------------------------------------------------------
Wed Feb 29 15:22:34 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc5 and c/s 1157.
- config.conf: Re-enable Xen configs.
- Update config files.
- commit f225622
-------------------------------------------------------------------
Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
@ -47,6 +280,12 @@ Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
same fix will be ported here.
- commit 2bcad53
-------------------------------------------------------------------
Mon Feb 27 03:38:40 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc5.
- commit 0b7f048
-------------------------------------------------------------------
Sun Feb 26 14:19:13 CET 2012 - jslaby@suse.cz
@ -75,6 +314,12 @@ Tue Feb 21 11:56:39 CET 2012 - jslaby@suse.cz
- Linux 3.2.7.
- commit 3d38d11
-------------------------------------------------------------------
Sun Feb 19 18:00:16 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc4.
- commit 8831dca
-------------------------------------------------------------------
Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
@ -83,6 +328,12 @@ Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
patches.fixes/PM-Hibernate-Fix-s2disk-regression-related-to-freezi.patch.
- commit 264e0d4
-------------------------------------------------------------------
Mon Feb 13 19:33:57 CET 2012 - trenn@suse.de
- cpufreq/gx: Fix the compile error.
- commit 4ba1d8b
-------------------------------------------------------------------
Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
@ -90,6 +341,93 @@ Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
Enable brcm80211 wireless driver.
- commit 70a4760
-------------------------------------------------------------------
Mon Feb 13 17:23:49 CET 2012 - mmarek@suse.cz
- nvme: Mark as broken on x86_32.
- commit 28ad576
-------------------------------------------------------------------
Sun Feb 12 18:15:10 CET 2012 - trenn@suse.de
- Add driver auto probing for x86 features v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Fix overrun check in arch_print_cpu_modalias()
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- crypto: Add support for x86 cpuid
auto loading for x86 crypto drivers
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Clean up modalias feature matching
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel-idle: convert to x86_cpu_id auto probing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert via-cputemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k7: Fix CPU family number
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: Load acpi-cpufreq from processor driver automatically
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Revert change of auto_demotion_flags for Nehalem
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert coretemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k6: Really enable auto-loading
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- X86: Introduce HW-Pstate scattered cpuid feature
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- cpufreq: Add support for x86 cpuinfo auto loading v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86: autoload microcode driver on Intel and AMD systems v2
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- CPU: Introduce ARCH_HAS_CPU_AUTOPROBE and X86 parts
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: remove duplicated lines of merging
problems with acpi_processor_start
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- Update config files.
- commit 6efe9b5
-------------------------------------------------------------------
Fri Feb 10 12:03:36 CET 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Build x86 packages as i686, except for
-default (bnc#745632). KMPs are still built as i586.
- commit 88a632b
-------------------------------------------------------------------
Thu Feb 9 15:57:54 CET 2012 - jeffm@suse.com
- Update to 3.3-rc3.
- commit 07ec27c
-------------------------------------------------------------------
Thu Feb 9 12:53:26 CET 2012 - agraf@suse.de
- armv7l: Update config files.
- commit d223353
-------------------------------------------------------------------
Thu Feb 9 12:48:21 CET 2012 - agraf@suse.de
- armv7l: config: integrate bmwiedemann's updates to make it usable
- commit 76d12ed
-------------------------------------------------------------------
Tue Feb 7 18:28:41 CET 2012 - jeffm@suse.com
- Update vanilla config files.
- commit fd3673f
-------------------------------------------------------------------
Tue Feb 7 18:12:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc2.
- Eliminated 5 patches.
- Xen is disabled.
- commit d017ea1
-------------------------------------------------------------------
Sat Feb 4 15:19:04 CET 2012 - jslaby@suse.cz

View File

@ -17,14 +17,15 @@
# norootforbuild
%define srcversion 3.2
%define patchversion 3.2.10
%define srcversion 3.3
%define patchversion 3.3.0
%define variant %{nil}
%define vanilla_only 0
%include %_sourcedir/kernel-spec-macros
%define build_flavor default
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
@ -56,7 +57,7 @@
Name: kernel-default
Summary: The Standard Kernel
Version: 3.2.10
Version: 3.3.0
Release: 0
License: GPL-2.0
Group: System/Kernel
@ -212,6 +213,17 @@ Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: armv7l %ix86 ia64 ppc ppc64 s390x x86_64
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
%if ! %build_default
BuildArch: i686
# KMPs are always built as i586, because rpm does not allow to build
# subpackages for different architectures. Therefore, we change the
# /usr/src/linux-obj/<arch> symlink to i586.
%define kmp_target_cpu i586
%endif
%endif
# These files are found in the kernel-source package:
NoSource: 0
@ -642,9 +654,9 @@ if [ %CONFIG_MODULES = y ]; then
# Some architecture's $(uname -m) output is different from the ARCH
# parameter that needs to be passed to kbuild. Create symlinks from
# $(uname -m) to the ARCH directory.
if [ ! -e %rpm_install_dir/%_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%_target_cpu
if [ ! -e %rpm_install_dir/%kmp_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%kmp_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%kmp_target_cpu
fi
# We were building in %my_builddir/linux-%srcversion, but the sources will
@ -919,9 +931,9 @@ kernel module packages) against the %build_flavor flavor of the kernel.
%dir /usr/src/linux-obj/%cpu_arch
%ghost /usr/src/linux-obj/%cpu_arch_flavor
%obj_install_dir/%cpu_arch_flavor
%if %_target_cpu != %cpu_arch
%obj_install_dir/%_target_cpu
/usr/src/linux-obj/%_target_cpu
%if %kmp_target_cpu != %cpu_arch
%obj_install_dir/%kmp_target_cpu
/usr/src/linux-obj/%kmp_target_cpu
%endif
%endif

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon Mar 19 11:16:34 CET 2012 - jslaby@suse.cz
- Update (vanilla) config files.
- commit 55a0a56
-------------------------------------------------------------------
Mon Mar 19 11:07:00 CET 2012 - jslaby@suse.cz
- Delete
patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch.
- Delete patches.arch/dell_optiplex_990_fix_reboot.patch.
- Delete
patches.drivers/alsa-hda-0004-Add-missing-static-ADC-tables-for-ALC269-qu.
- Delete patches.drivers/libata-unlock-hpa-by-default.
- Delete patches.fixes/scsi-add-tgps-setting.
- Delete patches.fixes/scsi-dh-rdac-add-stk.
- Delete patches.suse/dm-mpath-evaluate-request-result-and-sense.
- Delete patches.suse/richacl-fix.
Remove unused patches.
- commit 2cbabfe
-------------------------------------------------------------------
Mon Mar 19 06:27:04 CET 2012 - jeffm@suse.com
- Update to 3.3-final.
- commit a9ab64a
-------------------------------------------------------------------
Fri Mar 16 07:23:33 CET 2012 - ohering@suse.de
- Update bugnumber patches.suse/sd_init.mark_majors_busy.patch (bnc#744658).
- commit e60f2c3
-------------------------------------------------------------------
Tue Mar 13 11:07:58 CET 2012 - jslaby@suse.cz
@ -17,6 +51,190 @@ Mon Mar 12 17:02:51 CET 2012 - jslaby@suse.cz
request_irq() (bnc#750106).
- commit 4bff877
-------------------------------------------------------------------
Mon Mar 12 16:35:36 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc7 and c/s 1163.
- commit 0054c83
-------------------------------------------------------------------
Mon Mar 12 15:26:55 CET 2012 - ohering@suse.de
- Staging: hv: storvsc: Cleanup some comments.
- Staging: hv: storvsc: Cleanup storvsc_probe().
- Staging: hv: storvsc: Cleanup storvsc_queuecommand().
- Staging: hv: storvsc: Introduce defines for srb status codes.
- Staging: hv: storvsc: Cleanup storvsc_host_reset_handler().
- Staging: hv: storvsc: Move and cleanup storvsc_remove().
- Staging: hv: storvsc: Add a comment to explain life-cycle
management.
- Staging: hv: storvsc: Get rid of the on_io_completion in
hv_storvsc_request.
- Staging: hv: storvsc: Rename the context field in
hv_storvsc_request.
- Staging: hv: storvsc: Miscellaneous cleanup of storvsc driver.
- Staging: hv: storvsc: Cleanup the code for generating protocol
version.
- Staging: hv: storvsc: Cleanup some protocol related constants.
- Staging: hv: storvsc: Get rid of some unused defines.
- Staging: hv: storvsc: Consolidate the request structure.
- Staging: hv: storvsc: Consolidate all the wire protocol
definitions.
- Staging: hv: storvsc: Move the storage driver out of the
staging area.
- Rename patches.suse/staging-hv-pata_piix-ignore-disks.patch to
patches.suse/suse-hv-pata_piix-ignore-disks.patch
- commit 7487199
-------------------------------------------------------------------
Mon Mar 12 03:43:53 CET 2012 - jeffm@suse.com
- Update to 3.3-rc7.
- commit 81a18ea
-------------------------------------------------------------------
Sun Mar 11 00:32:36 CET 2012 - jeffm@suse.com
- btrfs: Handle EIO.
- btrfs: add varargs to btrfs_error.
- btrfs: Remove BUG_ON from __finish_chunk_alloc().
- btrfs: Remove BUG_ON from __btrfs_alloc_chunk().
- btrfs: Don't BUG_ON insert errors in btrfs_alloc_dev_extent().
- btrfs: Go readonly on tree errors in balance_level.
- btrfs: Don't BUG_ON errors from update_ref_for_cow().
- btrfs: Go readonly on bad extent refs in update_ref_for_cow().
- btrfs: Don't BUG_ON errors in __finish_chunk_alloc().
- btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range().
- btrfs: Don't BUG_ON() errors in update_ref_for_cow().
- btrfs: Don't BUG_ON errors from btrfs_create_subvol_root().
- btrfs: btrfs_drop_snapshot should return int.
- brfs: split extent_state ops.
- btrfs: drop gfp_t from lock_extent.
- btrfs: scrub functions should return void.
- btrfs: btrfs_set_item_key_safe should BUG on error and return
void.
- btrfs: Add extent_state alloc/free tracing.
- btrfs: btrfs_destroy_pending_snapshots should return void.
- btrfs: btrfs_destroy_ordered_extents should return void.
- btrfs: btrfs_destroy_ordered_operations should return void.
- btrfs: del_fs_roots should return void.
- btrfs: btrfs_free_fs_root should return void.
- btrfs: btrfs_add_ordered_sum should return void.
- btrfs: btrfs_add_ordered_operation should return void.
- btrfs: btrfs_run_ordered_operations should return void.
- btrfs: btrfs_wait_ordered_range should return void.
- btrfs: btrfs_wait_ordered_extents should return void.
- btrfs: __btrfs_remove_ordered_extent should return void.
- btrfs: btrfs_put_ordered_extent should return void.
- btrfs: update_inline_extent_backref should return void.
- btrfs: copy_for_split should return void.
- btrfs: end_compressed_writeback should return void.
- btrfs: btrfs_extend_item should return void.
- btrfs: btrfs_truncate_item should return void.
- btrfs: add_delayed_data_ref should return void.
- btrfs: add_delayed_tree_ref should return void.
- btrfs: add_delayed_ref_head should return void.
- btrfs: insert_ptr should return void.
- btrfs: del_ptr should return void.
- btrfs: setup_items_for_insert should return void.
- btrfs: fixup_low_keys should return void.
- btrfs: __add_reloc_root error push-up.
- btrfs: ->submit_bio_hook error push-up.
- btrfs: Factor out tree->ops->merge_bio_hook call.
- btrfs: Simplify btrfs_submit_bio_hook.
- btrfs: Fix kfree of member instead of structure.
- btrfs: setup_inline_extent_backref should return void.
- btrfs: btrfs_set_block_group_rw should return void.
- btrfs: btrfs_prepare_extent_commit should return void.
- btrfs: btrfs_destroy_delalloc_inodes should return void.
- btrfs: __setup_root should return void.
- btrfs: btrfs_invalidate_inodes should return void.
- btrfs: btrfs_init_compress should return void.
- btrfs: wait_for_writer should return void.
- btrfs: btrfs_end_log_trans should return void.
- btrfs: btrfs_requeue_work should return void.
- btrfs: btrfs_stop_workers should return void.
- btrfs: run_ordered_completions should return void.
- btrfs: fill_device_from_item should return void.
- btrfs: schedule_bio should return void.
- btrfs: btrfs_close_extra_devices should return void.
- btrfs: run_scheduled_bios should return void.
- btrfs: btrfs_cleanup_fs_uuids should return void.
- btrfs: clear_extent_buffer_dirty should return void.
- btrfs: check_page_writeback should return void.
- btrfs: check_page_locked should return void.
- btrfs: check_page_uptodate should return void.
- btrfs: __unlock_for_delalloc should return void.
- btrfs: wait_extent_bit should return void.
- btrfs: wait_on_state should return void.
- btrfs: btrfs_update_root error push-up.
- btrfs: find_and_setup_root error push-up.
- btrfs: Remove set bits return from clear_extent_bit.
- btrfs: avoid NULL deref in btrfs_reserve_extent with
DEBUG_ENOSPC.
- btrfs: clean_tree_block should panic on observed memory
corruption and return void.
- btrfs: btrfs_tree_{,un}lock should return void.
- btrfs: Simplify btrfs_insert_root.
- btrfs: Panic on bad rbtree operations.
- btrfs: Catch locking failures in {set,clear,convert}_extent_bit.
- btrfs: Add btrfs_panic().
- commit fd31baf
-------------------------------------------------------------------
Fri Mar 9 15:02:13 CET 2012 - ohering@suse.de
- mark busy sd majors as allocated (bug#744658).
- commit b2a640b
-------------------------------------------------------------------
Thu Mar 8 13:37:39 CET 2012 - mmarek@suse.cz
- Fix vanilla config files.
- commit b343c8a
-------------------------------------------------------------------
Thu Mar 8 11:56:26 CET 2012 - mmarek@suse.cz
- Delete patches.rpmify/nvme-broken, nvme builds again on 32bit.
- commit d60272f
-------------------------------------------------------------------
Thu Mar 8 11:34:18 CET 2012 - jbeulich@novell.com
- patches.suse/crasher-26.diff: Eliminate build warnings.
- commit 67c3c8d
-------------------------------------------------------------------
Thu Mar 8 10:55:04 CET 2012 - agraf@suse.de
- armv7l: config: omap: disable HDMI output (breaks build)
- commit 6a871bd
-------------------------------------------------------------------
Tue Mar 6 20:02:14 CET 2012 - agraf@suse.de
- armv7l: omap2plus: Enable TIDSPBRIDGE and SND codecs
- commit 0d8ec4d
-------------------------------------------------------------------
Mon Mar 5 07:01:47 CET 2012 - jeffm@suse.com
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit f4b95ae
-------------------------------------------------------------------
Mon Mar 5 05:35:06 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6. Previous commit was configs.
- commit 639167f
-------------------------------------------------------------------
Mon Mar 5 05:14:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6.
- commit ebec13a
-------------------------------------------------------------------
Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
@ -24,6 +242,13 @@ Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit 2c205b4
-------------------------------------------------------------------
Sun Mar 4 14:21:47 CET 2012 - jslaby@suse.cz
- Update config files.
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit adb37b7
-------------------------------------------------------------------
Thu Mar 1 18:15:58 CET 2012 - jslaby@suse.cz
@ -38,6 +263,14 @@ Thu Mar 1 10:00:42 CET 2012 - jslaby@suse.cz
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit 82a8603
-------------------------------------------------------------------
Wed Feb 29 15:22:34 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc5 and c/s 1157.
- config.conf: Re-enable Xen configs.
- Update config files.
- commit f225622
-------------------------------------------------------------------
Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
@ -47,6 +280,12 @@ Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
same fix will be ported here.
- commit 2bcad53
-------------------------------------------------------------------
Mon Feb 27 03:38:40 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc5.
- commit 0b7f048
-------------------------------------------------------------------
Sun Feb 26 14:19:13 CET 2012 - jslaby@suse.cz
@ -75,6 +314,12 @@ Tue Feb 21 11:56:39 CET 2012 - jslaby@suse.cz
- Linux 3.2.7.
- commit 3d38d11
-------------------------------------------------------------------
Sun Feb 19 18:00:16 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc4.
- commit 8831dca
-------------------------------------------------------------------
Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
@ -83,6 +328,12 @@ Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
patches.fixes/PM-Hibernate-Fix-s2disk-regression-related-to-freezi.patch.
- commit 264e0d4
-------------------------------------------------------------------
Mon Feb 13 19:33:57 CET 2012 - trenn@suse.de
- cpufreq/gx: Fix the compile error.
- commit 4ba1d8b
-------------------------------------------------------------------
Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
@ -90,6 +341,93 @@ Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
Enable brcm80211 wireless driver.
- commit 70a4760
-------------------------------------------------------------------
Mon Feb 13 17:23:49 CET 2012 - mmarek@suse.cz
- nvme: Mark as broken on x86_32.
- commit 28ad576
-------------------------------------------------------------------
Sun Feb 12 18:15:10 CET 2012 - trenn@suse.de
- Add driver auto probing for x86 features v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Fix overrun check in arch_print_cpu_modalias()
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- crypto: Add support for x86 cpuid
auto loading for x86 crypto drivers
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Clean up modalias feature matching
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel-idle: convert to x86_cpu_id auto probing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert via-cputemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k7: Fix CPU family number
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: Load acpi-cpufreq from processor driver automatically
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Revert change of auto_demotion_flags for Nehalem
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert coretemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k6: Really enable auto-loading
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- X86: Introduce HW-Pstate scattered cpuid feature
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- cpufreq: Add support for x86 cpuinfo auto loading v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86: autoload microcode driver on Intel and AMD systems v2
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- CPU: Introduce ARCH_HAS_CPU_AUTOPROBE and X86 parts
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: remove duplicated lines of merging
problems with acpi_processor_start
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- Update config files.
- commit 6efe9b5
-------------------------------------------------------------------
Fri Feb 10 12:03:36 CET 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Build x86 packages as i686, except for
-default (bnc#745632). KMPs are still built as i586.
- commit 88a632b
-------------------------------------------------------------------
Thu Feb 9 15:57:54 CET 2012 - jeffm@suse.com
- Update to 3.3-rc3.
- commit 07ec27c
-------------------------------------------------------------------
Thu Feb 9 12:53:26 CET 2012 - agraf@suse.de
- armv7l: Update config files.
- commit d223353
-------------------------------------------------------------------
Thu Feb 9 12:48:21 CET 2012 - agraf@suse.de
- armv7l: config: integrate bmwiedemann's updates to make it usable
- commit 76d12ed
-------------------------------------------------------------------
Tue Feb 7 18:28:41 CET 2012 - jeffm@suse.com
- Update vanilla config files.
- commit fd3673f
-------------------------------------------------------------------
Tue Feb 7 18:12:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc2.
- Eliminated 5 patches.
- Xen is disabled.
- commit d017ea1
-------------------------------------------------------------------
Sat Feb 4 15:19:04 CET 2012 - jslaby@suse.cz

View File

@ -17,14 +17,15 @@
# norootforbuild
%define srcversion 3.2
%define patchversion 3.2.10
%define srcversion 3.3
%define patchversion 3.3.0
%define variant %{nil}
%define vanilla_only 0
%include %_sourcedir/kernel-spec-macros
%define build_flavor desktop
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
@ -56,7 +57,7 @@
Name: kernel-desktop
Summary: Kernel optimized for the desktop
Version: 3.2.10
Version: 3.3.0
Release: 0
License: GPL-2.0
Group: System/Kernel
@ -193,6 +194,17 @@ Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: %ix86 x86_64
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
%if ! %build_default
BuildArch: i686
# KMPs are always built as i586, because rpm does not allow to build
# subpackages for different architectures. Therefore, we change the
# /usr/src/linux-obj/<arch> symlink to i586.
%define kmp_target_cpu i586
%endif
%endif
# These files are found in the kernel-source package:
NoSource: 0
@ -636,9 +648,9 @@ if [ %CONFIG_MODULES = y ]; then
# Some architecture's $(uname -m) output is different from the ARCH
# parameter that needs to be passed to kbuild. Create symlinks from
# $(uname -m) to the ARCH directory.
if [ ! -e %rpm_install_dir/%_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%_target_cpu
if [ ! -e %rpm_install_dir/%kmp_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%kmp_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%kmp_target_cpu
fi
# We were building in %my_builddir/linux-%srcversion, but the sources will
@ -939,9 +951,9 @@ kernel module packages) against the %build_flavor flavor of the kernel.
%dir /usr/src/linux-obj/%cpu_arch
%ghost /usr/src/linux-obj/%cpu_arch_flavor
%obj_install_dir/%cpu_arch_flavor
%if %_target_cpu != %cpu_arch
%obj_install_dir/%_target_cpu
/usr/src/linux-obj/%_target_cpu
%if %kmp_target_cpu != %cpu_arch
%obj_install_dir/%kmp_target_cpu
/usr/src/linux-obj/%kmp_target_cpu
%endif
%endif

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon Mar 19 11:16:34 CET 2012 - jslaby@suse.cz
- Update (vanilla) config files.
- commit 55a0a56
-------------------------------------------------------------------
Mon Mar 19 11:07:00 CET 2012 - jslaby@suse.cz
- Delete
patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch.
- Delete patches.arch/dell_optiplex_990_fix_reboot.patch.
- Delete
patches.drivers/alsa-hda-0004-Add-missing-static-ADC-tables-for-ALC269-qu.
- Delete patches.drivers/libata-unlock-hpa-by-default.
- Delete patches.fixes/scsi-add-tgps-setting.
- Delete patches.fixes/scsi-dh-rdac-add-stk.
- Delete patches.suse/dm-mpath-evaluate-request-result-and-sense.
- Delete patches.suse/richacl-fix.
Remove unused patches.
- commit 2cbabfe
-------------------------------------------------------------------
Mon Mar 19 06:27:04 CET 2012 - jeffm@suse.com
- Update to 3.3-final.
- commit a9ab64a
-------------------------------------------------------------------
Fri Mar 16 07:23:33 CET 2012 - ohering@suse.de
- Update bugnumber patches.suse/sd_init.mark_majors_busy.patch (bnc#744658).
- commit e60f2c3
-------------------------------------------------------------------
Tue Mar 13 11:07:58 CET 2012 - jslaby@suse.cz
@ -17,6 +51,190 @@ Mon Mar 12 17:02:51 CET 2012 - jslaby@suse.cz
request_irq() (bnc#750106).
- commit 4bff877
-------------------------------------------------------------------
Mon Mar 12 16:35:36 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc7 and c/s 1163.
- commit 0054c83
-------------------------------------------------------------------
Mon Mar 12 15:26:55 CET 2012 - ohering@suse.de
- Staging: hv: storvsc: Cleanup some comments.
- Staging: hv: storvsc: Cleanup storvsc_probe().
- Staging: hv: storvsc: Cleanup storvsc_queuecommand().
- Staging: hv: storvsc: Introduce defines for srb status codes.
- Staging: hv: storvsc: Cleanup storvsc_host_reset_handler().
- Staging: hv: storvsc: Move and cleanup storvsc_remove().
- Staging: hv: storvsc: Add a comment to explain life-cycle
management.
- Staging: hv: storvsc: Get rid of the on_io_completion in
hv_storvsc_request.
- Staging: hv: storvsc: Rename the context field in
hv_storvsc_request.
- Staging: hv: storvsc: Miscellaneous cleanup of storvsc driver.
- Staging: hv: storvsc: Cleanup the code for generating protocol
version.
- Staging: hv: storvsc: Cleanup some protocol related constants.
- Staging: hv: storvsc: Get rid of some unused defines.
- Staging: hv: storvsc: Consolidate the request structure.
- Staging: hv: storvsc: Consolidate all the wire protocol
definitions.
- Staging: hv: storvsc: Move the storage driver out of the
staging area.
- Rename patches.suse/staging-hv-pata_piix-ignore-disks.patch to
patches.suse/suse-hv-pata_piix-ignore-disks.patch
- commit 7487199
-------------------------------------------------------------------
Mon Mar 12 03:43:53 CET 2012 - jeffm@suse.com
- Update to 3.3-rc7.
- commit 81a18ea
-------------------------------------------------------------------
Sun Mar 11 00:32:36 CET 2012 - jeffm@suse.com
- btrfs: Handle EIO.
- btrfs: add varargs to btrfs_error.
- btrfs: Remove BUG_ON from __finish_chunk_alloc().
- btrfs: Remove BUG_ON from __btrfs_alloc_chunk().
- btrfs: Don't BUG_ON insert errors in btrfs_alloc_dev_extent().
- btrfs: Go readonly on tree errors in balance_level.
- btrfs: Don't BUG_ON errors from update_ref_for_cow().
- btrfs: Go readonly on bad extent refs in update_ref_for_cow().
- btrfs: Don't BUG_ON errors in __finish_chunk_alloc().
- btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range().
- btrfs: Don't BUG_ON() errors in update_ref_for_cow().
- btrfs: Don't BUG_ON errors from btrfs_create_subvol_root().
- btrfs: btrfs_drop_snapshot should return int.
- brfs: split extent_state ops.
- btrfs: drop gfp_t from lock_extent.
- btrfs: scrub functions should return void.
- btrfs: btrfs_set_item_key_safe should BUG on error and return
void.
- btrfs: Add extent_state alloc/free tracing.
- btrfs: btrfs_destroy_pending_snapshots should return void.
- btrfs: btrfs_destroy_ordered_extents should return void.
- btrfs: btrfs_destroy_ordered_operations should return void.
- btrfs: del_fs_roots should return void.
- btrfs: btrfs_free_fs_root should return void.
- btrfs: btrfs_add_ordered_sum should return void.
- btrfs: btrfs_add_ordered_operation should return void.
- btrfs: btrfs_run_ordered_operations should return void.
- btrfs: btrfs_wait_ordered_range should return void.
- btrfs: btrfs_wait_ordered_extents should return void.
- btrfs: __btrfs_remove_ordered_extent should return void.
- btrfs: btrfs_put_ordered_extent should return void.
- btrfs: update_inline_extent_backref should return void.
- btrfs: copy_for_split should return void.
- btrfs: end_compressed_writeback should return void.
- btrfs: btrfs_extend_item should return void.
- btrfs: btrfs_truncate_item should return void.
- btrfs: add_delayed_data_ref should return void.
- btrfs: add_delayed_tree_ref should return void.
- btrfs: add_delayed_ref_head should return void.
- btrfs: insert_ptr should return void.
- btrfs: del_ptr should return void.
- btrfs: setup_items_for_insert should return void.
- btrfs: fixup_low_keys should return void.
- btrfs: __add_reloc_root error push-up.
- btrfs: ->submit_bio_hook error push-up.
- btrfs: Factor out tree->ops->merge_bio_hook call.
- btrfs: Simplify btrfs_submit_bio_hook.
- btrfs: Fix kfree of member instead of structure.
- btrfs: setup_inline_extent_backref should return void.
- btrfs: btrfs_set_block_group_rw should return void.
- btrfs: btrfs_prepare_extent_commit should return void.
- btrfs: btrfs_destroy_delalloc_inodes should return void.
- btrfs: __setup_root should return void.
- btrfs: btrfs_invalidate_inodes should return void.
- btrfs: btrfs_init_compress should return void.
- btrfs: wait_for_writer should return void.
- btrfs: btrfs_end_log_trans should return void.
- btrfs: btrfs_requeue_work should return void.
- btrfs: btrfs_stop_workers should return void.
- btrfs: run_ordered_completions should return void.
- btrfs: fill_device_from_item should return void.
- btrfs: schedule_bio should return void.
- btrfs: btrfs_close_extra_devices should return void.
- btrfs: run_scheduled_bios should return void.
- btrfs: btrfs_cleanup_fs_uuids should return void.
- btrfs: clear_extent_buffer_dirty should return void.
- btrfs: check_page_writeback should return void.
- btrfs: check_page_locked should return void.
- btrfs: check_page_uptodate should return void.
- btrfs: __unlock_for_delalloc should return void.
- btrfs: wait_extent_bit should return void.
- btrfs: wait_on_state should return void.
- btrfs: btrfs_update_root error push-up.
- btrfs: find_and_setup_root error push-up.
- btrfs: Remove set bits return from clear_extent_bit.
- btrfs: avoid NULL deref in btrfs_reserve_extent with
DEBUG_ENOSPC.
- btrfs: clean_tree_block should panic on observed memory
corruption and return void.
- btrfs: btrfs_tree_{,un}lock should return void.
- btrfs: Simplify btrfs_insert_root.
- btrfs: Panic on bad rbtree operations.
- btrfs: Catch locking failures in {set,clear,convert}_extent_bit.
- btrfs: Add btrfs_panic().
- commit fd31baf
-------------------------------------------------------------------
Fri Mar 9 15:02:13 CET 2012 - ohering@suse.de
- mark busy sd majors as allocated (bug#744658).
- commit b2a640b
-------------------------------------------------------------------
Thu Mar 8 13:37:39 CET 2012 - mmarek@suse.cz
- Fix vanilla config files.
- commit b343c8a
-------------------------------------------------------------------
Thu Mar 8 11:56:26 CET 2012 - mmarek@suse.cz
- Delete patches.rpmify/nvme-broken, nvme builds again on 32bit.
- commit d60272f
-------------------------------------------------------------------
Thu Mar 8 11:34:18 CET 2012 - jbeulich@novell.com
- patches.suse/crasher-26.diff: Eliminate build warnings.
- commit 67c3c8d
-------------------------------------------------------------------
Thu Mar 8 10:55:04 CET 2012 - agraf@suse.de
- armv7l: config: omap: disable HDMI output (breaks build)
- commit 6a871bd
-------------------------------------------------------------------
Tue Mar 6 20:02:14 CET 2012 - agraf@suse.de
- armv7l: omap2plus: Enable TIDSPBRIDGE and SND codecs
- commit 0d8ec4d
-------------------------------------------------------------------
Mon Mar 5 07:01:47 CET 2012 - jeffm@suse.com
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit f4b95ae
-------------------------------------------------------------------
Mon Mar 5 05:35:06 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6. Previous commit was configs.
- commit 639167f
-------------------------------------------------------------------
Mon Mar 5 05:14:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6.
- commit ebec13a
-------------------------------------------------------------------
Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
@ -24,6 +242,13 @@ Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit 2c205b4
-------------------------------------------------------------------
Sun Mar 4 14:21:47 CET 2012 - jslaby@suse.cz
- Update config files.
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit adb37b7
-------------------------------------------------------------------
Thu Mar 1 18:15:58 CET 2012 - jslaby@suse.cz
@ -38,6 +263,14 @@ Thu Mar 1 10:00:42 CET 2012 - jslaby@suse.cz
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit 82a8603
-------------------------------------------------------------------
Wed Feb 29 15:22:34 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc5 and c/s 1157.
- config.conf: Re-enable Xen configs.
- Update config files.
- commit f225622
-------------------------------------------------------------------
Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
@ -47,6 +280,12 @@ Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
same fix will be ported here.
- commit 2bcad53
-------------------------------------------------------------------
Mon Feb 27 03:38:40 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc5.
- commit 0b7f048
-------------------------------------------------------------------
Sun Feb 26 14:19:13 CET 2012 - jslaby@suse.cz
@ -75,6 +314,12 @@ Tue Feb 21 11:56:39 CET 2012 - jslaby@suse.cz
- Linux 3.2.7.
- commit 3d38d11
-------------------------------------------------------------------
Sun Feb 19 18:00:16 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc4.
- commit 8831dca
-------------------------------------------------------------------
Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
@ -83,6 +328,12 @@ Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
patches.fixes/PM-Hibernate-Fix-s2disk-regression-related-to-freezi.patch.
- commit 264e0d4
-------------------------------------------------------------------
Mon Feb 13 19:33:57 CET 2012 - trenn@suse.de
- cpufreq/gx: Fix the compile error.
- commit 4ba1d8b
-------------------------------------------------------------------
Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
@ -90,6 +341,93 @@ Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
Enable brcm80211 wireless driver.
- commit 70a4760
-------------------------------------------------------------------
Mon Feb 13 17:23:49 CET 2012 - mmarek@suse.cz
- nvme: Mark as broken on x86_32.
- commit 28ad576
-------------------------------------------------------------------
Sun Feb 12 18:15:10 CET 2012 - trenn@suse.de
- Add driver auto probing for x86 features v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Fix overrun check in arch_print_cpu_modalias()
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- crypto: Add support for x86 cpuid
auto loading for x86 crypto drivers
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Clean up modalias feature matching
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel-idle: convert to x86_cpu_id auto probing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert via-cputemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k7: Fix CPU family number
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: Load acpi-cpufreq from processor driver automatically
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Revert change of auto_demotion_flags for Nehalem
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert coretemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k6: Really enable auto-loading
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- X86: Introduce HW-Pstate scattered cpuid feature
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- cpufreq: Add support for x86 cpuinfo auto loading v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86: autoload microcode driver on Intel and AMD systems v2
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- CPU: Introduce ARCH_HAS_CPU_AUTOPROBE and X86 parts
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: remove duplicated lines of merging
problems with acpi_processor_start
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- Update config files.
- commit 6efe9b5
-------------------------------------------------------------------
Fri Feb 10 12:03:36 CET 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Build x86 packages as i686, except for
-default (bnc#745632). KMPs are still built as i586.
- commit 88a632b
-------------------------------------------------------------------
Thu Feb 9 15:57:54 CET 2012 - jeffm@suse.com
- Update to 3.3-rc3.
- commit 07ec27c
-------------------------------------------------------------------
Thu Feb 9 12:53:26 CET 2012 - agraf@suse.de
- armv7l: Update config files.
- commit d223353
-------------------------------------------------------------------
Thu Feb 9 12:48:21 CET 2012 - agraf@suse.de
- armv7l: config: integrate bmwiedemann's updates to make it usable
- commit 76d12ed
-------------------------------------------------------------------
Tue Feb 7 18:28:41 CET 2012 - jeffm@suse.com
- Update vanilla config files.
- commit fd3673f
-------------------------------------------------------------------
Tue Feb 7 18:12:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc2.
- Eliminated 5 patches.
- Xen is disabled.
- commit d017ea1
-------------------------------------------------------------------
Sat Feb 4 15:19:04 CET 2012 - jslaby@suse.cz

View File

@ -17,14 +17,14 @@
# norootforbuild
%define patchversion 3.2.10
%define patchversion 3.3.0
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
Name: kernel-docs
Summary: Kernel Documentation
Version: 3.2.10
Version: 3.3.0
Release: 0
BuildRequires: docbook-toys docbook-utils ghostscript_any libjpeg-devel texlive transfig xmlto xorg-x11-devel
BuildRequires: kernel-source%variant

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon Mar 19 11:16:34 CET 2012 - jslaby@suse.cz
- Update (vanilla) config files.
- commit 55a0a56
-------------------------------------------------------------------
Mon Mar 19 11:07:00 CET 2012 - jslaby@suse.cz
- Delete
patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch.
- Delete patches.arch/dell_optiplex_990_fix_reboot.patch.
- Delete
patches.drivers/alsa-hda-0004-Add-missing-static-ADC-tables-for-ALC269-qu.
- Delete patches.drivers/libata-unlock-hpa-by-default.
- Delete patches.fixes/scsi-add-tgps-setting.
- Delete patches.fixes/scsi-dh-rdac-add-stk.
- Delete patches.suse/dm-mpath-evaluate-request-result-and-sense.
- Delete patches.suse/richacl-fix.
Remove unused patches.
- commit 2cbabfe
-------------------------------------------------------------------
Mon Mar 19 06:27:04 CET 2012 - jeffm@suse.com
- Update to 3.3-final.
- commit a9ab64a
-------------------------------------------------------------------
Fri Mar 16 07:23:33 CET 2012 - ohering@suse.de
- Update bugnumber patches.suse/sd_init.mark_majors_busy.patch (bnc#744658).
- commit e60f2c3
-------------------------------------------------------------------
Tue Mar 13 11:07:58 CET 2012 - jslaby@suse.cz
@ -17,6 +51,190 @@ Mon Mar 12 17:02:51 CET 2012 - jslaby@suse.cz
request_irq() (bnc#750106).
- commit 4bff877
-------------------------------------------------------------------
Mon Mar 12 16:35:36 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc7 and c/s 1163.
- commit 0054c83
-------------------------------------------------------------------
Mon Mar 12 15:26:55 CET 2012 - ohering@suse.de
- Staging: hv: storvsc: Cleanup some comments.
- Staging: hv: storvsc: Cleanup storvsc_probe().
- Staging: hv: storvsc: Cleanup storvsc_queuecommand().
- Staging: hv: storvsc: Introduce defines for srb status codes.
- Staging: hv: storvsc: Cleanup storvsc_host_reset_handler().
- Staging: hv: storvsc: Move and cleanup storvsc_remove().
- Staging: hv: storvsc: Add a comment to explain life-cycle
management.
- Staging: hv: storvsc: Get rid of the on_io_completion in
hv_storvsc_request.
- Staging: hv: storvsc: Rename the context field in
hv_storvsc_request.
- Staging: hv: storvsc: Miscellaneous cleanup of storvsc driver.
- Staging: hv: storvsc: Cleanup the code for generating protocol
version.
- Staging: hv: storvsc: Cleanup some protocol related constants.
- Staging: hv: storvsc: Get rid of some unused defines.
- Staging: hv: storvsc: Consolidate the request structure.
- Staging: hv: storvsc: Consolidate all the wire protocol
definitions.
- Staging: hv: storvsc: Move the storage driver out of the
staging area.
- Rename patches.suse/staging-hv-pata_piix-ignore-disks.patch to
patches.suse/suse-hv-pata_piix-ignore-disks.patch
- commit 7487199
-------------------------------------------------------------------
Mon Mar 12 03:43:53 CET 2012 - jeffm@suse.com
- Update to 3.3-rc7.
- commit 81a18ea
-------------------------------------------------------------------
Sun Mar 11 00:32:36 CET 2012 - jeffm@suse.com
- btrfs: Handle EIO.
- btrfs: add varargs to btrfs_error.
- btrfs: Remove BUG_ON from __finish_chunk_alloc().
- btrfs: Remove BUG_ON from __btrfs_alloc_chunk().
- btrfs: Don't BUG_ON insert errors in btrfs_alloc_dev_extent().
- btrfs: Go readonly on tree errors in balance_level.
- btrfs: Don't BUG_ON errors from update_ref_for_cow().
- btrfs: Go readonly on bad extent refs in update_ref_for_cow().
- btrfs: Don't BUG_ON errors in __finish_chunk_alloc().
- btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range().
- btrfs: Don't BUG_ON() errors in update_ref_for_cow().
- btrfs: Don't BUG_ON errors from btrfs_create_subvol_root().
- btrfs: btrfs_drop_snapshot should return int.
- brfs: split extent_state ops.
- btrfs: drop gfp_t from lock_extent.
- btrfs: scrub functions should return void.
- btrfs: btrfs_set_item_key_safe should BUG on error and return
void.
- btrfs: Add extent_state alloc/free tracing.
- btrfs: btrfs_destroy_pending_snapshots should return void.
- btrfs: btrfs_destroy_ordered_extents should return void.
- btrfs: btrfs_destroy_ordered_operations should return void.
- btrfs: del_fs_roots should return void.
- btrfs: btrfs_free_fs_root should return void.
- btrfs: btrfs_add_ordered_sum should return void.
- btrfs: btrfs_add_ordered_operation should return void.
- btrfs: btrfs_run_ordered_operations should return void.
- btrfs: btrfs_wait_ordered_range should return void.
- btrfs: btrfs_wait_ordered_extents should return void.
- btrfs: __btrfs_remove_ordered_extent should return void.
- btrfs: btrfs_put_ordered_extent should return void.
- btrfs: update_inline_extent_backref should return void.
- btrfs: copy_for_split should return void.
- btrfs: end_compressed_writeback should return void.
- btrfs: btrfs_extend_item should return void.
- btrfs: btrfs_truncate_item should return void.
- btrfs: add_delayed_data_ref should return void.
- btrfs: add_delayed_tree_ref should return void.
- btrfs: add_delayed_ref_head should return void.
- btrfs: insert_ptr should return void.
- btrfs: del_ptr should return void.
- btrfs: setup_items_for_insert should return void.
- btrfs: fixup_low_keys should return void.
- btrfs: __add_reloc_root error push-up.
- btrfs: ->submit_bio_hook error push-up.
- btrfs: Factor out tree->ops->merge_bio_hook call.
- btrfs: Simplify btrfs_submit_bio_hook.
- btrfs: Fix kfree of member instead of structure.
- btrfs: setup_inline_extent_backref should return void.
- btrfs: btrfs_set_block_group_rw should return void.
- btrfs: btrfs_prepare_extent_commit should return void.
- btrfs: btrfs_destroy_delalloc_inodes should return void.
- btrfs: __setup_root should return void.
- btrfs: btrfs_invalidate_inodes should return void.
- btrfs: btrfs_init_compress should return void.
- btrfs: wait_for_writer should return void.
- btrfs: btrfs_end_log_trans should return void.
- btrfs: btrfs_requeue_work should return void.
- btrfs: btrfs_stop_workers should return void.
- btrfs: run_ordered_completions should return void.
- btrfs: fill_device_from_item should return void.
- btrfs: schedule_bio should return void.
- btrfs: btrfs_close_extra_devices should return void.
- btrfs: run_scheduled_bios should return void.
- btrfs: btrfs_cleanup_fs_uuids should return void.
- btrfs: clear_extent_buffer_dirty should return void.
- btrfs: check_page_writeback should return void.
- btrfs: check_page_locked should return void.
- btrfs: check_page_uptodate should return void.
- btrfs: __unlock_for_delalloc should return void.
- btrfs: wait_extent_bit should return void.
- btrfs: wait_on_state should return void.
- btrfs: btrfs_update_root error push-up.
- btrfs: find_and_setup_root error push-up.
- btrfs: Remove set bits return from clear_extent_bit.
- btrfs: avoid NULL deref in btrfs_reserve_extent with
DEBUG_ENOSPC.
- btrfs: clean_tree_block should panic on observed memory
corruption and return void.
- btrfs: btrfs_tree_{,un}lock should return void.
- btrfs: Simplify btrfs_insert_root.
- btrfs: Panic on bad rbtree operations.
- btrfs: Catch locking failures in {set,clear,convert}_extent_bit.
- btrfs: Add btrfs_panic().
- commit fd31baf
-------------------------------------------------------------------
Fri Mar 9 15:02:13 CET 2012 - ohering@suse.de
- mark busy sd majors as allocated (bug#744658).
- commit b2a640b
-------------------------------------------------------------------
Thu Mar 8 13:37:39 CET 2012 - mmarek@suse.cz
- Fix vanilla config files.
- commit b343c8a
-------------------------------------------------------------------
Thu Mar 8 11:56:26 CET 2012 - mmarek@suse.cz
- Delete patches.rpmify/nvme-broken, nvme builds again on 32bit.
- commit d60272f
-------------------------------------------------------------------
Thu Mar 8 11:34:18 CET 2012 - jbeulich@novell.com
- patches.suse/crasher-26.diff: Eliminate build warnings.
- commit 67c3c8d
-------------------------------------------------------------------
Thu Mar 8 10:55:04 CET 2012 - agraf@suse.de
- armv7l: config: omap: disable HDMI output (breaks build)
- commit 6a871bd
-------------------------------------------------------------------
Tue Mar 6 20:02:14 CET 2012 - agraf@suse.de
- armv7l: omap2plus: Enable TIDSPBRIDGE and SND codecs
- commit 0d8ec4d
-------------------------------------------------------------------
Mon Mar 5 07:01:47 CET 2012 - jeffm@suse.com
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit f4b95ae
-------------------------------------------------------------------
Mon Mar 5 05:35:06 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6. Previous commit was configs.
- commit 639167f
-------------------------------------------------------------------
Mon Mar 5 05:14:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6.
- commit ebec13a
-------------------------------------------------------------------
Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
@ -24,6 +242,13 @@ Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit 2c205b4
-------------------------------------------------------------------
Sun Mar 4 14:21:47 CET 2012 - jslaby@suse.cz
- Update config files.
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit adb37b7
-------------------------------------------------------------------
Thu Mar 1 18:15:58 CET 2012 - jslaby@suse.cz
@ -38,6 +263,14 @@ Thu Mar 1 10:00:42 CET 2012 - jslaby@suse.cz
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit 82a8603
-------------------------------------------------------------------
Wed Feb 29 15:22:34 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc5 and c/s 1157.
- config.conf: Re-enable Xen configs.
- Update config files.
- commit f225622
-------------------------------------------------------------------
Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
@ -47,6 +280,12 @@ Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
same fix will be ported here.
- commit 2bcad53
-------------------------------------------------------------------
Mon Feb 27 03:38:40 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc5.
- commit 0b7f048
-------------------------------------------------------------------
Sun Feb 26 14:19:13 CET 2012 - jslaby@suse.cz
@ -75,6 +314,12 @@ Tue Feb 21 11:56:39 CET 2012 - jslaby@suse.cz
- Linux 3.2.7.
- commit 3d38d11
-------------------------------------------------------------------
Sun Feb 19 18:00:16 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc4.
- commit 8831dca
-------------------------------------------------------------------
Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
@ -83,6 +328,12 @@ Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
patches.fixes/PM-Hibernate-Fix-s2disk-regression-related-to-freezi.patch.
- commit 264e0d4
-------------------------------------------------------------------
Mon Feb 13 19:33:57 CET 2012 - trenn@suse.de
- cpufreq/gx: Fix the compile error.
- commit 4ba1d8b
-------------------------------------------------------------------
Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
@ -90,6 +341,93 @@ Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
Enable brcm80211 wireless driver.
- commit 70a4760
-------------------------------------------------------------------
Mon Feb 13 17:23:49 CET 2012 - mmarek@suse.cz
- nvme: Mark as broken on x86_32.
- commit 28ad576
-------------------------------------------------------------------
Sun Feb 12 18:15:10 CET 2012 - trenn@suse.de
- Add driver auto probing for x86 features v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Fix overrun check in arch_print_cpu_modalias()
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- crypto: Add support for x86 cpuid
auto loading for x86 crypto drivers
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Clean up modalias feature matching
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel-idle: convert to x86_cpu_id auto probing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert via-cputemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k7: Fix CPU family number
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: Load acpi-cpufreq from processor driver automatically
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Revert change of auto_demotion_flags for Nehalem
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert coretemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k6: Really enable auto-loading
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- X86: Introduce HW-Pstate scattered cpuid feature
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- cpufreq: Add support for x86 cpuinfo auto loading v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86: autoload microcode driver on Intel and AMD systems v2
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- CPU: Introduce ARCH_HAS_CPU_AUTOPROBE and X86 parts
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: remove duplicated lines of merging
problems with acpi_processor_start
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- Update config files.
- commit 6efe9b5
-------------------------------------------------------------------
Fri Feb 10 12:03:36 CET 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Build x86 packages as i686, except for
-default (bnc#745632). KMPs are still built as i586.
- commit 88a632b
-------------------------------------------------------------------
Thu Feb 9 15:57:54 CET 2012 - jeffm@suse.com
- Update to 3.3-rc3.
- commit 07ec27c
-------------------------------------------------------------------
Thu Feb 9 12:53:26 CET 2012 - agraf@suse.de
- armv7l: Update config files.
- commit d223353
-------------------------------------------------------------------
Thu Feb 9 12:48:21 CET 2012 - agraf@suse.de
- armv7l: config: integrate bmwiedemann's updates to make it usable
- commit 76d12ed
-------------------------------------------------------------------
Tue Feb 7 18:28:41 CET 2012 - jeffm@suse.com
- Update vanilla config files.
- commit fd3673f
-------------------------------------------------------------------
Tue Feb 7 18:12:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc2.
- Eliminated 5 patches.
- Xen is disabled.
- commit d017ea1
-------------------------------------------------------------------
Sat Feb 4 15:19:04 CET 2012 - jslaby@suse.cz

View File

@ -17,14 +17,15 @@
# norootforbuild
%define srcversion 3.2
%define patchversion 3.2.10
%define srcversion 3.3
%define patchversion 3.3.0
%define variant %{nil}
%define vanilla_only 0
%include %_sourcedir/kernel-spec-macros
%define build_flavor ec2
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
@ -56,7 +57,7 @@
Name: kernel-ec2
Summary: The Amazon EC2 Xen Kernel
Version: 3.2.10
Version: 3.3.0
Release: 0
License: GPL-2.0
Group: System/Kernel
@ -193,6 +194,17 @@ Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: %ix86 x86_64
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
%if ! %build_default
BuildArch: i686
# KMPs are always built as i586, because rpm does not allow to build
# subpackages for different architectures. Therefore, we change the
# /usr/src/linux-obj/<arch> symlink to i586.
%define kmp_target_cpu i586
%endif
%endif
# These files are found in the kernel-source package:
NoSource: 0
@ -626,9 +638,9 @@ if [ %CONFIG_MODULES = y ]; then
# Some architecture's $(uname -m) output is different from the ARCH
# parameter that needs to be passed to kbuild. Create symlinks from
# $(uname -m) to the ARCH directory.
if [ ! -e %rpm_install_dir/%_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%_target_cpu
if [ ! -e %rpm_install_dir/%kmp_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%kmp_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%kmp_target_cpu
fi
# We were building in %my_builddir/linux-%srcversion, but the sources will
@ -909,9 +921,9 @@ kernel module packages) against the %build_flavor flavor of the kernel.
%dir /usr/src/linux-obj/%cpu_arch
%ghost /usr/src/linux-obj/%cpu_arch_flavor
%obj_install_dir/%cpu_arch_flavor
%if %_target_cpu != %cpu_arch
%obj_install_dir/%_target_cpu
/usr/src/linux-obj/%_target_cpu
%if %kmp_target_cpu != %cpu_arch
%obj_install_dir/%kmp_target_cpu
/usr/src/linux-obj/%kmp_target_cpu
%endif
%endif

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon Mar 19 11:16:34 CET 2012 - jslaby@suse.cz
- Update (vanilla) config files.
- commit 55a0a56
-------------------------------------------------------------------
Mon Mar 19 11:07:00 CET 2012 - jslaby@suse.cz
- Delete
patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch.
- Delete patches.arch/dell_optiplex_990_fix_reboot.patch.
- Delete
patches.drivers/alsa-hda-0004-Add-missing-static-ADC-tables-for-ALC269-qu.
- Delete patches.drivers/libata-unlock-hpa-by-default.
- Delete patches.fixes/scsi-add-tgps-setting.
- Delete patches.fixes/scsi-dh-rdac-add-stk.
- Delete patches.suse/dm-mpath-evaluate-request-result-and-sense.
- Delete patches.suse/richacl-fix.
Remove unused patches.
- commit 2cbabfe
-------------------------------------------------------------------
Mon Mar 19 06:27:04 CET 2012 - jeffm@suse.com
- Update to 3.3-final.
- commit a9ab64a
-------------------------------------------------------------------
Fri Mar 16 07:23:33 CET 2012 - ohering@suse.de
- Update bugnumber patches.suse/sd_init.mark_majors_busy.patch (bnc#744658).
- commit e60f2c3
-------------------------------------------------------------------
Tue Mar 13 11:07:58 CET 2012 - jslaby@suse.cz
@ -17,6 +51,190 @@ Mon Mar 12 17:02:51 CET 2012 - jslaby@suse.cz
request_irq() (bnc#750106).
- commit 4bff877
-------------------------------------------------------------------
Mon Mar 12 16:35:36 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc7 and c/s 1163.
- commit 0054c83
-------------------------------------------------------------------
Mon Mar 12 15:26:55 CET 2012 - ohering@suse.de
- Staging: hv: storvsc: Cleanup some comments.
- Staging: hv: storvsc: Cleanup storvsc_probe().
- Staging: hv: storvsc: Cleanup storvsc_queuecommand().
- Staging: hv: storvsc: Introduce defines for srb status codes.
- Staging: hv: storvsc: Cleanup storvsc_host_reset_handler().
- Staging: hv: storvsc: Move and cleanup storvsc_remove().
- Staging: hv: storvsc: Add a comment to explain life-cycle
management.
- Staging: hv: storvsc: Get rid of the on_io_completion in
hv_storvsc_request.
- Staging: hv: storvsc: Rename the context field in
hv_storvsc_request.
- Staging: hv: storvsc: Miscellaneous cleanup of storvsc driver.
- Staging: hv: storvsc: Cleanup the code for generating protocol
version.
- Staging: hv: storvsc: Cleanup some protocol related constants.
- Staging: hv: storvsc: Get rid of some unused defines.
- Staging: hv: storvsc: Consolidate the request structure.
- Staging: hv: storvsc: Consolidate all the wire protocol
definitions.
- Staging: hv: storvsc: Move the storage driver out of the
staging area.
- Rename patches.suse/staging-hv-pata_piix-ignore-disks.patch to
patches.suse/suse-hv-pata_piix-ignore-disks.patch
- commit 7487199
-------------------------------------------------------------------
Mon Mar 12 03:43:53 CET 2012 - jeffm@suse.com
- Update to 3.3-rc7.
- commit 81a18ea
-------------------------------------------------------------------
Sun Mar 11 00:32:36 CET 2012 - jeffm@suse.com
- btrfs: Handle EIO.
- btrfs: add varargs to btrfs_error.
- btrfs: Remove BUG_ON from __finish_chunk_alloc().
- btrfs: Remove BUG_ON from __btrfs_alloc_chunk().
- btrfs: Don't BUG_ON insert errors in btrfs_alloc_dev_extent().
- btrfs: Go readonly on tree errors in balance_level.
- btrfs: Don't BUG_ON errors from update_ref_for_cow().
- btrfs: Go readonly on bad extent refs in update_ref_for_cow().
- btrfs: Don't BUG_ON errors in __finish_chunk_alloc().
- btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range().
- btrfs: Don't BUG_ON() errors in update_ref_for_cow().
- btrfs: Don't BUG_ON errors from btrfs_create_subvol_root().
- btrfs: btrfs_drop_snapshot should return int.
- brfs: split extent_state ops.
- btrfs: drop gfp_t from lock_extent.
- btrfs: scrub functions should return void.
- btrfs: btrfs_set_item_key_safe should BUG on error and return
void.
- btrfs: Add extent_state alloc/free tracing.
- btrfs: btrfs_destroy_pending_snapshots should return void.
- btrfs: btrfs_destroy_ordered_extents should return void.
- btrfs: btrfs_destroy_ordered_operations should return void.
- btrfs: del_fs_roots should return void.
- btrfs: btrfs_free_fs_root should return void.
- btrfs: btrfs_add_ordered_sum should return void.
- btrfs: btrfs_add_ordered_operation should return void.
- btrfs: btrfs_run_ordered_operations should return void.
- btrfs: btrfs_wait_ordered_range should return void.
- btrfs: btrfs_wait_ordered_extents should return void.
- btrfs: __btrfs_remove_ordered_extent should return void.
- btrfs: btrfs_put_ordered_extent should return void.
- btrfs: update_inline_extent_backref should return void.
- btrfs: copy_for_split should return void.
- btrfs: end_compressed_writeback should return void.
- btrfs: btrfs_extend_item should return void.
- btrfs: btrfs_truncate_item should return void.
- btrfs: add_delayed_data_ref should return void.
- btrfs: add_delayed_tree_ref should return void.
- btrfs: add_delayed_ref_head should return void.
- btrfs: insert_ptr should return void.
- btrfs: del_ptr should return void.
- btrfs: setup_items_for_insert should return void.
- btrfs: fixup_low_keys should return void.
- btrfs: __add_reloc_root error push-up.
- btrfs: ->submit_bio_hook error push-up.
- btrfs: Factor out tree->ops->merge_bio_hook call.
- btrfs: Simplify btrfs_submit_bio_hook.
- btrfs: Fix kfree of member instead of structure.
- btrfs: setup_inline_extent_backref should return void.
- btrfs: btrfs_set_block_group_rw should return void.
- btrfs: btrfs_prepare_extent_commit should return void.
- btrfs: btrfs_destroy_delalloc_inodes should return void.
- btrfs: __setup_root should return void.
- btrfs: btrfs_invalidate_inodes should return void.
- btrfs: btrfs_init_compress should return void.
- btrfs: wait_for_writer should return void.
- btrfs: btrfs_end_log_trans should return void.
- btrfs: btrfs_requeue_work should return void.
- btrfs: btrfs_stop_workers should return void.
- btrfs: run_ordered_completions should return void.
- btrfs: fill_device_from_item should return void.
- btrfs: schedule_bio should return void.
- btrfs: btrfs_close_extra_devices should return void.
- btrfs: run_scheduled_bios should return void.
- btrfs: btrfs_cleanup_fs_uuids should return void.
- btrfs: clear_extent_buffer_dirty should return void.
- btrfs: check_page_writeback should return void.
- btrfs: check_page_locked should return void.
- btrfs: check_page_uptodate should return void.
- btrfs: __unlock_for_delalloc should return void.
- btrfs: wait_extent_bit should return void.
- btrfs: wait_on_state should return void.
- btrfs: btrfs_update_root error push-up.
- btrfs: find_and_setup_root error push-up.
- btrfs: Remove set bits return from clear_extent_bit.
- btrfs: avoid NULL deref in btrfs_reserve_extent with
DEBUG_ENOSPC.
- btrfs: clean_tree_block should panic on observed memory
corruption and return void.
- btrfs: btrfs_tree_{,un}lock should return void.
- btrfs: Simplify btrfs_insert_root.
- btrfs: Panic on bad rbtree operations.
- btrfs: Catch locking failures in {set,clear,convert}_extent_bit.
- btrfs: Add btrfs_panic().
- commit fd31baf
-------------------------------------------------------------------
Fri Mar 9 15:02:13 CET 2012 - ohering@suse.de
- mark busy sd majors as allocated (bug#744658).
- commit b2a640b
-------------------------------------------------------------------
Thu Mar 8 13:37:39 CET 2012 - mmarek@suse.cz
- Fix vanilla config files.
- commit b343c8a
-------------------------------------------------------------------
Thu Mar 8 11:56:26 CET 2012 - mmarek@suse.cz
- Delete patches.rpmify/nvme-broken, nvme builds again on 32bit.
- commit d60272f
-------------------------------------------------------------------
Thu Mar 8 11:34:18 CET 2012 - jbeulich@novell.com
- patches.suse/crasher-26.diff: Eliminate build warnings.
- commit 67c3c8d
-------------------------------------------------------------------
Thu Mar 8 10:55:04 CET 2012 - agraf@suse.de
- armv7l: config: omap: disable HDMI output (breaks build)
- commit 6a871bd
-------------------------------------------------------------------
Tue Mar 6 20:02:14 CET 2012 - agraf@suse.de
- armv7l: omap2plus: Enable TIDSPBRIDGE and SND codecs
- commit 0d8ec4d
-------------------------------------------------------------------
Mon Mar 5 07:01:47 CET 2012 - jeffm@suse.com
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit f4b95ae
-------------------------------------------------------------------
Mon Mar 5 05:35:06 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6. Previous commit was configs.
- commit 639167f
-------------------------------------------------------------------
Mon Mar 5 05:14:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6.
- commit ebec13a
-------------------------------------------------------------------
Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
@ -24,6 +242,13 @@ Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit 2c205b4
-------------------------------------------------------------------
Sun Mar 4 14:21:47 CET 2012 - jslaby@suse.cz
- Update config files.
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit adb37b7
-------------------------------------------------------------------
Thu Mar 1 18:15:58 CET 2012 - jslaby@suse.cz
@ -38,6 +263,14 @@ Thu Mar 1 10:00:42 CET 2012 - jslaby@suse.cz
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit 82a8603
-------------------------------------------------------------------
Wed Feb 29 15:22:34 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc5 and c/s 1157.
- config.conf: Re-enable Xen configs.
- Update config files.
- commit f225622
-------------------------------------------------------------------
Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
@ -47,6 +280,12 @@ Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
same fix will be ported here.
- commit 2bcad53
-------------------------------------------------------------------
Mon Feb 27 03:38:40 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc5.
- commit 0b7f048
-------------------------------------------------------------------
Sun Feb 26 14:19:13 CET 2012 - jslaby@suse.cz
@ -75,6 +314,12 @@ Tue Feb 21 11:56:39 CET 2012 - jslaby@suse.cz
- Linux 3.2.7.
- commit 3d38d11
-------------------------------------------------------------------
Sun Feb 19 18:00:16 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc4.
- commit 8831dca
-------------------------------------------------------------------
Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
@ -83,6 +328,12 @@ Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
patches.fixes/PM-Hibernate-Fix-s2disk-regression-related-to-freezi.patch.
- commit 264e0d4
-------------------------------------------------------------------
Mon Feb 13 19:33:57 CET 2012 - trenn@suse.de
- cpufreq/gx: Fix the compile error.
- commit 4ba1d8b
-------------------------------------------------------------------
Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
@ -90,6 +341,93 @@ Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
Enable brcm80211 wireless driver.
- commit 70a4760
-------------------------------------------------------------------
Mon Feb 13 17:23:49 CET 2012 - mmarek@suse.cz
- nvme: Mark as broken on x86_32.
- commit 28ad576
-------------------------------------------------------------------
Sun Feb 12 18:15:10 CET 2012 - trenn@suse.de
- Add driver auto probing for x86 features v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Fix overrun check in arch_print_cpu_modalias()
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- crypto: Add support for x86 cpuid
auto loading for x86 crypto drivers
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Clean up modalias feature matching
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel-idle: convert to x86_cpu_id auto probing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert via-cputemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k7: Fix CPU family number
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: Load acpi-cpufreq from processor driver automatically
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Revert change of auto_demotion_flags for Nehalem
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert coretemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k6: Really enable auto-loading
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- X86: Introduce HW-Pstate scattered cpuid feature
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- cpufreq: Add support for x86 cpuinfo auto loading v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86: autoload microcode driver on Intel and AMD systems v2
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- CPU: Introduce ARCH_HAS_CPU_AUTOPROBE and X86 parts
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: remove duplicated lines of merging
problems with acpi_processor_start
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- Update config files.
- commit 6efe9b5
-------------------------------------------------------------------
Fri Feb 10 12:03:36 CET 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Build x86 packages as i686, except for
-default (bnc#745632). KMPs are still built as i586.
- commit 88a632b
-------------------------------------------------------------------
Thu Feb 9 15:57:54 CET 2012 - jeffm@suse.com
- Update to 3.3-rc3.
- commit 07ec27c
-------------------------------------------------------------------
Thu Feb 9 12:53:26 CET 2012 - agraf@suse.de
- armv7l: Update config files.
- commit d223353
-------------------------------------------------------------------
Thu Feb 9 12:48:21 CET 2012 - agraf@suse.de
- armv7l: config: integrate bmwiedemann's updates to make it usable
- commit 76d12ed
-------------------------------------------------------------------
Tue Feb 7 18:28:41 CET 2012 - jeffm@suse.com
- Update vanilla config files.
- commit fd3673f
-------------------------------------------------------------------
Tue Feb 7 18:12:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc2.
- Eliminated 5 patches.
- Xen is disabled.
- commit d017ea1
-------------------------------------------------------------------
Sat Feb 4 15:19:04 CET 2012 - jslaby@suse.cz

View File

@ -17,14 +17,15 @@
# norootforbuild
%define srcversion 3.2
%define patchversion 3.2.10
%define srcversion 3.3
%define patchversion 3.3.0
%define variant %{nil}
%define vanilla_only 0
%include %_sourcedir/kernel-spec-macros
%define build_flavor imx51
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
@ -56,7 +57,7 @@
Name: kernel-imx51
Summary: Kernel for Freescale's iMX SoC
Version: 3.2.10
Version: 3.3.0
Release: 0
License: GPL-2.0
Group: System/Kernel
@ -193,6 +194,17 @@ Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: armv7l
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
%if ! %build_default
BuildArch: i686
# KMPs are always built as i586, because rpm does not allow to build
# subpackages for different architectures. Therefore, we change the
# /usr/src/linux-obj/<arch> symlink to i586.
%define kmp_target_cpu i586
%endif
%endif
# These files are found in the kernel-source package:
NoSource: 0
@ -624,9 +636,9 @@ if [ %CONFIG_MODULES = y ]; then
# Some architecture's $(uname -m) output is different from the ARCH
# parameter that needs to be passed to kbuild. Create symlinks from
# $(uname -m) to the ARCH directory.
if [ ! -e %rpm_install_dir/%_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%_target_cpu
if [ ! -e %rpm_install_dir/%kmp_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%kmp_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%kmp_target_cpu
fi
# We were building in %my_builddir/linux-%srcversion, but the sources will
@ -903,9 +915,9 @@ kernel module packages) against the %build_flavor flavor of the kernel.
%dir /usr/src/linux-obj/%cpu_arch
%ghost /usr/src/linux-obj/%cpu_arch_flavor
%obj_install_dir/%cpu_arch_flavor
%if %_target_cpu != %cpu_arch
%obj_install_dir/%_target_cpu
/usr/src/linux-obj/%_target_cpu
%if %kmp_target_cpu != %cpu_arch
%obj_install_dir/%kmp_target_cpu
/usr/src/linux-obj/%kmp_target_cpu
%endif
%endif

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon Mar 19 11:16:34 CET 2012 - jslaby@suse.cz
- Update (vanilla) config files.
- commit 55a0a56
-------------------------------------------------------------------
Mon Mar 19 11:07:00 CET 2012 - jslaby@suse.cz
- Delete
patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch.
- Delete patches.arch/dell_optiplex_990_fix_reboot.patch.
- Delete
patches.drivers/alsa-hda-0004-Add-missing-static-ADC-tables-for-ALC269-qu.
- Delete patches.drivers/libata-unlock-hpa-by-default.
- Delete patches.fixes/scsi-add-tgps-setting.
- Delete patches.fixes/scsi-dh-rdac-add-stk.
- Delete patches.suse/dm-mpath-evaluate-request-result-and-sense.
- Delete patches.suse/richacl-fix.
Remove unused patches.
- commit 2cbabfe
-------------------------------------------------------------------
Mon Mar 19 06:27:04 CET 2012 - jeffm@suse.com
- Update to 3.3-final.
- commit a9ab64a
-------------------------------------------------------------------
Fri Mar 16 07:23:33 CET 2012 - ohering@suse.de
- Update bugnumber patches.suse/sd_init.mark_majors_busy.patch (bnc#744658).
- commit e60f2c3
-------------------------------------------------------------------
Tue Mar 13 11:07:58 CET 2012 - jslaby@suse.cz
@ -17,6 +51,190 @@ Mon Mar 12 17:02:51 CET 2012 - jslaby@suse.cz
request_irq() (bnc#750106).
- commit 4bff877
-------------------------------------------------------------------
Mon Mar 12 16:35:36 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc7 and c/s 1163.
- commit 0054c83
-------------------------------------------------------------------
Mon Mar 12 15:26:55 CET 2012 - ohering@suse.de
- Staging: hv: storvsc: Cleanup some comments.
- Staging: hv: storvsc: Cleanup storvsc_probe().
- Staging: hv: storvsc: Cleanup storvsc_queuecommand().
- Staging: hv: storvsc: Introduce defines for srb status codes.
- Staging: hv: storvsc: Cleanup storvsc_host_reset_handler().
- Staging: hv: storvsc: Move and cleanup storvsc_remove().
- Staging: hv: storvsc: Add a comment to explain life-cycle
management.
- Staging: hv: storvsc: Get rid of the on_io_completion in
hv_storvsc_request.
- Staging: hv: storvsc: Rename the context field in
hv_storvsc_request.
- Staging: hv: storvsc: Miscellaneous cleanup of storvsc driver.
- Staging: hv: storvsc: Cleanup the code for generating protocol
version.
- Staging: hv: storvsc: Cleanup some protocol related constants.
- Staging: hv: storvsc: Get rid of some unused defines.
- Staging: hv: storvsc: Consolidate the request structure.
- Staging: hv: storvsc: Consolidate all the wire protocol
definitions.
- Staging: hv: storvsc: Move the storage driver out of the
staging area.
- Rename patches.suse/staging-hv-pata_piix-ignore-disks.patch to
patches.suse/suse-hv-pata_piix-ignore-disks.patch
- commit 7487199
-------------------------------------------------------------------
Mon Mar 12 03:43:53 CET 2012 - jeffm@suse.com
- Update to 3.3-rc7.
- commit 81a18ea
-------------------------------------------------------------------
Sun Mar 11 00:32:36 CET 2012 - jeffm@suse.com
- btrfs: Handle EIO.
- btrfs: add varargs to btrfs_error.
- btrfs: Remove BUG_ON from __finish_chunk_alloc().
- btrfs: Remove BUG_ON from __btrfs_alloc_chunk().
- btrfs: Don't BUG_ON insert errors in btrfs_alloc_dev_extent().
- btrfs: Go readonly on tree errors in balance_level.
- btrfs: Don't BUG_ON errors from update_ref_for_cow().
- btrfs: Go readonly on bad extent refs in update_ref_for_cow().
- btrfs: Don't BUG_ON errors in __finish_chunk_alloc().
- btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range().
- btrfs: Don't BUG_ON() errors in update_ref_for_cow().
- btrfs: Don't BUG_ON errors from btrfs_create_subvol_root().
- btrfs: btrfs_drop_snapshot should return int.
- brfs: split extent_state ops.
- btrfs: drop gfp_t from lock_extent.
- btrfs: scrub functions should return void.
- btrfs: btrfs_set_item_key_safe should BUG on error and return
void.
- btrfs: Add extent_state alloc/free tracing.
- btrfs: btrfs_destroy_pending_snapshots should return void.
- btrfs: btrfs_destroy_ordered_extents should return void.
- btrfs: btrfs_destroy_ordered_operations should return void.
- btrfs: del_fs_roots should return void.
- btrfs: btrfs_free_fs_root should return void.
- btrfs: btrfs_add_ordered_sum should return void.
- btrfs: btrfs_add_ordered_operation should return void.
- btrfs: btrfs_run_ordered_operations should return void.
- btrfs: btrfs_wait_ordered_range should return void.
- btrfs: btrfs_wait_ordered_extents should return void.
- btrfs: __btrfs_remove_ordered_extent should return void.
- btrfs: btrfs_put_ordered_extent should return void.
- btrfs: update_inline_extent_backref should return void.
- btrfs: copy_for_split should return void.
- btrfs: end_compressed_writeback should return void.
- btrfs: btrfs_extend_item should return void.
- btrfs: btrfs_truncate_item should return void.
- btrfs: add_delayed_data_ref should return void.
- btrfs: add_delayed_tree_ref should return void.
- btrfs: add_delayed_ref_head should return void.
- btrfs: insert_ptr should return void.
- btrfs: del_ptr should return void.
- btrfs: setup_items_for_insert should return void.
- btrfs: fixup_low_keys should return void.
- btrfs: __add_reloc_root error push-up.
- btrfs: ->submit_bio_hook error push-up.
- btrfs: Factor out tree->ops->merge_bio_hook call.
- btrfs: Simplify btrfs_submit_bio_hook.
- btrfs: Fix kfree of member instead of structure.
- btrfs: setup_inline_extent_backref should return void.
- btrfs: btrfs_set_block_group_rw should return void.
- btrfs: btrfs_prepare_extent_commit should return void.
- btrfs: btrfs_destroy_delalloc_inodes should return void.
- btrfs: __setup_root should return void.
- btrfs: btrfs_invalidate_inodes should return void.
- btrfs: btrfs_init_compress should return void.
- btrfs: wait_for_writer should return void.
- btrfs: btrfs_end_log_trans should return void.
- btrfs: btrfs_requeue_work should return void.
- btrfs: btrfs_stop_workers should return void.
- btrfs: run_ordered_completions should return void.
- btrfs: fill_device_from_item should return void.
- btrfs: schedule_bio should return void.
- btrfs: btrfs_close_extra_devices should return void.
- btrfs: run_scheduled_bios should return void.
- btrfs: btrfs_cleanup_fs_uuids should return void.
- btrfs: clear_extent_buffer_dirty should return void.
- btrfs: check_page_writeback should return void.
- btrfs: check_page_locked should return void.
- btrfs: check_page_uptodate should return void.
- btrfs: __unlock_for_delalloc should return void.
- btrfs: wait_extent_bit should return void.
- btrfs: wait_on_state should return void.
- btrfs: btrfs_update_root error push-up.
- btrfs: find_and_setup_root error push-up.
- btrfs: Remove set bits return from clear_extent_bit.
- btrfs: avoid NULL deref in btrfs_reserve_extent with
DEBUG_ENOSPC.
- btrfs: clean_tree_block should panic on observed memory
corruption and return void.
- btrfs: btrfs_tree_{,un}lock should return void.
- btrfs: Simplify btrfs_insert_root.
- btrfs: Panic on bad rbtree operations.
- btrfs: Catch locking failures in {set,clear,convert}_extent_bit.
- btrfs: Add btrfs_panic().
- commit fd31baf
-------------------------------------------------------------------
Fri Mar 9 15:02:13 CET 2012 - ohering@suse.de
- mark busy sd majors as allocated (bug#744658).
- commit b2a640b
-------------------------------------------------------------------
Thu Mar 8 13:37:39 CET 2012 - mmarek@suse.cz
- Fix vanilla config files.
- commit b343c8a
-------------------------------------------------------------------
Thu Mar 8 11:56:26 CET 2012 - mmarek@suse.cz
- Delete patches.rpmify/nvme-broken, nvme builds again on 32bit.
- commit d60272f
-------------------------------------------------------------------
Thu Mar 8 11:34:18 CET 2012 - jbeulich@novell.com
- patches.suse/crasher-26.diff: Eliminate build warnings.
- commit 67c3c8d
-------------------------------------------------------------------
Thu Mar 8 10:55:04 CET 2012 - agraf@suse.de
- armv7l: config: omap: disable HDMI output (breaks build)
- commit 6a871bd
-------------------------------------------------------------------
Tue Mar 6 20:02:14 CET 2012 - agraf@suse.de
- armv7l: omap2plus: Enable TIDSPBRIDGE and SND codecs
- commit 0d8ec4d
-------------------------------------------------------------------
Mon Mar 5 07:01:47 CET 2012 - jeffm@suse.com
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit f4b95ae
-------------------------------------------------------------------
Mon Mar 5 05:35:06 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6. Previous commit was configs.
- commit 639167f
-------------------------------------------------------------------
Mon Mar 5 05:14:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6.
- commit ebec13a
-------------------------------------------------------------------
Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
@ -24,6 +242,13 @@ Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit 2c205b4
-------------------------------------------------------------------
Sun Mar 4 14:21:47 CET 2012 - jslaby@suse.cz
- Update config files.
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit adb37b7
-------------------------------------------------------------------
Thu Mar 1 18:15:58 CET 2012 - jslaby@suse.cz
@ -38,6 +263,14 @@ Thu Mar 1 10:00:42 CET 2012 - jslaby@suse.cz
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit 82a8603
-------------------------------------------------------------------
Wed Feb 29 15:22:34 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc5 and c/s 1157.
- config.conf: Re-enable Xen configs.
- Update config files.
- commit f225622
-------------------------------------------------------------------
Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
@ -47,6 +280,12 @@ Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
same fix will be ported here.
- commit 2bcad53
-------------------------------------------------------------------
Mon Feb 27 03:38:40 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc5.
- commit 0b7f048
-------------------------------------------------------------------
Sun Feb 26 14:19:13 CET 2012 - jslaby@suse.cz
@ -75,6 +314,12 @@ Tue Feb 21 11:56:39 CET 2012 - jslaby@suse.cz
- Linux 3.2.7.
- commit 3d38d11
-------------------------------------------------------------------
Sun Feb 19 18:00:16 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc4.
- commit 8831dca
-------------------------------------------------------------------
Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
@ -83,6 +328,12 @@ Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
patches.fixes/PM-Hibernate-Fix-s2disk-regression-related-to-freezi.patch.
- commit 264e0d4
-------------------------------------------------------------------
Mon Feb 13 19:33:57 CET 2012 - trenn@suse.de
- cpufreq/gx: Fix the compile error.
- commit 4ba1d8b
-------------------------------------------------------------------
Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
@ -90,6 +341,93 @@ Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
Enable brcm80211 wireless driver.
- commit 70a4760
-------------------------------------------------------------------
Mon Feb 13 17:23:49 CET 2012 - mmarek@suse.cz
- nvme: Mark as broken on x86_32.
- commit 28ad576
-------------------------------------------------------------------
Sun Feb 12 18:15:10 CET 2012 - trenn@suse.de
- Add driver auto probing for x86 features v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Fix overrun check in arch_print_cpu_modalias()
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- crypto: Add support for x86 cpuid
auto loading for x86 crypto drivers
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Clean up modalias feature matching
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel-idle: convert to x86_cpu_id auto probing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert via-cputemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k7: Fix CPU family number
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: Load acpi-cpufreq from processor driver automatically
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Revert change of auto_demotion_flags for Nehalem
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert coretemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k6: Really enable auto-loading
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- X86: Introduce HW-Pstate scattered cpuid feature
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- cpufreq: Add support for x86 cpuinfo auto loading v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86: autoload microcode driver on Intel and AMD systems v2
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- CPU: Introduce ARCH_HAS_CPU_AUTOPROBE and X86 parts
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: remove duplicated lines of merging
problems with acpi_processor_start
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- Update config files.
- commit 6efe9b5
-------------------------------------------------------------------
Fri Feb 10 12:03:36 CET 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Build x86 packages as i686, except for
-default (bnc#745632). KMPs are still built as i586.
- commit 88a632b
-------------------------------------------------------------------
Thu Feb 9 15:57:54 CET 2012 - jeffm@suse.com
- Update to 3.3-rc3.
- commit 07ec27c
-------------------------------------------------------------------
Thu Feb 9 12:53:26 CET 2012 - agraf@suse.de
- armv7l: Update config files.
- commit d223353
-------------------------------------------------------------------
Thu Feb 9 12:48:21 CET 2012 - agraf@suse.de
- armv7l: config: integrate bmwiedemann's updates to make it usable
- commit 76d12ed
-------------------------------------------------------------------
Tue Feb 7 18:28:41 CET 2012 - jeffm@suse.com
- Update vanilla config files.
- commit fd3673f
-------------------------------------------------------------------
Tue Feb 7 18:12:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc2.
- Eliminated 5 patches.
- Xen is disabled.
- commit d017ea1
-------------------------------------------------------------------
Sat Feb 4 15:19:04 CET 2012 - jslaby@suse.cz

View File

@ -17,14 +17,15 @@
# norootforbuild
%define srcversion 3.2
%define patchversion 3.2.10
%define srcversion 3.3
%define patchversion 3.3.0
%define variant %{nil}
%define vanilla_only 0
%include %_sourcedir/kernel-spec-macros
%define build_flavor omap2plus
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
@ -56,7 +57,7 @@
Name: kernel-omap2plus
Summary: Kernel for Texas instrument's OMAP SoC
Version: 3.2.10
Version: 3.3.0
Release: 0
License: GPL-2.0
Group: System/Kernel
@ -193,6 +194,17 @@ Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: armv7l
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
%if ! %build_default
BuildArch: i686
# KMPs are always built as i586, because rpm does not allow to build
# subpackages for different architectures. Therefore, we change the
# /usr/src/linux-obj/<arch> symlink to i586.
%define kmp_target_cpu i586
%endif
%endif
# These files are found in the kernel-source package:
NoSource: 0
@ -624,9 +636,9 @@ if [ %CONFIG_MODULES = y ]; then
# Some architecture's $(uname -m) output is different from the ARCH
# parameter that needs to be passed to kbuild. Create symlinks from
# $(uname -m) to the ARCH directory.
if [ ! -e %rpm_install_dir/%_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%_target_cpu
if [ ! -e %rpm_install_dir/%kmp_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%kmp_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%kmp_target_cpu
fi
# We were building in %my_builddir/linux-%srcversion, but the sources will
@ -903,9 +915,9 @@ kernel module packages) against the %build_flavor flavor of the kernel.
%dir /usr/src/linux-obj/%cpu_arch
%ghost /usr/src/linux-obj/%cpu_arch_flavor
%obj_install_dir/%cpu_arch_flavor
%if %_target_cpu != %cpu_arch
%obj_install_dir/%_target_cpu
/usr/src/linux-obj/%_target_cpu
%if %kmp_target_cpu != %cpu_arch
%obj_install_dir/%kmp_target_cpu
/usr/src/linux-obj/%kmp_target_cpu
%endif
%endif

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon Mar 19 11:16:34 CET 2012 - jslaby@suse.cz
- Update (vanilla) config files.
- commit 55a0a56
-------------------------------------------------------------------
Mon Mar 19 11:07:00 CET 2012 - jslaby@suse.cz
- Delete
patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch.
- Delete patches.arch/dell_optiplex_990_fix_reboot.patch.
- Delete
patches.drivers/alsa-hda-0004-Add-missing-static-ADC-tables-for-ALC269-qu.
- Delete patches.drivers/libata-unlock-hpa-by-default.
- Delete patches.fixes/scsi-add-tgps-setting.
- Delete patches.fixes/scsi-dh-rdac-add-stk.
- Delete patches.suse/dm-mpath-evaluate-request-result-and-sense.
- Delete patches.suse/richacl-fix.
Remove unused patches.
- commit 2cbabfe
-------------------------------------------------------------------
Mon Mar 19 06:27:04 CET 2012 - jeffm@suse.com
- Update to 3.3-final.
- commit a9ab64a
-------------------------------------------------------------------
Fri Mar 16 07:23:33 CET 2012 - ohering@suse.de
- Update bugnumber patches.suse/sd_init.mark_majors_busy.patch (bnc#744658).
- commit e60f2c3
-------------------------------------------------------------------
Tue Mar 13 11:07:58 CET 2012 - jslaby@suse.cz
@ -17,6 +51,190 @@ Mon Mar 12 17:02:51 CET 2012 - jslaby@suse.cz
request_irq() (bnc#750106).
- commit 4bff877
-------------------------------------------------------------------
Mon Mar 12 16:35:36 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc7 and c/s 1163.
- commit 0054c83
-------------------------------------------------------------------
Mon Mar 12 15:26:55 CET 2012 - ohering@suse.de
- Staging: hv: storvsc: Cleanup some comments.
- Staging: hv: storvsc: Cleanup storvsc_probe().
- Staging: hv: storvsc: Cleanup storvsc_queuecommand().
- Staging: hv: storvsc: Introduce defines for srb status codes.
- Staging: hv: storvsc: Cleanup storvsc_host_reset_handler().
- Staging: hv: storvsc: Move and cleanup storvsc_remove().
- Staging: hv: storvsc: Add a comment to explain life-cycle
management.
- Staging: hv: storvsc: Get rid of the on_io_completion in
hv_storvsc_request.
- Staging: hv: storvsc: Rename the context field in
hv_storvsc_request.
- Staging: hv: storvsc: Miscellaneous cleanup of storvsc driver.
- Staging: hv: storvsc: Cleanup the code for generating protocol
version.
- Staging: hv: storvsc: Cleanup some protocol related constants.
- Staging: hv: storvsc: Get rid of some unused defines.
- Staging: hv: storvsc: Consolidate the request structure.
- Staging: hv: storvsc: Consolidate all the wire protocol
definitions.
- Staging: hv: storvsc: Move the storage driver out of the
staging area.
- Rename patches.suse/staging-hv-pata_piix-ignore-disks.patch to
patches.suse/suse-hv-pata_piix-ignore-disks.patch
- commit 7487199
-------------------------------------------------------------------
Mon Mar 12 03:43:53 CET 2012 - jeffm@suse.com
- Update to 3.3-rc7.
- commit 81a18ea
-------------------------------------------------------------------
Sun Mar 11 00:32:36 CET 2012 - jeffm@suse.com
- btrfs: Handle EIO.
- btrfs: add varargs to btrfs_error.
- btrfs: Remove BUG_ON from __finish_chunk_alloc().
- btrfs: Remove BUG_ON from __btrfs_alloc_chunk().
- btrfs: Don't BUG_ON insert errors in btrfs_alloc_dev_extent().
- btrfs: Go readonly on tree errors in balance_level.
- btrfs: Don't BUG_ON errors from update_ref_for_cow().
- btrfs: Go readonly on bad extent refs in update_ref_for_cow().
- btrfs: Don't BUG_ON errors in __finish_chunk_alloc().
- btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range().
- btrfs: Don't BUG_ON() errors in update_ref_for_cow().
- btrfs: Don't BUG_ON errors from btrfs_create_subvol_root().
- btrfs: btrfs_drop_snapshot should return int.
- brfs: split extent_state ops.
- btrfs: drop gfp_t from lock_extent.
- btrfs: scrub functions should return void.
- btrfs: btrfs_set_item_key_safe should BUG on error and return
void.
- btrfs: Add extent_state alloc/free tracing.
- btrfs: btrfs_destroy_pending_snapshots should return void.
- btrfs: btrfs_destroy_ordered_extents should return void.
- btrfs: btrfs_destroy_ordered_operations should return void.
- btrfs: del_fs_roots should return void.
- btrfs: btrfs_free_fs_root should return void.
- btrfs: btrfs_add_ordered_sum should return void.
- btrfs: btrfs_add_ordered_operation should return void.
- btrfs: btrfs_run_ordered_operations should return void.
- btrfs: btrfs_wait_ordered_range should return void.
- btrfs: btrfs_wait_ordered_extents should return void.
- btrfs: __btrfs_remove_ordered_extent should return void.
- btrfs: btrfs_put_ordered_extent should return void.
- btrfs: update_inline_extent_backref should return void.
- btrfs: copy_for_split should return void.
- btrfs: end_compressed_writeback should return void.
- btrfs: btrfs_extend_item should return void.
- btrfs: btrfs_truncate_item should return void.
- btrfs: add_delayed_data_ref should return void.
- btrfs: add_delayed_tree_ref should return void.
- btrfs: add_delayed_ref_head should return void.
- btrfs: insert_ptr should return void.
- btrfs: del_ptr should return void.
- btrfs: setup_items_for_insert should return void.
- btrfs: fixup_low_keys should return void.
- btrfs: __add_reloc_root error push-up.
- btrfs: ->submit_bio_hook error push-up.
- btrfs: Factor out tree->ops->merge_bio_hook call.
- btrfs: Simplify btrfs_submit_bio_hook.
- btrfs: Fix kfree of member instead of structure.
- btrfs: setup_inline_extent_backref should return void.
- btrfs: btrfs_set_block_group_rw should return void.
- btrfs: btrfs_prepare_extent_commit should return void.
- btrfs: btrfs_destroy_delalloc_inodes should return void.
- btrfs: __setup_root should return void.
- btrfs: btrfs_invalidate_inodes should return void.
- btrfs: btrfs_init_compress should return void.
- btrfs: wait_for_writer should return void.
- btrfs: btrfs_end_log_trans should return void.
- btrfs: btrfs_requeue_work should return void.
- btrfs: btrfs_stop_workers should return void.
- btrfs: run_ordered_completions should return void.
- btrfs: fill_device_from_item should return void.
- btrfs: schedule_bio should return void.
- btrfs: btrfs_close_extra_devices should return void.
- btrfs: run_scheduled_bios should return void.
- btrfs: btrfs_cleanup_fs_uuids should return void.
- btrfs: clear_extent_buffer_dirty should return void.
- btrfs: check_page_writeback should return void.
- btrfs: check_page_locked should return void.
- btrfs: check_page_uptodate should return void.
- btrfs: __unlock_for_delalloc should return void.
- btrfs: wait_extent_bit should return void.
- btrfs: wait_on_state should return void.
- btrfs: btrfs_update_root error push-up.
- btrfs: find_and_setup_root error push-up.
- btrfs: Remove set bits return from clear_extent_bit.
- btrfs: avoid NULL deref in btrfs_reserve_extent with
DEBUG_ENOSPC.
- btrfs: clean_tree_block should panic on observed memory
corruption and return void.
- btrfs: btrfs_tree_{,un}lock should return void.
- btrfs: Simplify btrfs_insert_root.
- btrfs: Panic on bad rbtree operations.
- btrfs: Catch locking failures in {set,clear,convert}_extent_bit.
- btrfs: Add btrfs_panic().
- commit fd31baf
-------------------------------------------------------------------
Fri Mar 9 15:02:13 CET 2012 - ohering@suse.de
- mark busy sd majors as allocated (bug#744658).
- commit b2a640b
-------------------------------------------------------------------
Thu Mar 8 13:37:39 CET 2012 - mmarek@suse.cz
- Fix vanilla config files.
- commit b343c8a
-------------------------------------------------------------------
Thu Mar 8 11:56:26 CET 2012 - mmarek@suse.cz
- Delete patches.rpmify/nvme-broken, nvme builds again on 32bit.
- commit d60272f
-------------------------------------------------------------------
Thu Mar 8 11:34:18 CET 2012 - jbeulich@novell.com
- patches.suse/crasher-26.diff: Eliminate build warnings.
- commit 67c3c8d
-------------------------------------------------------------------
Thu Mar 8 10:55:04 CET 2012 - agraf@suse.de
- armv7l: config: omap: disable HDMI output (breaks build)
- commit 6a871bd
-------------------------------------------------------------------
Tue Mar 6 20:02:14 CET 2012 - agraf@suse.de
- armv7l: omap2plus: Enable TIDSPBRIDGE and SND codecs
- commit 0d8ec4d
-------------------------------------------------------------------
Mon Mar 5 07:01:47 CET 2012 - jeffm@suse.com
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit f4b95ae
-------------------------------------------------------------------
Mon Mar 5 05:35:06 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6. Previous commit was configs.
- commit 639167f
-------------------------------------------------------------------
Mon Mar 5 05:14:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6.
- commit ebec13a
-------------------------------------------------------------------
Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
@ -24,6 +242,13 @@ Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit 2c205b4
-------------------------------------------------------------------
Sun Mar 4 14:21:47 CET 2012 - jslaby@suse.cz
- Update config files.
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit adb37b7
-------------------------------------------------------------------
Thu Mar 1 18:15:58 CET 2012 - jslaby@suse.cz
@ -38,6 +263,14 @@ Thu Mar 1 10:00:42 CET 2012 - jslaby@suse.cz
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit 82a8603
-------------------------------------------------------------------
Wed Feb 29 15:22:34 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc5 and c/s 1157.
- config.conf: Re-enable Xen configs.
- Update config files.
- commit f225622
-------------------------------------------------------------------
Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
@ -47,6 +280,12 @@ Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
same fix will be ported here.
- commit 2bcad53
-------------------------------------------------------------------
Mon Feb 27 03:38:40 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc5.
- commit 0b7f048
-------------------------------------------------------------------
Sun Feb 26 14:19:13 CET 2012 - jslaby@suse.cz
@ -75,6 +314,12 @@ Tue Feb 21 11:56:39 CET 2012 - jslaby@suse.cz
- Linux 3.2.7.
- commit 3d38d11
-------------------------------------------------------------------
Sun Feb 19 18:00:16 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc4.
- commit 8831dca
-------------------------------------------------------------------
Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
@ -83,6 +328,12 @@ Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
patches.fixes/PM-Hibernate-Fix-s2disk-regression-related-to-freezi.patch.
- commit 264e0d4
-------------------------------------------------------------------
Mon Feb 13 19:33:57 CET 2012 - trenn@suse.de
- cpufreq/gx: Fix the compile error.
- commit 4ba1d8b
-------------------------------------------------------------------
Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
@ -90,6 +341,93 @@ Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
Enable brcm80211 wireless driver.
- commit 70a4760
-------------------------------------------------------------------
Mon Feb 13 17:23:49 CET 2012 - mmarek@suse.cz
- nvme: Mark as broken on x86_32.
- commit 28ad576
-------------------------------------------------------------------
Sun Feb 12 18:15:10 CET 2012 - trenn@suse.de
- Add driver auto probing for x86 features v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Fix overrun check in arch_print_cpu_modalias()
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- crypto: Add support for x86 cpuid
auto loading for x86 crypto drivers
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Clean up modalias feature matching
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel-idle: convert to x86_cpu_id auto probing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert via-cputemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k7: Fix CPU family number
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: Load acpi-cpufreq from processor driver automatically
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Revert change of auto_demotion_flags for Nehalem
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert coretemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k6: Really enable auto-loading
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- X86: Introduce HW-Pstate scattered cpuid feature
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- cpufreq: Add support for x86 cpuinfo auto loading v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86: autoload microcode driver on Intel and AMD systems v2
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- CPU: Introduce ARCH_HAS_CPU_AUTOPROBE and X86 parts
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: remove duplicated lines of merging
problems with acpi_processor_start
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- Update config files.
- commit 6efe9b5
-------------------------------------------------------------------
Fri Feb 10 12:03:36 CET 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Build x86 packages as i686, except for
-default (bnc#745632). KMPs are still built as i586.
- commit 88a632b
-------------------------------------------------------------------
Thu Feb 9 15:57:54 CET 2012 - jeffm@suse.com
- Update to 3.3-rc3.
- commit 07ec27c
-------------------------------------------------------------------
Thu Feb 9 12:53:26 CET 2012 - agraf@suse.de
- armv7l: Update config files.
- commit d223353
-------------------------------------------------------------------
Thu Feb 9 12:48:21 CET 2012 - agraf@suse.de
- armv7l: config: integrate bmwiedemann's updates to make it usable
- commit 76d12ed
-------------------------------------------------------------------
Tue Feb 7 18:28:41 CET 2012 - jeffm@suse.com
- Update vanilla config files.
- commit fd3673f
-------------------------------------------------------------------
Tue Feb 7 18:12:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc2.
- Eliminated 5 patches.
- Xen is disabled.
- commit d017ea1
-------------------------------------------------------------------
Sat Feb 4 15:19:04 CET 2012 - jslaby@suse.cz

View File

@ -17,14 +17,15 @@
# norootforbuild
%define srcversion 3.2
%define patchversion 3.2.10
%define srcversion 3.3
%define patchversion 3.3.0
%define variant %{nil}
%define vanilla_only 0
%include %_sourcedir/kernel-spec-macros
%define build_flavor pae
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
@ -56,7 +57,7 @@
Name: kernel-pae
Summary: Kernel with PAE Support
Version: 3.2.10
Version: 3.3.0
Release: 0
License: GPL-2.0
Group: System/Kernel
@ -196,6 +197,17 @@ Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: %ix86
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
%if ! %build_default
BuildArch: i686
# KMPs are always built as i586, because rpm does not allow to build
# subpackages for different architectures. Therefore, we change the
# /usr/src/linux-obj/<arch> symlink to i586.
%define kmp_target_cpu i586
%endif
%endif
# These files are found in the kernel-source package:
NoSource: 0
@ -633,9 +645,9 @@ if [ %CONFIG_MODULES = y ]; then
# Some architecture's $(uname -m) output is different from the ARCH
# parameter that needs to be passed to kbuild. Create symlinks from
# $(uname -m) to the ARCH directory.
if [ ! -e %rpm_install_dir/%_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%_target_cpu
if [ ! -e %rpm_install_dir/%kmp_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%kmp_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%kmp_target_cpu
fi
# We were building in %my_builddir/linux-%srcversion, but the sources will
@ -924,9 +936,9 @@ kernel module packages) against the %build_flavor flavor of the kernel.
%dir /usr/src/linux-obj/%cpu_arch
%ghost /usr/src/linux-obj/%cpu_arch_flavor
%obj_install_dir/%cpu_arch_flavor
%if %_target_cpu != %cpu_arch
%obj_install_dir/%_target_cpu
/usr/src/linux-obj/%_target_cpu
%if %kmp_target_cpu != %cpu_arch
%obj_install_dir/%kmp_target_cpu
/usr/src/linux-obj/%kmp_target_cpu
%endif
%endif

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon Mar 19 11:16:34 CET 2012 - jslaby@suse.cz
- Update (vanilla) config files.
- commit 55a0a56
-------------------------------------------------------------------
Mon Mar 19 11:07:00 CET 2012 - jslaby@suse.cz
- Delete
patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch.
- Delete patches.arch/dell_optiplex_990_fix_reboot.patch.
- Delete
patches.drivers/alsa-hda-0004-Add-missing-static-ADC-tables-for-ALC269-qu.
- Delete patches.drivers/libata-unlock-hpa-by-default.
- Delete patches.fixes/scsi-add-tgps-setting.
- Delete patches.fixes/scsi-dh-rdac-add-stk.
- Delete patches.suse/dm-mpath-evaluate-request-result-and-sense.
- Delete patches.suse/richacl-fix.
Remove unused patches.
- commit 2cbabfe
-------------------------------------------------------------------
Mon Mar 19 06:27:04 CET 2012 - jeffm@suse.com
- Update to 3.3-final.
- commit a9ab64a
-------------------------------------------------------------------
Fri Mar 16 07:23:33 CET 2012 - ohering@suse.de
- Update bugnumber patches.suse/sd_init.mark_majors_busy.patch (bnc#744658).
- commit e60f2c3
-------------------------------------------------------------------
Tue Mar 13 11:07:58 CET 2012 - jslaby@suse.cz
@ -17,6 +51,190 @@ Mon Mar 12 17:02:51 CET 2012 - jslaby@suse.cz
request_irq() (bnc#750106).
- commit 4bff877
-------------------------------------------------------------------
Mon Mar 12 16:35:36 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc7 and c/s 1163.
- commit 0054c83
-------------------------------------------------------------------
Mon Mar 12 15:26:55 CET 2012 - ohering@suse.de
- Staging: hv: storvsc: Cleanup some comments.
- Staging: hv: storvsc: Cleanup storvsc_probe().
- Staging: hv: storvsc: Cleanup storvsc_queuecommand().
- Staging: hv: storvsc: Introduce defines for srb status codes.
- Staging: hv: storvsc: Cleanup storvsc_host_reset_handler().
- Staging: hv: storvsc: Move and cleanup storvsc_remove().
- Staging: hv: storvsc: Add a comment to explain life-cycle
management.
- Staging: hv: storvsc: Get rid of the on_io_completion in
hv_storvsc_request.
- Staging: hv: storvsc: Rename the context field in
hv_storvsc_request.
- Staging: hv: storvsc: Miscellaneous cleanup of storvsc driver.
- Staging: hv: storvsc: Cleanup the code for generating protocol
version.
- Staging: hv: storvsc: Cleanup some protocol related constants.
- Staging: hv: storvsc: Get rid of some unused defines.
- Staging: hv: storvsc: Consolidate the request structure.
- Staging: hv: storvsc: Consolidate all the wire protocol
definitions.
- Staging: hv: storvsc: Move the storage driver out of the
staging area.
- Rename patches.suse/staging-hv-pata_piix-ignore-disks.patch to
patches.suse/suse-hv-pata_piix-ignore-disks.patch
- commit 7487199
-------------------------------------------------------------------
Mon Mar 12 03:43:53 CET 2012 - jeffm@suse.com
- Update to 3.3-rc7.
- commit 81a18ea
-------------------------------------------------------------------
Sun Mar 11 00:32:36 CET 2012 - jeffm@suse.com
- btrfs: Handle EIO.
- btrfs: add varargs to btrfs_error.
- btrfs: Remove BUG_ON from __finish_chunk_alloc().
- btrfs: Remove BUG_ON from __btrfs_alloc_chunk().
- btrfs: Don't BUG_ON insert errors in btrfs_alloc_dev_extent().
- btrfs: Go readonly on tree errors in balance_level.
- btrfs: Don't BUG_ON errors from update_ref_for_cow().
- btrfs: Go readonly on bad extent refs in update_ref_for_cow().
- btrfs: Don't BUG_ON errors in __finish_chunk_alloc().
- btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range().
- btrfs: Don't BUG_ON() errors in update_ref_for_cow().
- btrfs: Don't BUG_ON errors from btrfs_create_subvol_root().
- btrfs: btrfs_drop_snapshot should return int.
- brfs: split extent_state ops.
- btrfs: drop gfp_t from lock_extent.
- btrfs: scrub functions should return void.
- btrfs: btrfs_set_item_key_safe should BUG on error and return
void.
- btrfs: Add extent_state alloc/free tracing.
- btrfs: btrfs_destroy_pending_snapshots should return void.
- btrfs: btrfs_destroy_ordered_extents should return void.
- btrfs: btrfs_destroy_ordered_operations should return void.
- btrfs: del_fs_roots should return void.
- btrfs: btrfs_free_fs_root should return void.
- btrfs: btrfs_add_ordered_sum should return void.
- btrfs: btrfs_add_ordered_operation should return void.
- btrfs: btrfs_run_ordered_operations should return void.
- btrfs: btrfs_wait_ordered_range should return void.
- btrfs: btrfs_wait_ordered_extents should return void.
- btrfs: __btrfs_remove_ordered_extent should return void.
- btrfs: btrfs_put_ordered_extent should return void.
- btrfs: update_inline_extent_backref should return void.
- btrfs: copy_for_split should return void.
- btrfs: end_compressed_writeback should return void.
- btrfs: btrfs_extend_item should return void.
- btrfs: btrfs_truncate_item should return void.
- btrfs: add_delayed_data_ref should return void.
- btrfs: add_delayed_tree_ref should return void.
- btrfs: add_delayed_ref_head should return void.
- btrfs: insert_ptr should return void.
- btrfs: del_ptr should return void.
- btrfs: setup_items_for_insert should return void.
- btrfs: fixup_low_keys should return void.
- btrfs: __add_reloc_root error push-up.
- btrfs: ->submit_bio_hook error push-up.
- btrfs: Factor out tree->ops->merge_bio_hook call.
- btrfs: Simplify btrfs_submit_bio_hook.
- btrfs: Fix kfree of member instead of structure.
- btrfs: setup_inline_extent_backref should return void.
- btrfs: btrfs_set_block_group_rw should return void.
- btrfs: btrfs_prepare_extent_commit should return void.
- btrfs: btrfs_destroy_delalloc_inodes should return void.
- btrfs: __setup_root should return void.
- btrfs: btrfs_invalidate_inodes should return void.
- btrfs: btrfs_init_compress should return void.
- btrfs: wait_for_writer should return void.
- btrfs: btrfs_end_log_trans should return void.
- btrfs: btrfs_requeue_work should return void.
- btrfs: btrfs_stop_workers should return void.
- btrfs: run_ordered_completions should return void.
- btrfs: fill_device_from_item should return void.
- btrfs: schedule_bio should return void.
- btrfs: btrfs_close_extra_devices should return void.
- btrfs: run_scheduled_bios should return void.
- btrfs: btrfs_cleanup_fs_uuids should return void.
- btrfs: clear_extent_buffer_dirty should return void.
- btrfs: check_page_writeback should return void.
- btrfs: check_page_locked should return void.
- btrfs: check_page_uptodate should return void.
- btrfs: __unlock_for_delalloc should return void.
- btrfs: wait_extent_bit should return void.
- btrfs: wait_on_state should return void.
- btrfs: btrfs_update_root error push-up.
- btrfs: find_and_setup_root error push-up.
- btrfs: Remove set bits return from clear_extent_bit.
- btrfs: avoid NULL deref in btrfs_reserve_extent with
DEBUG_ENOSPC.
- btrfs: clean_tree_block should panic on observed memory
corruption and return void.
- btrfs: btrfs_tree_{,un}lock should return void.
- btrfs: Simplify btrfs_insert_root.
- btrfs: Panic on bad rbtree operations.
- btrfs: Catch locking failures in {set,clear,convert}_extent_bit.
- btrfs: Add btrfs_panic().
- commit fd31baf
-------------------------------------------------------------------
Fri Mar 9 15:02:13 CET 2012 - ohering@suse.de
- mark busy sd majors as allocated (bug#744658).
- commit b2a640b
-------------------------------------------------------------------
Thu Mar 8 13:37:39 CET 2012 - mmarek@suse.cz
- Fix vanilla config files.
- commit b343c8a
-------------------------------------------------------------------
Thu Mar 8 11:56:26 CET 2012 - mmarek@suse.cz
- Delete patches.rpmify/nvme-broken, nvme builds again on 32bit.
- commit d60272f
-------------------------------------------------------------------
Thu Mar 8 11:34:18 CET 2012 - jbeulich@novell.com
- patches.suse/crasher-26.diff: Eliminate build warnings.
- commit 67c3c8d
-------------------------------------------------------------------
Thu Mar 8 10:55:04 CET 2012 - agraf@suse.de
- armv7l: config: omap: disable HDMI output (breaks build)
- commit 6a871bd
-------------------------------------------------------------------
Tue Mar 6 20:02:14 CET 2012 - agraf@suse.de
- armv7l: omap2plus: Enable TIDSPBRIDGE and SND codecs
- commit 0d8ec4d
-------------------------------------------------------------------
Mon Mar 5 07:01:47 CET 2012 - jeffm@suse.com
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit f4b95ae
-------------------------------------------------------------------
Mon Mar 5 05:35:06 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6. Previous commit was configs.
- commit 639167f
-------------------------------------------------------------------
Mon Mar 5 05:14:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6.
- commit ebec13a
-------------------------------------------------------------------
Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
@ -24,6 +242,13 @@ Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit 2c205b4
-------------------------------------------------------------------
Sun Mar 4 14:21:47 CET 2012 - jslaby@suse.cz
- Update config files.
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit adb37b7
-------------------------------------------------------------------
Thu Mar 1 18:15:58 CET 2012 - jslaby@suse.cz
@ -38,6 +263,14 @@ Thu Mar 1 10:00:42 CET 2012 - jslaby@suse.cz
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit 82a8603
-------------------------------------------------------------------
Wed Feb 29 15:22:34 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc5 and c/s 1157.
- config.conf: Re-enable Xen configs.
- Update config files.
- commit f225622
-------------------------------------------------------------------
Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
@ -47,6 +280,12 @@ Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
same fix will be ported here.
- commit 2bcad53
-------------------------------------------------------------------
Mon Feb 27 03:38:40 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc5.
- commit 0b7f048
-------------------------------------------------------------------
Sun Feb 26 14:19:13 CET 2012 - jslaby@suse.cz
@ -75,6 +314,12 @@ Tue Feb 21 11:56:39 CET 2012 - jslaby@suse.cz
- Linux 3.2.7.
- commit 3d38d11
-------------------------------------------------------------------
Sun Feb 19 18:00:16 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc4.
- commit 8831dca
-------------------------------------------------------------------
Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
@ -83,6 +328,12 @@ Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
patches.fixes/PM-Hibernate-Fix-s2disk-regression-related-to-freezi.patch.
- commit 264e0d4
-------------------------------------------------------------------
Mon Feb 13 19:33:57 CET 2012 - trenn@suse.de
- cpufreq/gx: Fix the compile error.
- commit 4ba1d8b
-------------------------------------------------------------------
Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
@ -90,6 +341,93 @@ Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
Enable brcm80211 wireless driver.
- commit 70a4760
-------------------------------------------------------------------
Mon Feb 13 17:23:49 CET 2012 - mmarek@suse.cz
- nvme: Mark as broken on x86_32.
- commit 28ad576
-------------------------------------------------------------------
Sun Feb 12 18:15:10 CET 2012 - trenn@suse.de
- Add driver auto probing for x86 features v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Fix overrun check in arch_print_cpu_modalias()
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- crypto: Add support for x86 cpuid
auto loading for x86 crypto drivers
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Clean up modalias feature matching
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel-idle: convert to x86_cpu_id auto probing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert via-cputemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k7: Fix CPU family number
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: Load acpi-cpufreq from processor driver automatically
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Revert change of auto_demotion_flags for Nehalem
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert coretemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k6: Really enable auto-loading
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- X86: Introduce HW-Pstate scattered cpuid feature
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- cpufreq: Add support for x86 cpuinfo auto loading v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86: autoload microcode driver on Intel and AMD systems v2
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- CPU: Introduce ARCH_HAS_CPU_AUTOPROBE and X86 parts
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: remove duplicated lines of merging
problems with acpi_processor_start
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- Update config files.
- commit 6efe9b5
-------------------------------------------------------------------
Fri Feb 10 12:03:36 CET 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Build x86 packages as i686, except for
-default (bnc#745632). KMPs are still built as i586.
- commit 88a632b
-------------------------------------------------------------------
Thu Feb 9 15:57:54 CET 2012 - jeffm@suse.com
- Update to 3.3-rc3.
- commit 07ec27c
-------------------------------------------------------------------
Thu Feb 9 12:53:26 CET 2012 - agraf@suse.de
- armv7l: Update config files.
- commit d223353
-------------------------------------------------------------------
Thu Feb 9 12:48:21 CET 2012 - agraf@suse.de
- armv7l: config: integrate bmwiedemann's updates to make it usable
- commit 76d12ed
-------------------------------------------------------------------
Tue Feb 7 18:28:41 CET 2012 - jeffm@suse.com
- Update vanilla config files.
- commit fd3673f
-------------------------------------------------------------------
Tue Feb 7 18:12:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc2.
- Eliminated 5 patches.
- Xen is disabled.
- commit d017ea1
-------------------------------------------------------------------
Sat Feb 4 15:19:04 CET 2012 - jslaby@suse.cz

View File

@ -17,14 +17,15 @@
# norootforbuild
%define srcversion 3.2
%define patchversion 3.2.10
%define srcversion 3.3
%define patchversion 3.3.0
%define variant %{nil}
%define vanilla_only 0
%include %_sourcedir/kernel-spec-macros
%define build_flavor ppc64
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
@ -56,7 +57,7 @@
Name: kernel-ppc64
Summary: Kernel for ppc64 Systems
Version: 3.2.10
Version: 3.3.0
Release: 0
License: GPL-2.0
Group: System/Kernel
@ -200,6 +201,17 @@ Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: ppc ppc64
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
%if ! %build_default
BuildArch: i686
# KMPs are always built as i586, because rpm does not allow to build
# subpackages for different architectures. Therefore, we change the
# /usr/src/linux-obj/<arch> symlink to i586.
%define kmp_target_cpu i586
%endif
%endif
# These files are found in the kernel-source package:
NoSource: 0
@ -637,9 +649,9 @@ if [ %CONFIG_MODULES = y ]; then
# Some architecture's $(uname -m) output is different from the ARCH
# parameter that needs to be passed to kbuild. Create symlinks from
# $(uname -m) to the ARCH directory.
if [ ! -e %rpm_install_dir/%_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%_target_cpu
if [ ! -e %rpm_install_dir/%kmp_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%kmp_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%kmp_target_cpu
fi
# We were building in %my_builddir/linux-%srcversion, but the sources will
@ -928,9 +940,9 @@ kernel module packages) against the %build_flavor flavor of the kernel.
%dir /usr/src/linux-obj/%cpu_arch
%ghost /usr/src/linux-obj/%cpu_arch_flavor
%obj_install_dir/%cpu_arch_flavor
%if %_target_cpu != %cpu_arch
%obj_install_dir/%_target_cpu
/usr/src/linux-obj/%_target_cpu
%if %kmp_target_cpu != %cpu_arch
%obj_install_dir/%kmp_target_cpu
/usr/src/linux-obj/%kmp_target_cpu
%endif
%endif

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon Mar 19 11:16:34 CET 2012 - jslaby@suse.cz
- Update (vanilla) config files.
- commit 55a0a56
-------------------------------------------------------------------
Mon Mar 19 11:07:00 CET 2012 - jslaby@suse.cz
- Delete
patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch.
- Delete patches.arch/dell_optiplex_990_fix_reboot.patch.
- Delete
patches.drivers/alsa-hda-0004-Add-missing-static-ADC-tables-for-ALC269-qu.
- Delete patches.drivers/libata-unlock-hpa-by-default.
- Delete patches.fixes/scsi-add-tgps-setting.
- Delete patches.fixes/scsi-dh-rdac-add-stk.
- Delete patches.suse/dm-mpath-evaluate-request-result-and-sense.
- Delete patches.suse/richacl-fix.
Remove unused patches.
- commit 2cbabfe
-------------------------------------------------------------------
Mon Mar 19 06:27:04 CET 2012 - jeffm@suse.com
- Update to 3.3-final.
- commit a9ab64a
-------------------------------------------------------------------
Fri Mar 16 07:23:33 CET 2012 - ohering@suse.de
- Update bugnumber patches.suse/sd_init.mark_majors_busy.patch (bnc#744658).
- commit e60f2c3
-------------------------------------------------------------------
Tue Mar 13 11:07:58 CET 2012 - jslaby@suse.cz
@ -17,6 +51,190 @@ Mon Mar 12 17:02:51 CET 2012 - jslaby@suse.cz
request_irq() (bnc#750106).
- commit 4bff877
-------------------------------------------------------------------
Mon Mar 12 16:35:36 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc7 and c/s 1163.
- commit 0054c83
-------------------------------------------------------------------
Mon Mar 12 15:26:55 CET 2012 - ohering@suse.de
- Staging: hv: storvsc: Cleanup some comments.
- Staging: hv: storvsc: Cleanup storvsc_probe().
- Staging: hv: storvsc: Cleanup storvsc_queuecommand().
- Staging: hv: storvsc: Introduce defines for srb status codes.
- Staging: hv: storvsc: Cleanup storvsc_host_reset_handler().
- Staging: hv: storvsc: Move and cleanup storvsc_remove().
- Staging: hv: storvsc: Add a comment to explain life-cycle
management.
- Staging: hv: storvsc: Get rid of the on_io_completion in
hv_storvsc_request.
- Staging: hv: storvsc: Rename the context field in
hv_storvsc_request.
- Staging: hv: storvsc: Miscellaneous cleanup of storvsc driver.
- Staging: hv: storvsc: Cleanup the code for generating protocol
version.
- Staging: hv: storvsc: Cleanup some protocol related constants.
- Staging: hv: storvsc: Get rid of some unused defines.
- Staging: hv: storvsc: Consolidate the request structure.
- Staging: hv: storvsc: Consolidate all the wire protocol
definitions.
- Staging: hv: storvsc: Move the storage driver out of the
staging area.
- Rename patches.suse/staging-hv-pata_piix-ignore-disks.patch to
patches.suse/suse-hv-pata_piix-ignore-disks.patch
- commit 7487199
-------------------------------------------------------------------
Mon Mar 12 03:43:53 CET 2012 - jeffm@suse.com
- Update to 3.3-rc7.
- commit 81a18ea
-------------------------------------------------------------------
Sun Mar 11 00:32:36 CET 2012 - jeffm@suse.com
- btrfs: Handle EIO.
- btrfs: add varargs to btrfs_error.
- btrfs: Remove BUG_ON from __finish_chunk_alloc().
- btrfs: Remove BUG_ON from __btrfs_alloc_chunk().
- btrfs: Don't BUG_ON insert errors in btrfs_alloc_dev_extent().
- btrfs: Go readonly on tree errors in balance_level.
- btrfs: Don't BUG_ON errors from update_ref_for_cow().
- btrfs: Go readonly on bad extent refs in update_ref_for_cow().
- btrfs: Don't BUG_ON errors in __finish_chunk_alloc().
- btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range().
- btrfs: Don't BUG_ON() errors in update_ref_for_cow().
- btrfs: Don't BUG_ON errors from btrfs_create_subvol_root().
- btrfs: btrfs_drop_snapshot should return int.
- brfs: split extent_state ops.
- btrfs: drop gfp_t from lock_extent.
- btrfs: scrub functions should return void.
- btrfs: btrfs_set_item_key_safe should BUG on error and return
void.
- btrfs: Add extent_state alloc/free tracing.
- btrfs: btrfs_destroy_pending_snapshots should return void.
- btrfs: btrfs_destroy_ordered_extents should return void.
- btrfs: btrfs_destroy_ordered_operations should return void.
- btrfs: del_fs_roots should return void.
- btrfs: btrfs_free_fs_root should return void.
- btrfs: btrfs_add_ordered_sum should return void.
- btrfs: btrfs_add_ordered_operation should return void.
- btrfs: btrfs_run_ordered_operations should return void.
- btrfs: btrfs_wait_ordered_range should return void.
- btrfs: btrfs_wait_ordered_extents should return void.
- btrfs: __btrfs_remove_ordered_extent should return void.
- btrfs: btrfs_put_ordered_extent should return void.
- btrfs: update_inline_extent_backref should return void.
- btrfs: copy_for_split should return void.
- btrfs: end_compressed_writeback should return void.
- btrfs: btrfs_extend_item should return void.
- btrfs: btrfs_truncate_item should return void.
- btrfs: add_delayed_data_ref should return void.
- btrfs: add_delayed_tree_ref should return void.
- btrfs: add_delayed_ref_head should return void.
- btrfs: insert_ptr should return void.
- btrfs: del_ptr should return void.
- btrfs: setup_items_for_insert should return void.
- btrfs: fixup_low_keys should return void.
- btrfs: __add_reloc_root error push-up.
- btrfs: ->submit_bio_hook error push-up.
- btrfs: Factor out tree->ops->merge_bio_hook call.
- btrfs: Simplify btrfs_submit_bio_hook.
- btrfs: Fix kfree of member instead of structure.
- btrfs: setup_inline_extent_backref should return void.
- btrfs: btrfs_set_block_group_rw should return void.
- btrfs: btrfs_prepare_extent_commit should return void.
- btrfs: btrfs_destroy_delalloc_inodes should return void.
- btrfs: __setup_root should return void.
- btrfs: btrfs_invalidate_inodes should return void.
- btrfs: btrfs_init_compress should return void.
- btrfs: wait_for_writer should return void.
- btrfs: btrfs_end_log_trans should return void.
- btrfs: btrfs_requeue_work should return void.
- btrfs: btrfs_stop_workers should return void.
- btrfs: run_ordered_completions should return void.
- btrfs: fill_device_from_item should return void.
- btrfs: schedule_bio should return void.
- btrfs: btrfs_close_extra_devices should return void.
- btrfs: run_scheduled_bios should return void.
- btrfs: btrfs_cleanup_fs_uuids should return void.
- btrfs: clear_extent_buffer_dirty should return void.
- btrfs: check_page_writeback should return void.
- btrfs: check_page_locked should return void.
- btrfs: check_page_uptodate should return void.
- btrfs: __unlock_for_delalloc should return void.
- btrfs: wait_extent_bit should return void.
- btrfs: wait_on_state should return void.
- btrfs: btrfs_update_root error push-up.
- btrfs: find_and_setup_root error push-up.
- btrfs: Remove set bits return from clear_extent_bit.
- btrfs: avoid NULL deref in btrfs_reserve_extent with
DEBUG_ENOSPC.
- btrfs: clean_tree_block should panic on observed memory
corruption and return void.
- btrfs: btrfs_tree_{,un}lock should return void.
- btrfs: Simplify btrfs_insert_root.
- btrfs: Panic on bad rbtree operations.
- btrfs: Catch locking failures in {set,clear,convert}_extent_bit.
- btrfs: Add btrfs_panic().
- commit fd31baf
-------------------------------------------------------------------
Fri Mar 9 15:02:13 CET 2012 - ohering@suse.de
- mark busy sd majors as allocated (bug#744658).
- commit b2a640b
-------------------------------------------------------------------
Thu Mar 8 13:37:39 CET 2012 - mmarek@suse.cz
- Fix vanilla config files.
- commit b343c8a
-------------------------------------------------------------------
Thu Mar 8 11:56:26 CET 2012 - mmarek@suse.cz
- Delete patches.rpmify/nvme-broken, nvme builds again on 32bit.
- commit d60272f
-------------------------------------------------------------------
Thu Mar 8 11:34:18 CET 2012 - jbeulich@novell.com
- patches.suse/crasher-26.diff: Eliminate build warnings.
- commit 67c3c8d
-------------------------------------------------------------------
Thu Mar 8 10:55:04 CET 2012 - agraf@suse.de
- armv7l: config: omap: disable HDMI output (breaks build)
- commit 6a871bd
-------------------------------------------------------------------
Tue Mar 6 20:02:14 CET 2012 - agraf@suse.de
- armv7l: omap2plus: Enable TIDSPBRIDGE and SND codecs
- commit 0d8ec4d
-------------------------------------------------------------------
Mon Mar 5 07:01:47 CET 2012 - jeffm@suse.com
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit f4b95ae
-------------------------------------------------------------------
Mon Mar 5 05:35:06 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6. Previous commit was configs.
- commit 639167f
-------------------------------------------------------------------
Mon Mar 5 05:14:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6.
- commit ebec13a
-------------------------------------------------------------------
Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
@ -24,6 +242,13 @@ Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit 2c205b4
-------------------------------------------------------------------
Sun Mar 4 14:21:47 CET 2012 - jslaby@suse.cz
- Update config files.
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit adb37b7
-------------------------------------------------------------------
Thu Mar 1 18:15:58 CET 2012 - jslaby@suse.cz
@ -38,6 +263,14 @@ Thu Mar 1 10:00:42 CET 2012 - jslaby@suse.cz
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit 82a8603
-------------------------------------------------------------------
Wed Feb 29 15:22:34 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc5 and c/s 1157.
- config.conf: Re-enable Xen configs.
- Update config files.
- commit f225622
-------------------------------------------------------------------
Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
@ -47,6 +280,12 @@ Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
same fix will be ported here.
- commit 2bcad53
-------------------------------------------------------------------
Mon Feb 27 03:38:40 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc5.
- commit 0b7f048
-------------------------------------------------------------------
Sun Feb 26 14:19:13 CET 2012 - jslaby@suse.cz
@ -75,6 +314,12 @@ Tue Feb 21 11:56:39 CET 2012 - jslaby@suse.cz
- Linux 3.2.7.
- commit 3d38d11
-------------------------------------------------------------------
Sun Feb 19 18:00:16 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc4.
- commit 8831dca
-------------------------------------------------------------------
Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
@ -83,6 +328,12 @@ Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
patches.fixes/PM-Hibernate-Fix-s2disk-regression-related-to-freezi.patch.
- commit 264e0d4
-------------------------------------------------------------------
Mon Feb 13 19:33:57 CET 2012 - trenn@suse.de
- cpufreq/gx: Fix the compile error.
- commit 4ba1d8b
-------------------------------------------------------------------
Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
@ -90,6 +341,93 @@ Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
Enable brcm80211 wireless driver.
- commit 70a4760
-------------------------------------------------------------------
Mon Feb 13 17:23:49 CET 2012 - mmarek@suse.cz
- nvme: Mark as broken on x86_32.
- commit 28ad576
-------------------------------------------------------------------
Sun Feb 12 18:15:10 CET 2012 - trenn@suse.de
- Add driver auto probing for x86 features v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Fix overrun check in arch_print_cpu_modalias()
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- crypto: Add support for x86 cpuid
auto loading for x86 crypto drivers
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Clean up modalias feature matching
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel-idle: convert to x86_cpu_id auto probing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert via-cputemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k7: Fix CPU family number
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: Load acpi-cpufreq from processor driver automatically
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Revert change of auto_demotion_flags for Nehalem
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert coretemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k6: Really enable auto-loading
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- X86: Introduce HW-Pstate scattered cpuid feature
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- cpufreq: Add support for x86 cpuinfo auto loading v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86: autoload microcode driver on Intel and AMD systems v2
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- CPU: Introduce ARCH_HAS_CPU_AUTOPROBE and X86 parts
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: remove duplicated lines of merging
problems with acpi_processor_start
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- Update config files.
- commit 6efe9b5
-------------------------------------------------------------------
Fri Feb 10 12:03:36 CET 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Build x86 packages as i686, except for
-default (bnc#745632). KMPs are still built as i586.
- commit 88a632b
-------------------------------------------------------------------
Thu Feb 9 15:57:54 CET 2012 - jeffm@suse.com
- Update to 3.3-rc3.
- commit 07ec27c
-------------------------------------------------------------------
Thu Feb 9 12:53:26 CET 2012 - agraf@suse.de
- armv7l: Update config files.
- commit d223353
-------------------------------------------------------------------
Thu Feb 9 12:48:21 CET 2012 - agraf@suse.de
- armv7l: config: integrate bmwiedemann's updates to make it usable
- commit 76d12ed
-------------------------------------------------------------------
Tue Feb 7 18:28:41 CET 2012 - jeffm@suse.com
- Update vanilla config files.
- commit fd3673f
-------------------------------------------------------------------
Tue Feb 7 18:12:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc2.
- Eliminated 5 patches.
- Xen is disabled.
- commit d017ea1
-------------------------------------------------------------------
Sat Feb 4 15:19:04 CET 2012 - jslaby@suse.cz

View File

@ -17,14 +17,15 @@
# norootforbuild
%define srcversion 3.2
%define patchversion 3.2.10
%define srcversion 3.3
%define patchversion 3.3.0
%define variant %{nil}
%define vanilla_only 0
%include %_sourcedir/kernel-spec-macros
%define build_flavor s390
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
@ -56,7 +57,7 @@
Name: kernel-s390
Summary: The Standard Kernel
Version: 3.2.10
Version: 3.3.0
Release: 0
License: GPL-2.0
Group: System/Kernel
@ -196,6 +197,17 @@ Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: s390
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
%if ! %build_default
BuildArch: i686
# KMPs are always built as i586, because rpm does not allow to build
# subpackages for different architectures. Therefore, we change the
# /usr/src/linux-obj/<arch> symlink to i586.
%define kmp_target_cpu i586
%endif
%endif
# These files are found in the kernel-source package:
NoSource: 0
@ -626,9 +638,9 @@ if [ %CONFIG_MODULES = y ]; then
# Some architecture's $(uname -m) output is different from the ARCH
# parameter that needs to be passed to kbuild. Create symlinks from
# $(uname -m) to the ARCH directory.
if [ ! -e %rpm_install_dir/%_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%_target_cpu
if [ ! -e %rpm_install_dir/%kmp_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%kmp_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%kmp_target_cpu
fi
# We were building in %my_builddir/linux-%srcversion, but the sources will
@ -903,9 +915,9 @@ kernel module packages) against the %build_flavor flavor of the kernel.
%dir /usr/src/linux-obj/%cpu_arch
%ghost /usr/src/linux-obj/%cpu_arch_flavor
%obj_install_dir/%cpu_arch_flavor
%if %_target_cpu != %cpu_arch
%obj_install_dir/%_target_cpu
/usr/src/linux-obj/%_target_cpu
%if %kmp_target_cpu != %cpu_arch
%obj_install_dir/%kmp_target_cpu
/usr/src/linux-obj/%kmp_target_cpu
%endif
%endif

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon Mar 19 11:16:34 CET 2012 - jslaby@suse.cz
- Update (vanilla) config files.
- commit 55a0a56
-------------------------------------------------------------------
Mon Mar 19 11:07:00 CET 2012 - jslaby@suse.cz
- Delete
patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch.
- Delete patches.arch/dell_optiplex_990_fix_reboot.patch.
- Delete
patches.drivers/alsa-hda-0004-Add-missing-static-ADC-tables-for-ALC269-qu.
- Delete patches.drivers/libata-unlock-hpa-by-default.
- Delete patches.fixes/scsi-add-tgps-setting.
- Delete patches.fixes/scsi-dh-rdac-add-stk.
- Delete patches.suse/dm-mpath-evaluate-request-result-and-sense.
- Delete patches.suse/richacl-fix.
Remove unused patches.
- commit 2cbabfe
-------------------------------------------------------------------
Mon Mar 19 06:27:04 CET 2012 - jeffm@suse.com
- Update to 3.3-final.
- commit a9ab64a
-------------------------------------------------------------------
Fri Mar 16 07:23:33 CET 2012 - ohering@suse.de
- Update bugnumber patches.suse/sd_init.mark_majors_busy.patch (bnc#744658).
- commit e60f2c3
-------------------------------------------------------------------
Tue Mar 13 11:07:58 CET 2012 - jslaby@suse.cz
@ -17,6 +51,190 @@ Mon Mar 12 17:02:51 CET 2012 - jslaby@suse.cz
request_irq() (bnc#750106).
- commit 4bff877
-------------------------------------------------------------------
Mon Mar 12 16:35:36 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc7 and c/s 1163.
- commit 0054c83
-------------------------------------------------------------------
Mon Mar 12 15:26:55 CET 2012 - ohering@suse.de
- Staging: hv: storvsc: Cleanup some comments.
- Staging: hv: storvsc: Cleanup storvsc_probe().
- Staging: hv: storvsc: Cleanup storvsc_queuecommand().
- Staging: hv: storvsc: Introduce defines for srb status codes.
- Staging: hv: storvsc: Cleanup storvsc_host_reset_handler().
- Staging: hv: storvsc: Move and cleanup storvsc_remove().
- Staging: hv: storvsc: Add a comment to explain life-cycle
management.
- Staging: hv: storvsc: Get rid of the on_io_completion in
hv_storvsc_request.
- Staging: hv: storvsc: Rename the context field in
hv_storvsc_request.
- Staging: hv: storvsc: Miscellaneous cleanup of storvsc driver.
- Staging: hv: storvsc: Cleanup the code for generating protocol
version.
- Staging: hv: storvsc: Cleanup some protocol related constants.
- Staging: hv: storvsc: Get rid of some unused defines.
- Staging: hv: storvsc: Consolidate the request structure.
- Staging: hv: storvsc: Consolidate all the wire protocol
definitions.
- Staging: hv: storvsc: Move the storage driver out of the
staging area.
- Rename patches.suse/staging-hv-pata_piix-ignore-disks.patch to
patches.suse/suse-hv-pata_piix-ignore-disks.patch
- commit 7487199
-------------------------------------------------------------------
Mon Mar 12 03:43:53 CET 2012 - jeffm@suse.com
- Update to 3.3-rc7.
- commit 81a18ea
-------------------------------------------------------------------
Sun Mar 11 00:32:36 CET 2012 - jeffm@suse.com
- btrfs: Handle EIO.
- btrfs: add varargs to btrfs_error.
- btrfs: Remove BUG_ON from __finish_chunk_alloc().
- btrfs: Remove BUG_ON from __btrfs_alloc_chunk().
- btrfs: Don't BUG_ON insert errors in btrfs_alloc_dev_extent().
- btrfs: Go readonly on tree errors in balance_level.
- btrfs: Don't BUG_ON errors from update_ref_for_cow().
- btrfs: Go readonly on bad extent refs in update_ref_for_cow().
- btrfs: Don't BUG_ON errors in __finish_chunk_alloc().
- btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range().
- btrfs: Don't BUG_ON() errors in update_ref_for_cow().
- btrfs: Don't BUG_ON errors from btrfs_create_subvol_root().
- btrfs: btrfs_drop_snapshot should return int.
- brfs: split extent_state ops.
- btrfs: drop gfp_t from lock_extent.
- btrfs: scrub functions should return void.
- btrfs: btrfs_set_item_key_safe should BUG on error and return
void.
- btrfs: Add extent_state alloc/free tracing.
- btrfs: btrfs_destroy_pending_snapshots should return void.
- btrfs: btrfs_destroy_ordered_extents should return void.
- btrfs: btrfs_destroy_ordered_operations should return void.
- btrfs: del_fs_roots should return void.
- btrfs: btrfs_free_fs_root should return void.
- btrfs: btrfs_add_ordered_sum should return void.
- btrfs: btrfs_add_ordered_operation should return void.
- btrfs: btrfs_run_ordered_operations should return void.
- btrfs: btrfs_wait_ordered_range should return void.
- btrfs: btrfs_wait_ordered_extents should return void.
- btrfs: __btrfs_remove_ordered_extent should return void.
- btrfs: btrfs_put_ordered_extent should return void.
- btrfs: update_inline_extent_backref should return void.
- btrfs: copy_for_split should return void.
- btrfs: end_compressed_writeback should return void.
- btrfs: btrfs_extend_item should return void.
- btrfs: btrfs_truncate_item should return void.
- btrfs: add_delayed_data_ref should return void.
- btrfs: add_delayed_tree_ref should return void.
- btrfs: add_delayed_ref_head should return void.
- btrfs: insert_ptr should return void.
- btrfs: del_ptr should return void.
- btrfs: setup_items_for_insert should return void.
- btrfs: fixup_low_keys should return void.
- btrfs: __add_reloc_root error push-up.
- btrfs: ->submit_bio_hook error push-up.
- btrfs: Factor out tree->ops->merge_bio_hook call.
- btrfs: Simplify btrfs_submit_bio_hook.
- btrfs: Fix kfree of member instead of structure.
- btrfs: setup_inline_extent_backref should return void.
- btrfs: btrfs_set_block_group_rw should return void.
- btrfs: btrfs_prepare_extent_commit should return void.
- btrfs: btrfs_destroy_delalloc_inodes should return void.
- btrfs: __setup_root should return void.
- btrfs: btrfs_invalidate_inodes should return void.
- btrfs: btrfs_init_compress should return void.
- btrfs: wait_for_writer should return void.
- btrfs: btrfs_end_log_trans should return void.
- btrfs: btrfs_requeue_work should return void.
- btrfs: btrfs_stop_workers should return void.
- btrfs: run_ordered_completions should return void.
- btrfs: fill_device_from_item should return void.
- btrfs: schedule_bio should return void.
- btrfs: btrfs_close_extra_devices should return void.
- btrfs: run_scheduled_bios should return void.
- btrfs: btrfs_cleanup_fs_uuids should return void.
- btrfs: clear_extent_buffer_dirty should return void.
- btrfs: check_page_writeback should return void.
- btrfs: check_page_locked should return void.
- btrfs: check_page_uptodate should return void.
- btrfs: __unlock_for_delalloc should return void.
- btrfs: wait_extent_bit should return void.
- btrfs: wait_on_state should return void.
- btrfs: btrfs_update_root error push-up.
- btrfs: find_and_setup_root error push-up.
- btrfs: Remove set bits return from clear_extent_bit.
- btrfs: avoid NULL deref in btrfs_reserve_extent with
DEBUG_ENOSPC.
- btrfs: clean_tree_block should panic on observed memory
corruption and return void.
- btrfs: btrfs_tree_{,un}lock should return void.
- btrfs: Simplify btrfs_insert_root.
- btrfs: Panic on bad rbtree operations.
- btrfs: Catch locking failures in {set,clear,convert}_extent_bit.
- btrfs: Add btrfs_panic().
- commit fd31baf
-------------------------------------------------------------------
Fri Mar 9 15:02:13 CET 2012 - ohering@suse.de
- mark busy sd majors as allocated (bug#744658).
- commit b2a640b
-------------------------------------------------------------------
Thu Mar 8 13:37:39 CET 2012 - mmarek@suse.cz
- Fix vanilla config files.
- commit b343c8a
-------------------------------------------------------------------
Thu Mar 8 11:56:26 CET 2012 - mmarek@suse.cz
- Delete patches.rpmify/nvme-broken, nvme builds again on 32bit.
- commit d60272f
-------------------------------------------------------------------
Thu Mar 8 11:34:18 CET 2012 - jbeulich@novell.com
- patches.suse/crasher-26.diff: Eliminate build warnings.
- commit 67c3c8d
-------------------------------------------------------------------
Thu Mar 8 10:55:04 CET 2012 - agraf@suse.de
- armv7l: config: omap: disable HDMI output (breaks build)
- commit 6a871bd
-------------------------------------------------------------------
Tue Mar 6 20:02:14 CET 2012 - agraf@suse.de
- armv7l: omap2plus: Enable TIDSPBRIDGE and SND codecs
- commit 0d8ec4d
-------------------------------------------------------------------
Mon Mar 5 07:01:47 CET 2012 - jeffm@suse.com
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit f4b95ae
-------------------------------------------------------------------
Mon Mar 5 05:35:06 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6. Previous commit was configs.
- commit 639167f
-------------------------------------------------------------------
Mon Mar 5 05:14:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6.
- commit ebec13a
-------------------------------------------------------------------
Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
@ -24,6 +242,13 @@ Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit 2c205b4
-------------------------------------------------------------------
Sun Mar 4 14:21:47 CET 2012 - jslaby@suse.cz
- Update config files.
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit adb37b7
-------------------------------------------------------------------
Thu Mar 1 18:15:58 CET 2012 - jslaby@suse.cz
@ -38,6 +263,14 @@ Thu Mar 1 10:00:42 CET 2012 - jslaby@suse.cz
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit 82a8603
-------------------------------------------------------------------
Wed Feb 29 15:22:34 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc5 and c/s 1157.
- config.conf: Re-enable Xen configs.
- Update config files.
- commit f225622
-------------------------------------------------------------------
Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
@ -47,6 +280,12 @@ Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
same fix will be ported here.
- commit 2bcad53
-------------------------------------------------------------------
Mon Feb 27 03:38:40 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc5.
- commit 0b7f048
-------------------------------------------------------------------
Sun Feb 26 14:19:13 CET 2012 - jslaby@suse.cz
@ -75,6 +314,12 @@ Tue Feb 21 11:56:39 CET 2012 - jslaby@suse.cz
- Linux 3.2.7.
- commit 3d38d11
-------------------------------------------------------------------
Sun Feb 19 18:00:16 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc4.
- commit 8831dca
-------------------------------------------------------------------
Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
@ -83,6 +328,12 @@ Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
patches.fixes/PM-Hibernate-Fix-s2disk-regression-related-to-freezi.patch.
- commit 264e0d4
-------------------------------------------------------------------
Mon Feb 13 19:33:57 CET 2012 - trenn@suse.de
- cpufreq/gx: Fix the compile error.
- commit 4ba1d8b
-------------------------------------------------------------------
Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
@ -90,6 +341,93 @@ Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
Enable brcm80211 wireless driver.
- commit 70a4760
-------------------------------------------------------------------
Mon Feb 13 17:23:49 CET 2012 - mmarek@suse.cz
- nvme: Mark as broken on x86_32.
- commit 28ad576
-------------------------------------------------------------------
Sun Feb 12 18:15:10 CET 2012 - trenn@suse.de
- Add driver auto probing for x86 features v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Fix overrun check in arch_print_cpu_modalias()
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- crypto: Add support for x86 cpuid
auto loading for x86 crypto drivers
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Clean up modalias feature matching
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel-idle: convert to x86_cpu_id auto probing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert via-cputemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k7: Fix CPU family number
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: Load acpi-cpufreq from processor driver automatically
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Revert change of auto_demotion_flags for Nehalem
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert coretemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k6: Really enable auto-loading
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- X86: Introduce HW-Pstate scattered cpuid feature
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- cpufreq: Add support for x86 cpuinfo auto loading v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86: autoload microcode driver on Intel and AMD systems v2
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- CPU: Introduce ARCH_HAS_CPU_AUTOPROBE and X86 parts
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: remove duplicated lines of merging
problems with acpi_processor_start
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- Update config files.
- commit 6efe9b5
-------------------------------------------------------------------
Fri Feb 10 12:03:36 CET 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Build x86 packages as i686, except for
-default (bnc#745632). KMPs are still built as i586.
- commit 88a632b
-------------------------------------------------------------------
Thu Feb 9 15:57:54 CET 2012 - jeffm@suse.com
- Update to 3.3-rc3.
- commit 07ec27c
-------------------------------------------------------------------
Thu Feb 9 12:53:26 CET 2012 - agraf@suse.de
- armv7l: Update config files.
- commit d223353
-------------------------------------------------------------------
Thu Feb 9 12:48:21 CET 2012 - agraf@suse.de
- armv7l: config: integrate bmwiedemann's updates to make it usable
- commit 76d12ed
-------------------------------------------------------------------
Tue Feb 7 18:28:41 CET 2012 - jeffm@suse.com
- Update vanilla config files.
- commit fd3673f
-------------------------------------------------------------------
Tue Feb 7 18:12:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc2.
- Eliminated 5 patches.
- Xen is disabled.
- commit d017ea1
-------------------------------------------------------------------
Sat Feb 4 15:19:04 CET 2012 - jslaby@suse.cz

View File

@ -18,8 +18,8 @@
# norootforbuild
# icecream 0
%define srcversion 3.2
%define patchversion 3.2.10
%define srcversion 3.3
%define patchversion 3.3.0
%define variant %{nil}
%define vanilla_only 0
@ -29,7 +29,7 @@
Name: kernel-source
Summary: The Linux Kernel Sources
Version: 3.2.10
Version: 3.3.0
Release: 0
License: GPL-2.0
Group: Development/Sources

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon Mar 19 11:16:34 CET 2012 - jslaby@suse.cz
- Update (vanilla) config files.
- commit 55a0a56
-------------------------------------------------------------------
Mon Mar 19 11:07:00 CET 2012 - jslaby@suse.cz
- Delete
patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch.
- Delete patches.arch/dell_optiplex_990_fix_reboot.patch.
- Delete
patches.drivers/alsa-hda-0004-Add-missing-static-ADC-tables-for-ALC269-qu.
- Delete patches.drivers/libata-unlock-hpa-by-default.
- Delete patches.fixes/scsi-add-tgps-setting.
- Delete patches.fixes/scsi-dh-rdac-add-stk.
- Delete patches.suse/dm-mpath-evaluate-request-result-and-sense.
- Delete patches.suse/richacl-fix.
Remove unused patches.
- commit 2cbabfe
-------------------------------------------------------------------
Mon Mar 19 06:27:04 CET 2012 - jeffm@suse.com
- Update to 3.3-final.
- commit a9ab64a
-------------------------------------------------------------------
Fri Mar 16 07:23:33 CET 2012 - ohering@suse.de
- Update bugnumber patches.suse/sd_init.mark_majors_busy.patch (bnc#744658).
- commit e60f2c3
-------------------------------------------------------------------
Tue Mar 13 11:07:58 CET 2012 - jslaby@suse.cz
@ -17,6 +51,190 @@ Mon Mar 12 17:02:51 CET 2012 - jslaby@suse.cz
request_irq() (bnc#750106).
- commit 4bff877
-------------------------------------------------------------------
Mon Mar 12 16:35:36 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc7 and c/s 1163.
- commit 0054c83
-------------------------------------------------------------------
Mon Mar 12 15:26:55 CET 2012 - ohering@suse.de
- Staging: hv: storvsc: Cleanup some comments.
- Staging: hv: storvsc: Cleanup storvsc_probe().
- Staging: hv: storvsc: Cleanup storvsc_queuecommand().
- Staging: hv: storvsc: Introduce defines for srb status codes.
- Staging: hv: storvsc: Cleanup storvsc_host_reset_handler().
- Staging: hv: storvsc: Move and cleanup storvsc_remove().
- Staging: hv: storvsc: Add a comment to explain life-cycle
management.
- Staging: hv: storvsc: Get rid of the on_io_completion in
hv_storvsc_request.
- Staging: hv: storvsc: Rename the context field in
hv_storvsc_request.
- Staging: hv: storvsc: Miscellaneous cleanup of storvsc driver.
- Staging: hv: storvsc: Cleanup the code for generating protocol
version.
- Staging: hv: storvsc: Cleanup some protocol related constants.
- Staging: hv: storvsc: Get rid of some unused defines.
- Staging: hv: storvsc: Consolidate the request structure.
- Staging: hv: storvsc: Consolidate all the wire protocol
definitions.
- Staging: hv: storvsc: Move the storage driver out of the
staging area.
- Rename patches.suse/staging-hv-pata_piix-ignore-disks.patch to
patches.suse/suse-hv-pata_piix-ignore-disks.patch
- commit 7487199
-------------------------------------------------------------------
Mon Mar 12 03:43:53 CET 2012 - jeffm@suse.com
- Update to 3.3-rc7.
- commit 81a18ea
-------------------------------------------------------------------
Sun Mar 11 00:32:36 CET 2012 - jeffm@suse.com
- btrfs: Handle EIO.
- btrfs: add varargs to btrfs_error.
- btrfs: Remove BUG_ON from __finish_chunk_alloc().
- btrfs: Remove BUG_ON from __btrfs_alloc_chunk().
- btrfs: Don't BUG_ON insert errors in btrfs_alloc_dev_extent().
- btrfs: Go readonly on tree errors in balance_level.
- btrfs: Don't BUG_ON errors from update_ref_for_cow().
- btrfs: Go readonly on bad extent refs in update_ref_for_cow().
- btrfs: Don't BUG_ON errors in __finish_chunk_alloc().
- btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range().
- btrfs: Don't BUG_ON() errors in update_ref_for_cow().
- btrfs: Don't BUG_ON errors from btrfs_create_subvol_root().
- btrfs: btrfs_drop_snapshot should return int.
- brfs: split extent_state ops.
- btrfs: drop gfp_t from lock_extent.
- btrfs: scrub functions should return void.
- btrfs: btrfs_set_item_key_safe should BUG on error and return
void.
- btrfs: Add extent_state alloc/free tracing.
- btrfs: btrfs_destroy_pending_snapshots should return void.
- btrfs: btrfs_destroy_ordered_extents should return void.
- btrfs: btrfs_destroy_ordered_operations should return void.
- btrfs: del_fs_roots should return void.
- btrfs: btrfs_free_fs_root should return void.
- btrfs: btrfs_add_ordered_sum should return void.
- btrfs: btrfs_add_ordered_operation should return void.
- btrfs: btrfs_run_ordered_operations should return void.
- btrfs: btrfs_wait_ordered_range should return void.
- btrfs: btrfs_wait_ordered_extents should return void.
- btrfs: __btrfs_remove_ordered_extent should return void.
- btrfs: btrfs_put_ordered_extent should return void.
- btrfs: update_inline_extent_backref should return void.
- btrfs: copy_for_split should return void.
- btrfs: end_compressed_writeback should return void.
- btrfs: btrfs_extend_item should return void.
- btrfs: btrfs_truncate_item should return void.
- btrfs: add_delayed_data_ref should return void.
- btrfs: add_delayed_tree_ref should return void.
- btrfs: add_delayed_ref_head should return void.
- btrfs: insert_ptr should return void.
- btrfs: del_ptr should return void.
- btrfs: setup_items_for_insert should return void.
- btrfs: fixup_low_keys should return void.
- btrfs: __add_reloc_root error push-up.
- btrfs: ->submit_bio_hook error push-up.
- btrfs: Factor out tree->ops->merge_bio_hook call.
- btrfs: Simplify btrfs_submit_bio_hook.
- btrfs: Fix kfree of member instead of structure.
- btrfs: setup_inline_extent_backref should return void.
- btrfs: btrfs_set_block_group_rw should return void.
- btrfs: btrfs_prepare_extent_commit should return void.
- btrfs: btrfs_destroy_delalloc_inodes should return void.
- btrfs: __setup_root should return void.
- btrfs: btrfs_invalidate_inodes should return void.
- btrfs: btrfs_init_compress should return void.
- btrfs: wait_for_writer should return void.
- btrfs: btrfs_end_log_trans should return void.
- btrfs: btrfs_requeue_work should return void.
- btrfs: btrfs_stop_workers should return void.
- btrfs: run_ordered_completions should return void.
- btrfs: fill_device_from_item should return void.
- btrfs: schedule_bio should return void.
- btrfs: btrfs_close_extra_devices should return void.
- btrfs: run_scheduled_bios should return void.
- btrfs: btrfs_cleanup_fs_uuids should return void.
- btrfs: clear_extent_buffer_dirty should return void.
- btrfs: check_page_writeback should return void.
- btrfs: check_page_locked should return void.
- btrfs: check_page_uptodate should return void.
- btrfs: __unlock_for_delalloc should return void.
- btrfs: wait_extent_bit should return void.
- btrfs: wait_on_state should return void.
- btrfs: btrfs_update_root error push-up.
- btrfs: find_and_setup_root error push-up.
- btrfs: Remove set bits return from clear_extent_bit.
- btrfs: avoid NULL deref in btrfs_reserve_extent with
DEBUG_ENOSPC.
- btrfs: clean_tree_block should panic on observed memory
corruption and return void.
- btrfs: btrfs_tree_{,un}lock should return void.
- btrfs: Simplify btrfs_insert_root.
- btrfs: Panic on bad rbtree operations.
- btrfs: Catch locking failures in {set,clear,convert}_extent_bit.
- btrfs: Add btrfs_panic().
- commit fd31baf
-------------------------------------------------------------------
Fri Mar 9 15:02:13 CET 2012 - ohering@suse.de
- mark busy sd majors as allocated (bug#744658).
- commit b2a640b
-------------------------------------------------------------------
Thu Mar 8 13:37:39 CET 2012 - mmarek@suse.cz
- Fix vanilla config files.
- commit b343c8a
-------------------------------------------------------------------
Thu Mar 8 11:56:26 CET 2012 - mmarek@suse.cz
- Delete patches.rpmify/nvme-broken, nvme builds again on 32bit.
- commit d60272f
-------------------------------------------------------------------
Thu Mar 8 11:34:18 CET 2012 - jbeulich@novell.com
- patches.suse/crasher-26.diff: Eliminate build warnings.
- commit 67c3c8d
-------------------------------------------------------------------
Thu Mar 8 10:55:04 CET 2012 - agraf@suse.de
- armv7l: config: omap: disable HDMI output (breaks build)
- commit 6a871bd
-------------------------------------------------------------------
Tue Mar 6 20:02:14 CET 2012 - agraf@suse.de
- armv7l: omap2plus: Enable TIDSPBRIDGE and SND codecs
- commit 0d8ec4d
-------------------------------------------------------------------
Mon Mar 5 07:01:47 CET 2012 - jeffm@suse.com
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit f4b95ae
-------------------------------------------------------------------
Mon Mar 5 05:35:06 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6. Previous commit was configs.
- commit 639167f
-------------------------------------------------------------------
Mon Mar 5 05:14:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6.
- commit ebec13a
-------------------------------------------------------------------
Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
@ -24,6 +242,13 @@ Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit 2c205b4
-------------------------------------------------------------------
Sun Mar 4 14:21:47 CET 2012 - jslaby@suse.cz
- Update config files.
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit adb37b7
-------------------------------------------------------------------
Thu Mar 1 18:15:58 CET 2012 - jslaby@suse.cz
@ -38,6 +263,14 @@ Thu Mar 1 10:00:42 CET 2012 - jslaby@suse.cz
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit 82a8603
-------------------------------------------------------------------
Wed Feb 29 15:22:34 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc5 and c/s 1157.
- config.conf: Re-enable Xen configs.
- Update config files.
- commit f225622
-------------------------------------------------------------------
Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
@ -47,6 +280,12 @@ Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
same fix will be ported here.
- commit 2bcad53
-------------------------------------------------------------------
Mon Feb 27 03:38:40 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc5.
- commit 0b7f048
-------------------------------------------------------------------
Sun Feb 26 14:19:13 CET 2012 - jslaby@suse.cz
@ -75,6 +314,12 @@ Tue Feb 21 11:56:39 CET 2012 - jslaby@suse.cz
- Linux 3.2.7.
- commit 3d38d11
-------------------------------------------------------------------
Sun Feb 19 18:00:16 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc4.
- commit 8831dca
-------------------------------------------------------------------
Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
@ -83,6 +328,12 @@ Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
patches.fixes/PM-Hibernate-Fix-s2disk-regression-related-to-freezi.patch.
- commit 264e0d4
-------------------------------------------------------------------
Mon Feb 13 19:33:57 CET 2012 - trenn@suse.de
- cpufreq/gx: Fix the compile error.
- commit 4ba1d8b
-------------------------------------------------------------------
Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
@ -90,6 +341,93 @@ Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
Enable brcm80211 wireless driver.
- commit 70a4760
-------------------------------------------------------------------
Mon Feb 13 17:23:49 CET 2012 - mmarek@suse.cz
- nvme: Mark as broken on x86_32.
- commit 28ad576
-------------------------------------------------------------------
Sun Feb 12 18:15:10 CET 2012 - trenn@suse.de
- Add driver auto probing for x86 features v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Fix overrun check in arch_print_cpu_modalias()
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- crypto: Add support for x86 cpuid
auto loading for x86 crypto drivers
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Clean up modalias feature matching
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel-idle: convert to x86_cpu_id auto probing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert via-cputemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k7: Fix CPU family number
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: Load acpi-cpufreq from processor driver automatically
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Revert change of auto_demotion_flags for Nehalem
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert coretemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k6: Really enable auto-loading
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- X86: Introduce HW-Pstate scattered cpuid feature
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- cpufreq: Add support for x86 cpuinfo auto loading v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86: autoload microcode driver on Intel and AMD systems v2
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- CPU: Introduce ARCH_HAS_CPU_AUTOPROBE and X86 parts
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: remove duplicated lines of merging
problems with acpi_processor_start
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- Update config files.
- commit 6efe9b5
-------------------------------------------------------------------
Fri Feb 10 12:03:36 CET 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Build x86 packages as i686, except for
-default (bnc#745632). KMPs are still built as i586.
- commit 88a632b
-------------------------------------------------------------------
Thu Feb 9 15:57:54 CET 2012 - jeffm@suse.com
- Update to 3.3-rc3.
- commit 07ec27c
-------------------------------------------------------------------
Thu Feb 9 12:53:26 CET 2012 - agraf@suse.de
- armv7l: Update config files.
- commit d223353
-------------------------------------------------------------------
Thu Feb 9 12:48:21 CET 2012 - agraf@suse.de
- armv7l: config: integrate bmwiedemann's updates to make it usable
- commit 76d12ed
-------------------------------------------------------------------
Tue Feb 7 18:28:41 CET 2012 - jeffm@suse.com
- Update vanilla config files.
- commit fd3673f
-------------------------------------------------------------------
Tue Feb 7 18:12:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc2.
- Eliminated 5 patches.
- Xen is disabled.
- commit d017ea1
-------------------------------------------------------------------
Sat Feb 4 15:19:04 CET 2012 - jslaby@suse.cz

View File

@ -23,7 +23,7 @@
Name: kernel-syms
Summary: Kernel Symbol Versions (modversions)
Version: 3.2.10
Version: 3.3.0
%if %using_buildservice
Release: 0
%else

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon Mar 19 11:16:34 CET 2012 - jslaby@suse.cz
- Update (vanilla) config files.
- commit 55a0a56
-------------------------------------------------------------------
Mon Mar 19 11:07:00 CET 2012 - jslaby@suse.cz
- Delete
patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch.
- Delete patches.arch/dell_optiplex_990_fix_reboot.patch.
- Delete
patches.drivers/alsa-hda-0004-Add-missing-static-ADC-tables-for-ALC269-qu.
- Delete patches.drivers/libata-unlock-hpa-by-default.
- Delete patches.fixes/scsi-add-tgps-setting.
- Delete patches.fixes/scsi-dh-rdac-add-stk.
- Delete patches.suse/dm-mpath-evaluate-request-result-and-sense.
- Delete patches.suse/richacl-fix.
Remove unused patches.
- commit 2cbabfe
-------------------------------------------------------------------
Mon Mar 19 06:27:04 CET 2012 - jeffm@suse.com
- Update to 3.3-final.
- commit a9ab64a
-------------------------------------------------------------------
Fri Mar 16 07:23:33 CET 2012 - ohering@suse.de
- Update bugnumber patches.suse/sd_init.mark_majors_busy.patch (bnc#744658).
- commit e60f2c3
-------------------------------------------------------------------
Tue Mar 13 11:07:58 CET 2012 - jslaby@suse.cz
@ -17,6 +51,190 @@ Mon Mar 12 17:02:51 CET 2012 - jslaby@suse.cz
request_irq() (bnc#750106).
- commit 4bff877
-------------------------------------------------------------------
Mon Mar 12 16:35:36 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc7 and c/s 1163.
- commit 0054c83
-------------------------------------------------------------------
Mon Mar 12 15:26:55 CET 2012 - ohering@suse.de
- Staging: hv: storvsc: Cleanup some comments.
- Staging: hv: storvsc: Cleanup storvsc_probe().
- Staging: hv: storvsc: Cleanup storvsc_queuecommand().
- Staging: hv: storvsc: Introduce defines for srb status codes.
- Staging: hv: storvsc: Cleanup storvsc_host_reset_handler().
- Staging: hv: storvsc: Move and cleanup storvsc_remove().
- Staging: hv: storvsc: Add a comment to explain life-cycle
management.
- Staging: hv: storvsc: Get rid of the on_io_completion in
hv_storvsc_request.
- Staging: hv: storvsc: Rename the context field in
hv_storvsc_request.
- Staging: hv: storvsc: Miscellaneous cleanup of storvsc driver.
- Staging: hv: storvsc: Cleanup the code for generating protocol
version.
- Staging: hv: storvsc: Cleanup some protocol related constants.
- Staging: hv: storvsc: Get rid of some unused defines.
- Staging: hv: storvsc: Consolidate the request structure.
- Staging: hv: storvsc: Consolidate all the wire protocol
definitions.
- Staging: hv: storvsc: Move the storage driver out of the
staging area.
- Rename patches.suse/staging-hv-pata_piix-ignore-disks.patch to
patches.suse/suse-hv-pata_piix-ignore-disks.patch
- commit 7487199
-------------------------------------------------------------------
Mon Mar 12 03:43:53 CET 2012 - jeffm@suse.com
- Update to 3.3-rc7.
- commit 81a18ea
-------------------------------------------------------------------
Sun Mar 11 00:32:36 CET 2012 - jeffm@suse.com
- btrfs: Handle EIO.
- btrfs: add varargs to btrfs_error.
- btrfs: Remove BUG_ON from __finish_chunk_alloc().
- btrfs: Remove BUG_ON from __btrfs_alloc_chunk().
- btrfs: Don't BUG_ON insert errors in btrfs_alloc_dev_extent().
- btrfs: Go readonly on tree errors in balance_level.
- btrfs: Don't BUG_ON errors from update_ref_for_cow().
- btrfs: Go readonly on bad extent refs in update_ref_for_cow().
- btrfs: Don't BUG_ON errors in __finish_chunk_alloc().
- btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range().
- btrfs: Don't BUG_ON() errors in update_ref_for_cow().
- btrfs: Don't BUG_ON errors from btrfs_create_subvol_root().
- btrfs: btrfs_drop_snapshot should return int.
- brfs: split extent_state ops.
- btrfs: drop gfp_t from lock_extent.
- btrfs: scrub functions should return void.
- btrfs: btrfs_set_item_key_safe should BUG on error and return
void.
- btrfs: Add extent_state alloc/free tracing.
- btrfs: btrfs_destroy_pending_snapshots should return void.
- btrfs: btrfs_destroy_ordered_extents should return void.
- btrfs: btrfs_destroy_ordered_operations should return void.
- btrfs: del_fs_roots should return void.
- btrfs: btrfs_free_fs_root should return void.
- btrfs: btrfs_add_ordered_sum should return void.
- btrfs: btrfs_add_ordered_operation should return void.
- btrfs: btrfs_run_ordered_operations should return void.
- btrfs: btrfs_wait_ordered_range should return void.
- btrfs: btrfs_wait_ordered_extents should return void.
- btrfs: __btrfs_remove_ordered_extent should return void.
- btrfs: btrfs_put_ordered_extent should return void.
- btrfs: update_inline_extent_backref should return void.
- btrfs: copy_for_split should return void.
- btrfs: end_compressed_writeback should return void.
- btrfs: btrfs_extend_item should return void.
- btrfs: btrfs_truncate_item should return void.
- btrfs: add_delayed_data_ref should return void.
- btrfs: add_delayed_tree_ref should return void.
- btrfs: add_delayed_ref_head should return void.
- btrfs: insert_ptr should return void.
- btrfs: del_ptr should return void.
- btrfs: setup_items_for_insert should return void.
- btrfs: fixup_low_keys should return void.
- btrfs: __add_reloc_root error push-up.
- btrfs: ->submit_bio_hook error push-up.
- btrfs: Factor out tree->ops->merge_bio_hook call.
- btrfs: Simplify btrfs_submit_bio_hook.
- btrfs: Fix kfree of member instead of structure.
- btrfs: setup_inline_extent_backref should return void.
- btrfs: btrfs_set_block_group_rw should return void.
- btrfs: btrfs_prepare_extent_commit should return void.
- btrfs: btrfs_destroy_delalloc_inodes should return void.
- btrfs: __setup_root should return void.
- btrfs: btrfs_invalidate_inodes should return void.
- btrfs: btrfs_init_compress should return void.
- btrfs: wait_for_writer should return void.
- btrfs: btrfs_end_log_trans should return void.
- btrfs: btrfs_requeue_work should return void.
- btrfs: btrfs_stop_workers should return void.
- btrfs: run_ordered_completions should return void.
- btrfs: fill_device_from_item should return void.
- btrfs: schedule_bio should return void.
- btrfs: btrfs_close_extra_devices should return void.
- btrfs: run_scheduled_bios should return void.
- btrfs: btrfs_cleanup_fs_uuids should return void.
- btrfs: clear_extent_buffer_dirty should return void.
- btrfs: check_page_writeback should return void.
- btrfs: check_page_locked should return void.
- btrfs: check_page_uptodate should return void.
- btrfs: __unlock_for_delalloc should return void.
- btrfs: wait_extent_bit should return void.
- btrfs: wait_on_state should return void.
- btrfs: btrfs_update_root error push-up.
- btrfs: find_and_setup_root error push-up.
- btrfs: Remove set bits return from clear_extent_bit.
- btrfs: avoid NULL deref in btrfs_reserve_extent with
DEBUG_ENOSPC.
- btrfs: clean_tree_block should panic on observed memory
corruption and return void.
- btrfs: btrfs_tree_{,un}lock should return void.
- btrfs: Simplify btrfs_insert_root.
- btrfs: Panic on bad rbtree operations.
- btrfs: Catch locking failures in {set,clear,convert}_extent_bit.
- btrfs: Add btrfs_panic().
- commit fd31baf
-------------------------------------------------------------------
Fri Mar 9 15:02:13 CET 2012 - ohering@suse.de
- mark busy sd majors as allocated (bug#744658).
- commit b2a640b
-------------------------------------------------------------------
Thu Mar 8 13:37:39 CET 2012 - mmarek@suse.cz
- Fix vanilla config files.
- commit b343c8a
-------------------------------------------------------------------
Thu Mar 8 11:56:26 CET 2012 - mmarek@suse.cz
- Delete patches.rpmify/nvme-broken, nvme builds again on 32bit.
- commit d60272f
-------------------------------------------------------------------
Thu Mar 8 11:34:18 CET 2012 - jbeulich@novell.com
- patches.suse/crasher-26.diff: Eliminate build warnings.
- commit 67c3c8d
-------------------------------------------------------------------
Thu Mar 8 10:55:04 CET 2012 - agraf@suse.de
- armv7l: config: omap: disable HDMI output (breaks build)
- commit 6a871bd
-------------------------------------------------------------------
Tue Mar 6 20:02:14 CET 2012 - agraf@suse.de
- armv7l: omap2plus: Enable TIDSPBRIDGE and SND codecs
- commit 0d8ec4d
-------------------------------------------------------------------
Mon Mar 5 07:01:47 CET 2012 - jeffm@suse.com
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit f4b95ae
-------------------------------------------------------------------
Mon Mar 5 05:35:06 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6. Previous commit was configs.
- commit 639167f
-------------------------------------------------------------------
Mon Mar 5 05:14:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6.
- commit ebec13a
-------------------------------------------------------------------
Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
@ -24,6 +242,13 @@ Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit 2c205b4
-------------------------------------------------------------------
Sun Mar 4 14:21:47 CET 2012 - jslaby@suse.cz
- Update config files.
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit adb37b7
-------------------------------------------------------------------
Thu Mar 1 18:15:58 CET 2012 - jslaby@suse.cz
@ -38,6 +263,14 @@ Thu Mar 1 10:00:42 CET 2012 - jslaby@suse.cz
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit 82a8603
-------------------------------------------------------------------
Wed Feb 29 15:22:34 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc5 and c/s 1157.
- config.conf: Re-enable Xen configs.
- Update config files.
- commit f225622
-------------------------------------------------------------------
Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
@ -47,6 +280,12 @@ Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
same fix will be ported here.
- commit 2bcad53
-------------------------------------------------------------------
Mon Feb 27 03:38:40 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc5.
- commit 0b7f048
-------------------------------------------------------------------
Sun Feb 26 14:19:13 CET 2012 - jslaby@suse.cz
@ -75,6 +314,12 @@ Tue Feb 21 11:56:39 CET 2012 - jslaby@suse.cz
- Linux 3.2.7.
- commit 3d38d11
-------------------------------------------------------------------
Sun Feb 19 18:00:16 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc4.
- commit 8831dca
-------------------------------------------------------------------
Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
@ -83,6 +328,12 @@ Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
patches.fixes/PM-Hibernate-Fix-s2disk-regression-related-to-freezi.patch.
- commit 264e0d4
-------------------------------------------------------------------
Mon Feb 13 19:33:57 CET 2012 - trenn@suse.de
- cpufreq/gx: Fix the compile error.
- commit 4ba1d8b
-------------------------------------------------------------------
Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
@ -90,6 +341,93 @@ Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
Enable brcm80211 wireless driver.
- commit 70a4760
-------------------------------------------------------------------
Mon Feb 13 17:23:49 CET 2012 - mmarek@suse.cz
- nvme: Mark as broken on x86_32.
- commit 28ad576
-------------------------------------------------------------------
Sun Feb 12 18:15:10 CET 2012 - trenn@suse.de
- Add driver auto probing for x86 features v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Fix overrun check in arch_print_cpu_modalias()
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- crypto: Add support for x86 cpuid
auto loading for x86 crypto drivers
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Clean up modalias feature matching
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel-idle: convert to x86_cpu_id auto probing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert via-cputemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k7: Fix CPU family number
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: Load acpi-cpufreq from processor driver automatically
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Revert change of auto_demotion_flags for Nehalem
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert coretemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k6: Really enable auto-loading
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- X86: Introduce HW-Pstate scattered cpuid feature
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- cpufreq: Add support for x86 cpuinfo auto loading v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86: autoload microcode driver on Intel and AMD systems v2
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- CPU: Introduce ARCH_HAS_CPU_AUTOPROBE and X86 parts
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: remove duplicated lines of merging
problems with acpi_processor_start
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- Update config files.
- commit 6efe9b5
-------------------------------------------------------------------
Fri Feb 10 12:03:36 CET 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Build x86 packages as i686, except for
-default (bnc#745632). KMPs are still built as i586.
- commit 88a632b
-------------------------------------------------------------------
Thu Feb 9 15:57:54 CET 2012 - jeffm@suse.com
- Update to 3.3-rc3.
- commit 07ec27c
-------------------------------------------------------------------
Thu Feb 9 12:53:26 CET 2012 - agraf@suse.de
- armv7l: Update config files.
- commit d223353
-------------------------------------------------------------------
Thu Feb 9 12:48:21 CET 2012 - agraf@suse.de
- armv7l: config: integrate bmwiedemann's updates to make it usable
- commit 76d12ed
-------------------------------------------------------------------
Tue Feb 7 18:28:41 CET 2012 - jeffm@suse.com
- Update vanilla config files.
- commit fd3673f
-------------------------------------------------------------------
Tue Feb 7 18:12:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc2.
- Eliminated 5 patches.
- Xen is disabled.
- commit d017ea1
-------------------------------------------------------------------
Sat Feb 4 15:19:04 CET 2012 - jslaby@suse.cz

View File

@ -17,14 +17,15 @@
# norootforbuild
%define srcversion 3.2
%define patchversion 3.2.10
%define srcversion 3.3
%define patchversion 3.3.0
%define variant %{nil}
%define vanilla_only 0
%include %_sourcedir/kernel-spec-macros
%define build_flavor tegra
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
@ -56,7 +57,7 @@
Name: kernel-tegra
Summary: Kernel for Nvidia's Tegra SoC
Version: 3.2.10
Version: 3.3.0
Release: 0
License: GPL-2.0
Group: System/Kernel
@ -193,6 +194,17 @@ Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: armv7l
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
%if ! %build_default
BuildArch: i686
# KMPs are always built as i586, because rpm does not allow to build
# subpackages for different architectures. Therefore, we change the
# /usr/src/linux-obj/<arch> symlink to i586.
%define kmp_target_cpu i586
%endif
%endif
# These files are found in the kernel-source package:
NoSource: 0
@ -624,9 +636,9 @@ if [ %CONFIG_MODULES = y ]; then
# Some architecture's $(uname -m) output is different from the ARCH
# parameter that needs to be passed to kbuild. Create symlinks from
# $(uname -m) to the ARCH directory.
if [ ! -e %rpm_install_dir/%_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%_target_cpu
if [ ! -e %rpm_install_dir/%kmp_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%kmp_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%kmp_target_cpu
fi
# We were building in %my_builddir/linux-%srcversion, but the sources will
@ -903,9 +915,9 @@ kernel module packages) against the %build_flavor flavor of the kernel.
%dir /usr/src/linux-obj/%cpu_arch
%ghost /usr/src/linux-obj/%cpu_arch_flavor
%obj_install_dir/%cpu_arch_flavor
%if %_target_cpu != %cpu_arch
%obj_install_dir/%_target_cpu
/usr/src/linux-obj/%_target_cpu
%if %kmp_target_cpu != %cpu_arch
%obj_install_dir/%kmp_target_cpu
/usr/src/linux-obj/%kmp_target_cpu
%endif
%endif

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon Mar 19 11:16:34 CET 2012 - jslaby@suse.cz
- Update (vanilla) config files.
- commit 55a0a56
-------------------------------------------------------------------
Mon Mar 19 11:07:00 CET 2012 - jslaby@suse.cz
- Delete
patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch.
- Delete patches.arch/dell_optiplex_990_fix_reboot.patch.
- Delete
patches.drivers/alsa-hda-0004-Add-missing-static-ADC-tables-for-ALC269-qu.
- Delete patches.drivers/libata-unlock-hpa-by-default.
- Delete patches.fixes/scsi-add-tgps-setting.
- Delete patches.fixes/scsi-dh-rdac-add-stk.
- Delete patches.suse/dm-mpath-evaluate-request-result-and-sense.
- Delete patches.suse/richacl-fix.
Remove unused patches.
- commit 2cbabfe
-------------------------------------------------------------------
Mon Mar 19 06:27:04 CET 2012 - jeffm@suse.com
- Update to 3.3-final.
- commit a9ab64a
-------------------------------------------------------------------
Fri Mar 16 07:23:33 CET 2012 - ohering@suse.de
- Update bugnumber patches.suse/sd_init.mark_majors_busy.patch (bnc#744658).
- commit e60f2c3
-------------------------------------------------------------------
Tue Mar 13 11:07:58 CET 2012 - jslaby@suse.cz
@ -17,6 +51,190 @@ Mon Mar 12 17:02:51 CET 2012 - jslaby@suse.cz
request_irq() (bnc#750106).
- commit 4bff877
-------------------------------------------------------------------
Mon Mar 12 16:35:36 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc7 and c/s 1163.
- commit 0054c83
-------------------------------------------------------------------
Mon Mar 12 15:26:55 CET 2012 - ohering@suse.de
- Staging: hv: storvsc: Cleanup some comments.
- Staging: hv: storvsc: Cleanup storvsc_probe().
- Staging: hv: storvsc: Cleanup storvsc_queuecommand().
- Staging: hv: storvsc: Introduce defines for srb status codes.
- Staging: hv: storvsc: Cleanup storvsc_host_reset_handler().
- Staging: hv: storvsc: Move and cleanup storvsc_remove().
- Staging: hv: storvsc: Add a comment to explain life-cycle
management.
- Staging: hv: storvsc: Get rid of the on_io_completion in
hv_storvsc_request.
- Staging: hv: storvsc: Rename the context field in
hv_storvsc_request.
- Staging: hv: storvsc: Miscellaneous cleanup of storvsc driver.
- Staging: hv: storvsc: Cleanup the code for generating protocol
version.
- Staging: hv: storvsc: Cleanup some protocol related constants.
- Staging: hv: storvsc: Get rid of some unused defines.
- Staging: hv: storvsc: Consolidate the request structure.
- Staging: hv: storvsc: Consolidate all the wire protocol
definitions.
- Staging: hv: storvsc: Move the storage driver out of the
staging area.
- Rename patches.suse/staging-hv-pata_piix-ignore-disks.patch to
patches.suse/suse-hv-pata_piix-ignore-disks.patch
- commit 7487199
-------------------------------------------------------------------
Mon Mar 12 03:43:53 CET 2012 - jeffm@suse.com
- Update to 3.3-rc7.
- commit 81a18ea
-------------------------------------------------------------------
Sun Mar 11 00:32:36 CET 2012 - jeffm@suse.com
- btrfs: Handle EIO.
- btrfs: add varargs to btrfs_error.
- btrfs: Remove BUG_ON from __finish_chunk_alloc().
- btrfs: Remove BUG_ON from __btrfs_alloc_chunk().
- btrfs: Don't BUG_ON insert errors in btrfs_alloc_dev_extent().
- btrfs: Go readonly on tree errors in balance_level.
- btrfs: Don't BUG_ON errors from update_ref_for_cow().
- btrfs: Go readonly on bad extent refs in update_ref_for_cow().
- btrfs: Don't BUG_ON errors in __finish_chunk_alloc().
- btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range().
- btrfs: Don't BUG_ON() errors in update_ref_for_cow().
- btrfs: Don't BUG_ON errors from btrfs_create_subvol_root().
- btrfs: btrfs_drop_snapshot should return int.
- brfs: split extent_state ops.
- btrfs: drop gfp_t from lock_extent.
- btrfs: scrub functions should return void.
- btrfs: btrfs_set_item_key_safe should BUG on error and return
void.
- btrfs: Add extent_state alloc/free tracing.
- btrfs: btrfs_destroy_pending_snapshots should return void.
- btrfs: btrfs_destroy_ordered_extents should return void.
- btrfs: btrfs_destroy_ordered_operations should return void.
- btrfs: del_fs_roots should return void.
- btrfs: btrfs_free_fs_root should return void.
- btrfs: btrfs_add_ordered_sum should return void.
- btrfs: btrfs_add_ordered_operation should return void.
- btrfs: btrfs_run_ordered_operations should return void.
- btrfs: btrfs_wait_ordered_range should return void.
- btrfs: btrfs_wait_ordered_extents should return void.
- btrfs: __btrfs_remove_ordered_extent should return void.
- btrfs: btrfs_put_ordered_extent should return void.
- btrfs: update_inline_extent_backref should return void.
- btrfs: copy_for_split should return void.
- btrfs: end_compressed_writeback should return void.
- btrfs: btrfs_extend_item should return void.
- btrfs: btrfs_truncate_item should return void.
- btrfs: add_delayed_data_ref should return void.
- btrfs: add_delayed_tree_ref should return void.
- btrfs: add_delayed_ref_head should return void.
- btrfs: insert_ptr should return void.
- btrfs: del_ptr should return void.
- btrfs: setup_items_for_insert should return void.
- btrfs: fixup_low_keys should return void.
- btrfs: __add_reloc_root error push-up.
- btrfs: ->submit_bio_hook error push-up.
- btrfs: Factor out tree->ops->merge_bio_hook call.
- btrfs: Simplify btrfs_submit_bio_hook.
- btrfs: Fix kfree of member instead of structure.
- btrfs: setup_inline_extent_backref should return void.
- btrfs: btrfs_set_block_group_rw should return void.
- btrfs: btrfs_prepare_extent_commit should return void.
- btrfs: btrfs_destroy_delalloc_inodes should return void.
- btrfs: __setup_root should return void.
- btrfs: btrfs_invalidate_inodes should return void.
- btrfs: btrfs_init_compress should return void.
- btrfs: wait_for_writer should return void.
- btrfs: btrfs_end_log_trans should return void.
- btrfs: btrfs_requeue_work should return void.
- btrfs: btrfs_stop_workers should return void.
- btrfs: run_ordered_completions should return void.
- btrfs: fill_device_from_item should return void.
- btrfs: schedule_bio should return void.
- btrfs: btrfs_close_extra_devices should return void.
- btrfs: run_scheduled_bios should return void.
- btrfs: btrfs_cleanup_fs_uuids should return void.
- btrfs: clear_extent_buffer_dirty should return void.
- btrfs: check_page_writeback should return void.
- btrfs: check_page_locked should return void.
- btrfs: check_page_uptodate should return void.
- btrfs: __unlock_for_delalloc should return void.
- btrfs: wait_extent_bit should return void.
- btrfs: wait_on_state should return void.
- btrfs: btrfs_update_root error push-up.
- btrfs: find_and_setup_root error push-up.
- btrfs: Remove set bits return from clear_extent_bit.
- btrfs: avoid NULL deref in btrfs_reserve_extent with
DEBUG_ENOSPC.
- btrfs: clean_tree_block should panic on observed memory
corruption and return void.
- btrfs: btrfs_tree_{,un}lock should return void.
- btrfs: Simplify btrfs_insert_root.
- btrfs: Panic on bad rbtree operations.
- btrfs: Catch locking failures in {set,clear,convert}_extent_bit.
- btrfs: Add btrfs_panic().
- commit fd31baf
-------------------------------------------------------------------
Fri Mar 9 15:02:13 CET 2012 - ohering@suse.de
- mark busy sd majors as allocated (bug#744658).
- commit b2a640b
-------------------------------------------------------------------
Thu Mar 8 13:37:39 CET 2012 - mmarek@suse.cz
- Fix vanilla config files.
- commit b343c8a
-------------------------------------------------------------------
Thu Mar 8 11:56:26 CET 2012 - mmarek@suse.cz
- Delete patches.rpmify/nvme-broken, nvme builds again on 32bit.
- commit d60272f
-------------------------------------------------------------------
Thu Mar 8 11:34:18 CET 2012 - jbeulich@novell.com
- patches.suse/crasher-26.diff: Eliminate build warnings.
- commit 67c3c8d
-------------------------------------------------------------------
Thu Mar 8 10:55:04 CET 2012 - agraf@suse.de
- armv7l: config: omap: disable HDMI output (breaks build)
- commit 6a871bd
-------------------------------------------------------------------
Tue Mar 6 20:02:14 CET 2012 - agraf@suse.de
- armv7l: omap2plus: Enable TIDSPBRIDGE and SND codecs
- commit 0d8ec4d
-------------------------------------------------------------------
Mon Mar 5 07:01:47 CET 2012 - jeffm@suse.com
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit f4b95ae
-------------------------------------------------------------------
Mon Mar 5 05:35:06 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6. Previous commit was configs.
- commit 639167f
-------------------------------------------------------------------
Mon Mar 5 05:14:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6.
- commit ebec13a
-------------------------------------------------------------------
Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
@ -24,6 +242,13 @@ Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit 2c205b4
-------------------------------------------------------------------
Sun Mar 4 14:21:47 CET 2012 - jslaby@suse.cz
- Update config files.
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit adb37b7
-------------------------------------------------------------------
Thu Mar 1 18:15:58 CET 2012 - jslaby@suse.cz
@ -38,6 +263,14 @@ Thu Mar 1 10:00:42 CET 2012 - jslaby@suse.cz
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit 82a8603
-------------------------------------------------------------------
Wed Feb 29 15:22:34 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc5 and c/s 1157.
- config.conf: Re-enable Xen configs.
- Update config files.
- commit f225622
-------------------------------------------------------------------
Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
@ -47,6 +280,12 @@ Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
same fix will be ported here.
- commit 2bcad53
-------------------------------------------------------------------
Mon Feb 27 03:38:40 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc5.
- commit 0b7f048
-------------------------------------------------------------------
Sun Feb 26 14:19:13 CET 2012 - jslaby@suse.cz
@ -75,6 +314,12 @@ Tue Feb 21 11:56:39 CET 2012 - jslaby@suse.cz
- Linux 3.2.7.
- commit 3d38d11
-------------------------------------------------------------------
Sun Feb 19 18:00:16 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc4.
- commit 8831dca
-------------------------------------------------------------------
Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
@ -83,6 +328,12 @@ Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
patches.fixes/PM-Hibernate-Fix-s2disk-regression-related-to-freezi.patch.
- commit 264e0d4
-------------------------------------------------------------------
Mon Feb 13 19:33:57 CET 2012 - trenn@suse.de
- cpufreq/gx: Fix the compile error.
- commit 4ba1d8b
-------------------------------------------------------------------
Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
@ -90,6 +341,93 @@ Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
Enable brcm80211 wireless driver.
- commit 70a4760
-------------------------------------------------------------------
Mon Feb 13 17:23:49 CET 2012 - mmarek@suse.cz
- nvme: Mark as broken on x86_32.
- commit 28ad576
-------------------------------------------------------------------
Sun Feb 12 18:15:10 CET 2012 - trenn@suse.de
- Add driver auto probing for x86 features v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Fix overrun check in arch_print_cpu_modalias()
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- crypto: Add support for x86 cpuid
auto loading for x86 crypto drivers
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Clean up modalias feature matching
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel-idle: convert to x86_cpu_id auto probing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert via-cputemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k7: Fix CPU family number
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: Load acpi-cpufreq from processor driver automatically
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Revert change of auto_demotion_flags for Nehalem
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert coretemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k6: Really enable auto-loading
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- X86: Introduce HW-Pstate scattered cpuid feature
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- cpufreq: Add support for x86 cpuinfo auto loading v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86: autoload microcode driver on Intel and AMD systems v2
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- CPU: Introduce ARCH_HAS_CPU_AUTOPROBE and X86 parts
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: remove duplicated lines of merging
problems with acpi_processor_start
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- Update config files.
- commit 6efe9b5
-------------------------------------------------------------------
Fri Feb 10 12:03:36 CET 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Build x86 packages as i686, except for
-default (bnc#745632). KMPs are still built as i586.
- commit 88a632b
-------------------------------------------------------------------
Thu Feb 9 15:57:54 CET 2012 - jeffm@suse.com
- Update to 3.3-rc3.
- commit 07ec27c
-------------------------------------------------------------------
Thu Feb 9 12:53:26 CET 2012 - agraf@suse.de
- armv7l: Update config files.
- commit d223353
-------------------------------------------------------------------
Thu Feb 9 12:48:21 CET 2012 - agraf@suse.de
- armv7l: config: integrate bmwiedemann's updates to make it usable
- commit 76d12ed
-------------------------------------------------------------------
Tue Feb 7 18:28:41 CET 2012 - jeffm@suse.com
- Update vanilla config files.
- commit fd3673f
-------------------------------------------------------------------
Tue Feb 7 18:12:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc2.
- Eliminated 5 patches.
- Xen is disabled.
- commit d017ea1
-------------------------------------------------------------------
Sat Feb 4 15:19:04 CET 2012 - jslaby@suse.cz

View File

@ -17,14 +17,15 @@
# norootforbuild
%define srcversion 3.2
%define patchversion 3.2.10
%define srcversion 3.3
%define patchversion 3.3.0
%define variant %{nil}
%define vanilla_only 0
%include %_sourcedir/kernel-spec-macros
%define build_flavor trace
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
@ -56,7 +57,7 @@
Name: kernel-trace
Summary: The Standard Kernel with Tracing Features
Version: 3.2.10
Version: 3.3.0
Release: 0
License: GPL-2.0
Group: System/Kernel
@ -204,6 +205,17 @@ Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: %ix86 ia64 ppc64 s390 s390x x86_64
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
%if ! %build_default
BuildArch: i686
# KMPs are always built as i586, because rpm does not allow to build
# subpackages for different architectures. Therefore, we change the
# /usr/src/linux-obj/<arch> symlink to i586.
%define kmp_target_cpu i586
%endif
%endif
# These files are found in the kernel-source package:
NoSource: 0
@ -634,9 +646,9 @@ if [ %CONFIG_MODULES = y ]; then
# Some architecture's $(uname -m) output is different from the ARCH
# parameter that needs to be passed to kbuild. Create symlinks from
# $(uname -m) to the ARCH directory.
if [ ! -e %rpm_install_dir/%_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%_target_cpu
if [ ! -e %rpm_install_dir/%kmp_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%kmp_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%kmp_target_cpu
fi
# We were building in %my_builddir/linux-%srcversion, but the sources will
@ -911,9 +923,9 @@ kernel module packages) against the %build_flavor flavor of the kernel.
%dir /usr/src/linux-obj/%cpu_arch
%ghost /usr/src/linux-obj/%cpu_arch_flavor
%obj_install_dir/%cpu_arch_flavor
%if %_target_cpu != %cpu_arch
%obj_install_dir/%_target_cpu
/usr/src/linux-obj/%_target_cpu
%if %kmp_target_cpu != %cpu_arch
%obj_install_dir/%kmp_target_cpu
/usr/src/linux-obj/%kmp_target_cpu
%endif
%endif

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon Mar 19 11:16:34 CET 2012 - jslaby@suse.cz
- Update (vanilla) config files.
- commit 55a0a56
-------------------------------------------------------------------
Mon Mar 19 11:07:00 CET 2012 - jslaby@suse.cz
- Delete
patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch.
- Delete patches.arch/dell_optiplex_990_fix_reboot.patch.
- Delete
patches.drivers/alsa-hda-0004-Add-missing-static-ADC-tables-for-ALC269-qu.
- Delete patches.drivers/libata-unlock-hpa-by-default.
- Delete patches.fixes/scsi-add-tgps-setting.
- Delete patches.fixes/scsi-dh-rdac-add-stk.
- Delete patches.suse/dm-mpath-evaluate-request-result-and-sense.
- Delete patches.suse/richacl-fix.
Remove unused patches.
- commit 2cbabfe
-------------------------------------------------------------------
Mon Mar 19 06:27:04 CET 2012 - jeffm@suse.com
- Update to 3.3-final.
- commit a9ab64a
-------------------------------------------------------------------
Fri Mar 16 07:23:33 CET 2012 - ohering@suse.de
- Update bugnumber patches.suse/sd_init.mark_majors_busy.patch (bnc#744658).
- commit e60f2c3
-------------------------------------------------------------------
Tue Mar 13 11:07:58 CET 2012 - jslaby@suse.cz
@ -17,6 +51,190 @@ Mon Mar 12 17:02:51 CET 2012 - jslaby@suse.cz
request_irq() (bnc#750106).
- commit 4bff877
-------------------------------------------------------------------
Mon Mar 12 16:35:36 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc7 and c/s 1163.
- commit 0054c83
-------------------------------------------------------------------
Mon Mar 12 15:26:55 CET 2012 - ohering@suse.de
- Staging: hv: storvsc: Cleanup some comments.
- Staging: hv: storvsc: Cleanup storvsc_probe().
- Staging: hv: storvsc: Cleanup storvsc_queuecommand().
- Staging: hv: storvsc: Introduce defines for srb status codes.
- Staging: hv: storvsc: Cleanup storvsc_host_reset_handler().
- Staging: hv: storvsc: Move and cleanup storvsc_remove().
- Staging: hv: storvsc: Add a comment to explain life-cycle
management.
- Staging: hv: storvsc: Get rid of the on_io_completion in
hv_storvsc_request.
- Staging: hv: storvsc: Rename the context field in
hv_storvsc_request.
- Staging: hv: storvsc: Miscellaneous cleanup of storvsc driver.
- Staging: hv: storvsc: Cleanup the code for generating protocol
version.
- Staging: hv: storvsc: Cleanup some protocol related constants.
- Staging: hv: storvsc: Get rid of some unused defines.
- Staging: hv: storvsc: Consolidate the request structure.
- Staging: hv: storvsc: Consolidate all the wire protocol
definitions.
- Staging: hv: storvsc: Move the storage driver out of the
staging area.
- Rename patches.suse/staging-hv-pata_piix-ignore-disks.patch to
patches.suse/suse-hv-pata_piix-ignore-disks.patch
- commit 7487199
-------------------------------------------------------------------
Mon Mar 12 03:43:53 CET 2012 - jeffm@suse.com
- Update to 3.3-rc7.
- commit 81a18ea
-------------------------------------------------------------------
Sun Mar 11 00:32:36 CET 2012 - jeffm@suse.com
- btrfs: Handle EIO.
- btrfs: add varargs to btrfs_error.
- btrfs: Remove BUG_ON from __finish_chunk_alloc().
- btrfs: Remove BUG_ON from __btrfs_alloc_chunk().
- btrfs: Don't BUG_ON insert errors in btrfs_alloc_dev_extent().
- btrfs: Go readonly on tree errors in balance_level.
- btrfs: Don't BUG_ON errors from update_ref_for_cow().
- btrfs: Go readonly on bad extent refs in update_ref_for_cow().
- btrfs: Don't BUG_ON errors in __finish_chunk_alloc().
- btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range().
- btrfs: Don't BUG_ON() errors in update_ref_for_cow().
- btrfs: Don't BUG_ON errors from btrfs_create_subvol_root().
- btrfs: btrfs_drop_snapshot should return int.
- brfs: split extent_state ops.
- btrfs: drop gfp_t from lock_extent.
- btrfs: scrub functions should return void.
- btrfs: btrfs_set_item_key_safe should BUG on error and return
void.
- btrfs: Add extent_state alloc/free tracing.
- btrfs: btrfs_destroy_pending_snapshots should return void.
- btrfs: btrfs_destroy_ordered_extents should return void.
- btrfs: btrfs_destroy_ordered_operations should return void.
- btrfs: del_fs_roots should return void.
- btrfs: btrfs_free_fs_root should return void.
- btrfs: btrfs_add_ordered_sum should return void.
- btrfs: btrfs_add_ordered_operation should return void.
- btrfs: btrfs_run_ordered_operations should return void.
- btrfs: btrfs_wait_ordered_range should return void.
- btrfs: btrfs_wait_ordered_extents should return void.
- btrfs: __btrfs_remove_ordered_extent should return void.
- btrfs: btrfs_put_ordered_extent should return void.
- btrfs: update_inline_extent_backref should return void.
- btrfs: copy_for_split should return void.
- btrfs: end_compressed_writeback should return void.
- btrfs: btrfs_extend_item should return void.
- btrfs: btrfs_truncate_item should return void.
- btrfs: add_delayed_data_ref should return void.
- btrfs: add_delayed_tree_ref should return void.
- btrfs: add_delayed_ref_head should return void.
- btrfs: insert_ptr should return void.
- btrfs: del_ptr should return void.
- btrfs: setup_items_for_insert should return void.
- btrfs: fixup_low_keys should return void.
- btrfs: __add_reloc_root error push-up.
- btrfs: ->submit_bio_hook error push-up.
- btrfs: Factor out tree->ops->merge_bio_hook call.
- btrfs: Simplify btrfs_submit_bio_hook.
- btrfs: Fix kfree of member instead of structure.
- btrfs: setup_inline_extent_backref should return void.
- btrfs: btrfs_set_block_group_rw should return void.
- btrfs: btrfs_prepare_extent_commit should return void.
- btrfs: btrfs_destroy_delalloc_inodes should return void.
- btrfs: __setup_root should return void.
- btrfs: btrfs_invalidate_inodes should return void.
- btrfs: btrfs_init_compress should return void.
- btrfs: wait_for_writer should return void.
- btrfs: btrfs_end_log_trans should return void.
- btrfs: btrfs_requeue_work should return void.
- btrfs: btrfs_stop_workers should return void.
- btrfs: run_ordered_completions should return void.
- btrfs: fill_device_from_item should return void.
- btrfs: schedule_bio should return void.
- btrfs: btrfs_close_extra_devices should return void.
- btrfs: run_scheduled_bios should return void.
- btrfs: btrfs_cleanup_fs_uuids should return void.
- btrfs: clear_extent_buffer_dirty should return void.
- btrfs: check_page_writeback should return void.
- btrfs: check_page_locked should return void.
- btrfs: check_page_uptodate should return void.
- btrfs: __unlock_for_delalloc should return void.
- btrfs: wait_extent_bit should return void.
- btrfs: wait_on_state should return void.
- btrfs: btrfs_update_root error push-up.
- btrfs: find_and_setup_root error push-up.
- btrfs: Remove set bits return from clear_extent_bit.
- btrfs: avoid NULL deref in btrfs_reserve_extent with
DEBUG_ENOSPC.
- btrfs: clean_tree_block should panic on observed memory
corruption and return void.
- btrfs: btrfs_tree_{,un}lock should return void.
- btrfs: Simplify btrfs_insert_root.
- btrfs: Panic on bad rbtree operations.
- btrfs: Catch locking failures in {set,clear,convert}_extent_bit.
- btrfs: Add btrfs_panic().
- commit fd31baf
-------------------------------------------------------------------
Fri Mar 9 15:02:13 CET 2012 - ohering@suse.de
- mark busy sd majors as allocated (bug#744658).
- commit b2a640b
-------------------------------------------------------------------
Thu Mar 8 13:37:39 CET 2012 - mmarek@suse.cz
- Fix vanilla config files.
- commit b343c8a
-------------------------------------------------------------------
Thu Mar 8 11:56:26 CET 2012 - mmarek@suse.cz
- Delete patches.rpmify/nvme-broken, nvme builds again on 32bit.
- commit d60272f
-------------------------------------------------------------------
Thu Mar 8 11:34:18 CET 2012 - jbeulich@novell.com
- patches.suse/crasher-26.diff: Eliminate build warnings.
- commit 67c3c8d
-------------------------------------------------------------------
Thu Mar 8 10:55:04 CET 2012 - agraf@suse.de
- armv7l: config: omap: disable HDMI output (breaks build)
- commit 6a871bd
-------------------------------------------------------------------
Tue Mar 6 20:02:14 CET 2012 - agraf@suse.de
- armv7l: omap2plus: Enable TIDSPBRIDGE and SND codecs
- commit 0d8ec4d
-------------------------------------------------------------------
Mon Mar 5 07:01:47 CET 2012 - jeffm@suse.com
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit f4b95ae
-------------------------------------------------------------------
Mon Mar 5 05:35:06 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6. Previous commit was configs.
- commit 639167f
-------------------------------------------------------------------
Mon Mar 5 05:14:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6.
- commit ebec13a
-------------------------------------------------------------------
Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
@ -24,6 +242,13 @@ Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit 2c205b4
-------------------------------------------------------------------
Sun Mar 4 14:21:47 CET 2012 - jslaby@suse.cz
- Update config files.
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit adb37b7
-------------------------------------------------------------------
Thu Mar 1 18:15:58 CET 2012 - jslaby@suse.cz
@ -38,6 +263,14 @@ Thu Mar 1 10:00:42 CET 2012 - jslaby@suse.cz
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit 82a8603
-------------------------------------------------------------------
Wed Feb 29 15:22:34 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc5 and c/s 1157.
- config.conf: Re-enable Xen configs.
- Update config files.
- commit f225622
-------------------------------------------------------------------
Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
@ -47,6 +280,12 @@ Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
same fix will be ported here.
- commit 2bcad53
-------------------------------------------------------------------
Mon Feb 27 03:38:40 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc5.
- commit 0b7f048
-------------------------------------------------------------------
Sun Feb 26 14:19:13 CET 2012 - jslaby@suse.cz
@ -75,6 +314,12 @@ Tue Feb 21 11:56:39 CET 2012 - jslaby@suse.cz
- Linux 3.2.7.
- commit 3d38d11
-------------------------------------------------------------------
Sun Feb 19 18:00:16 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc4.
- commit 8831dca
-------------------------------------------------------------------
Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
@ -83,6 +328,12 @@ Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
patches.fixes/PM-Hibernate-Fix-s2disk-regression-related-to-freezi.patch.
- commit 264e0d4
-------------------------------------------------------------------
Mon Feb 13 19:33:57 CET 2012 - trenn@suse.de
- cpufreq/gx: Fix the compile error.
- commit 4ba1d8b
-------------------------------------------------------------------
Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
@ -90,6 +341,93 @@ Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
Enable brcm80211 wireless driver.
- commit 70a4760
-------------------------------------------------------------------
Mon Feb 13 17:23:49 CET 2012 - mmarek@suse.cz
- nvme: Mark as broken on x86_32.
- commit 28ad576
-------------------------------------------------------------------
Sun Feb 12 18:15:10 CET 2012 - trenn@suse.de
- Add driver auto probing for x86 features v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Fix overrun check in arch_print_cpu_modalias()
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- crypto: Add support for x86 cpuid
auto loading for x86 crypto drivers
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Clean up modalias feature matching
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel-idle: convert to x86_cpu_id auto probing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert via-cputemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k7: Fix CPU family number
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: Load acpi-cpufreq from processor driver automatically
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Revert change of auto_demotion_flags for Nehalem
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert coretemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k6: Really enable auto-loading
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- X86: Introduce HW-Pstate scattered cpuid feature
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- cpufreq: Add support for x86 cpuinfo auto loading v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86: autoload microcode driver on Intel and AMD systems v2
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- CPU: Introduce ARCH_HAS_CPU_AUTOPROBE and X86 parts
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: remove duplicated lines of merging
problems with acpi_processor_start
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- Update config files.
- commit 6efe9b5
-------------------------------------------------------------------
Fri Feb 10 12:03:36 CET 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Build x86 packages as i686, except for
-default (bnc#745632). KMPs are still built as i586.
- commit 88a632b
-------------------------------------------------------------------
Thu Feb 9 15:57:54 CET 2012 - jeffm@suse.com
- Update to 3.3-rc3.
- commit 07ec27c
-------------------------------------------------------------------
Thu Feb 9 12:53:26 CET 2012 - agraf@suse.de
- armv7l: Update config files.
- commit d223353
-------------------------------------------------------------------
Thu Feb 9 12:48:21 CET 2012 - agraf@suse.de
- armv7l: config: integrate bmwiedemann's updates to make it usable
- commit 76d12ed
-------------------------------------------------------------------
Tue Feb 7 18:28:41 CET 2012 - jeffm@suse.com
- Update vanilla config files.
- commit fd3673f
-------------------------------------------------------------------
Tue Feb 7 18:12:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc2.
- Eliminated 5 patches.
- Xen is disabled.
- commit d017ea1
-------------------------------------------------------------------
Sat Feb 4 15:19:04 CET 2012 - jslaby@suse.cz

View File

@ -17,14 +17,15 @@
# norootforbuild
%define srcversion 3.2
%define patchversion 3.2.10
%define srcversion 3.3
%define patchversion 3.3.0
%define variant %{nil}
%define vanilla_only 0
%include %_sourcedir/kernel-spec-macros
%define build_flavor u8500
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
@ -56,7 +57,7 @@
Name: kernel-u8500
Summary: Kernel for ST-Ericsson's Nova SoC
Version: 3.2.10
Version: 3.3.0
Release: 0
License: GPL-2.0
Group: System/Kernel
@ -193,6 +194,17 @@ Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: armv7l
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
%if ! %build_default
BuildArch: i686
# KMPs are always built as i586, because rpm does not allow to build
# subpackages for different architectures. Therefore, we change the
# /usr/src/linux-obj/<arch> symlink to i586.
%define kmp_target_cpu i586
%endif
%endif
# These files are found in the kernel-source package:
NoSource: 0
@ -624,9 +636,9 @@ if [ %CONFIG_MODULES = y ]; then
# Some architecture's $(uname -m) output is different from the ARCH
# parameter that needs to be passed to kbuild. Create symlinks from
# $(uname -m) to the ARCH directory.
if [ ! -e %rpm_install_dir/%_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%_target_cpu
if [ ! -e %rpm_install_dir/%kmp_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%kmp_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%kmp_target_cpu
fi
# We were building in %my_builddir/linux-%srcversion, but the sources will
@ -903,9 +915,9 @@ kernel module packages) against the %build_flavor flavor of the kernel.
%dir /usr/src/linux-obj/%cpu_arch
%ghost /usr/src/linux-obj/%cpu_arch_flavor
%obj_install_dir/%cpu_arch_flavor
%if %_target_cpu != %cpu_arch
%obj_install_dir/%_target_cpu
/usr/src/linux-obj/%_target_cpu
%if %kmp_target_cpu != %cpu_arch
%obj_install_dir/%kmp_target_cpu
/usr/src/linux-obj/%kmp_target_cpu
%endif
%endif

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon Mar 19 11:16:34 CET 2012 - jslaby@suse.cz
- Update (vanilla) config files.
- commit 55a0a56
-------------------------------------------------------------------
Mon Mar 19 11:07:00 CET 2012 - jslaby@suse.cz
- Delete
patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch.
- Delete patches.arch/dell_optiplex_990_fix_reboot.patch.
- Delete
patches.drivers/alsa-hda-0004-Add-missing-static-ADC-tables-for-ALC269-qu.
- Delete patches.drivers/libata-unlock-hpa-by-default.
- Delete patches.fixes/scsi-add-tgps-setting.
- Delete patches.fixes/scsi-dh-rdac-add-stk.
- Delete patches.suse/dm-mpath-evaluate-request-result-and-sense.
- Delete patches.suse/richacl-fix.
Remove unused patches.
- commit 2cbabfe
-------------------------------------------------------------------
Mon Mar 19 06:27:04 CET 2012 - jeffm@suse.com
- Update to 3.3-final.
- commit a9ab64a
-------------------------------------------------------------------
Fri Mar 16 07:23:33 CET 2012 - ohering@suse.de
- Update bugnumber patches.suse/sd_init.mark_majors_busy.patch (bnc#744658).
- commit e60f2c3
-------------------------------------------------------------------
Tue Mar 13 11:07:58 CET 2012 - jslaby@suse.cz
@ -17,6 +51,190 @@ Mon Mar 12 17:02:51 CET 2012 - jslaby@suse.cz
request_irq() (bnc#750106).
- commit 4bff877
-------------------------------------------------------------------
Mon Mar 12 16:35:36 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc7 and c/s 1163.
- commit 0054c83
-------------------------------------------------------------------
Mon Mar 12 15:26:55 CET 2012 - ohering@suse.de
- Staging: hv: storvsc: Cleanup some comments.
- Staging: hv: storvsc: Cleanup storvsc_probe().
- Staging: hv: storvsc: Cleanup storvsc_queuecommand().
- Staging: hv: storvsc: Introduce defines for srb status codes.
- Staging: hv: storvsc: Cleanup storvsc_host_reset_handler().
- Staging: hv: storvsc: Move and cleanup storvsc_remove().
- Staging: hv: storvsc: Add a comment to explain life-cycle
management.
- Staging: hv: storvsc: Get rid of the on_io_completion in
hv_storvsc_request.
- Staging: hv: storvsc: Rename the context field in
hv_storvsc_request.
- Staging: hv: storvsc: Miscellaneous cleanup of storvsc driver.
- Staging: hv: storvsc: Cleanup the code for generating protocol
version.
- Staging: hv: storvsc: Cleanup some protocol related constants.
- Staging: hv: storvsc: Get rid of some unused defines.
- Staging: hv: storvsc: Consolidate the request structure.
- Staging: hv: storvsc: Consolidate all the wire protocol
definitions.
- Staging: hv: storvsc: Move the storage driver out of the
staging area.
- Rename patches.suse/staging-hv-pata_piix-ignore-disks.patch to
patches.suse/suse-hv-pata_piix-ignore-disks.patch
- commit 7487199
-------------------------------------------------------------------
Mon Mar 12 03:43:53 CET 2012 - jeffm@suse.com
- Update to 3.3-rc7.
- commit 81a18ea
-------------------------------------------------------------------
Sun Mar 11 00:32:36 CET 2012 - jeffm@suse.com
- btrfs: Handle EIO.
- btrfs: add varargs to btrfs_error.
- btrfs: Remove BUG_ON from __finish_chunk_alloc().
- btrfs: Remove BUG_ON from __btrfs_alloc_chunk().
- btrfs: Don't BUG_ON insert errors in btrfs_alloc_dev_extent().
- btrfs: Go readonly on tree errors in balance_level.
- btrfs: Don't BUG_ON errors from update_ref_for_cow().
- btrfs: Go readonly on bad extent refs in update_ref_for_cow().
- btrfs: Don't BUG_ON errors in __finish_chunk_alloc().
- btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range().
- btrfs: Don't BUG_ON() errors in update_ref_for_cow().
- btrfs: Don't BUG_ON errors from btrfs_create_subvol_root().
- btrfs: btrfs_drop_snapshot should return int.
- brfs: split extent_state ops.
- btrfs: drop gfp_t from lock_extent.
- btrfs: scrub functions should return void.
- btrfs: btrfs_set_item_key_safe should BUG on error and return
void.
- btrfs: Add extent_state alloc/free tracing.
- btrfs: btrfs_destroy_pending_snapshots should return void.
- btrfs: btrfs_destroy_ordered_extents should return void.
- btrfs: btrfs_destroy_ordered_operations should return void.
- btrfs: del_fs_roots should return void.
- btrfs: btrfs_free_fs_root should return void.
- btrfs: btrfs_add_ordered_sum should return void.
- btrfs: btrfs_add_ordered_operation should return void.
- btrfs: btrfs_run_ordered_operations should return void.
- btrfs: btrfs_wait_ordered_range should return void.
- btrfs: btrfs_wait_ordered_extents should return void.
- btrfs: __btrfs_remove_ordered_extent should return void.
- btrfs: btrfs_put_ordered_extent should return void.
- btrfs: update_inline_extent_backref should return void.
- btrfs: copy_for_split should return void.
- btrfs: end_compressed_writeback should return void.
- btrfs: btrfs_extend_item should return void.
- btrfs: btrfs_truncate_item should return void.
- btrfs: add_delayed_data_ref should return void.
- btrfs: add_delayed_tree_ref should return void.
- btrfs: add_delayed_ref_head should return void.
- btrfs: insert_ptr should return void.
- btrfs: del_ptr should return void.
- btrfs: setup_items_for_insert should return void.
- btrfs: fixup_low_keys should return void.
- btrfs: __add_reloc_root error push-up.
- btrfs: ->submit_bio_hook error push-up.
- btrfs: Factor out tree->ops->merge_bio_hook call.
- btrfs: Simplify btrfs_submit_bio_hook.
- btrfs: Fix kfree of member instead of structure.
- btrfs: setup_inline_extent_backref should return void.
- btrfs: btrfs_set_block_group_rw should return void.
- btrfs: btrfs_prepare_extent_commit should return void.
- btrfs: btrfs_destroy_delalloc_inodes should return void.
- btrfs: __setup_root should return void.
- btrfs: btrfs_invalidate_inodes should return void.
- btrfs: btrfs_init_compress should return void.
- btrfs: wait_for_writer should return void.
- btrfs: btrfs_end_log_trans should return void.
- btrfs: btrfs_requeue_work should return void.
- btrfs: btrfs_stop_workers should return void.
- btrfs: run_ordered_completions should return void.
- btrfs: fill_device_from_item should return void.
- btrfs: schedule_bio should return void.
- btrfs: btrfs_close_extra_devices should return void.
- btrfs: run_scheduled_bios should return void.
- btrfs: btrfs_cleanup_fs_uuids should return void.
- btrfs: clear_extent_buffer_dirty should return void.
- btrfs: check_page_writeback should return void.
- btrfs: check_page_locked should return void.
- btrfs: check_page_uptodate should return void.
- btrfs: __unlock_for_delalloc should return void.
- btrfs: wait_extent_bit should return void.
- btrfs: wait_on_state should return void.
- btrfs: btrfs_update_root error push-up.
- btrfs: find_and_setup_root error push-up.
- btrfs: Remove set bits return from clear_extent_bit.
- btrfs: avoid NULL deref in btrfs_reserve_extent with
DEBUG_ENOSPC.
- btrfs: clean_tree_block should panic on observed memory
corruption and return void.
- btrfs: btrfs_tree_{,un}lock should return void.
- btrfs: Simplify btrfs_insert_root.
- btrfs: Panic on bad rbtree operations.
- btrfs: Catch locking failures in {set,clear,convert}_extent_bit.
- btrfs: Add btrfs_panic().
- commit fd31baf
-------------------------------------------------------------------
Fri Mar 9 15:02:13 CET 2012 - ohering@suse.de
- mark busy sd majors as allocated (bug#744658).
- commit b2a640b
-------------------------------------------------------------------
Thu Mar 8 13:37:39 CET 2012 - mmarek@suse.cz
- Fix vanilla config files.
- commit b343c8a
-------------------------------------------------------------------
Thu Mar 8 11:56:26 CET 2012 - mmarek@suse.cz
- Delete patches.rpmify/nvme-broken, nvme builds again on 32bit.
- commit d60272f
-------------------------------------------------------------------
Thu Mar 8 11:34:18 CET 2012 - jbeulich@novell.com
- patches.suse/crasher-26.diff: Eliminate build warnings.
- commit 67c3c8d
-------------------------------------------------------------------
Thu Mar 8 10:55:04 CET 2012 - agraf@suse.de
- armv7l: config: omap: disable HDMI output (breaks build)
- commit 6a871bd
-------------------------------------------------------------------
Tue Mar 6 20:02:14 CET 2012 - agraf@suse.de
- armv7l: omap2plus: Enable TIDSPBRIDGE and SND codecs
- commit 0d8ec4d
-------------------------------------------------------------------
Mon Mar 5 07:01:47 CET 2012 - jeffm@suse.com
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit f4b95ae
-------------------------------------------------------------------
Mon Mar 5 05:35:06 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6. Previous commit was configs.
- commit 639167f
-------------------------------------------------------------------
Mon Mar 5 05:14:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6.
- commit ebec13a
-------------------------------------------------------------------
Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
@ -24,6 +242,13 @@ Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit 2c205b4
-------------------------------------------------------------------
Sun Mar 4 14:21:47 CET 2012 - jslaby@suse.cz
- Update config files.
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit adb37b7
-------------------------------------------------------------------
Thu Mar 1 18:15:58 CET 2012 - jslaby@suse.cz
@ -38,6 +263,14 @@ Thu Mar 1 10:00:42 CET 2012 - jslaby@suse.cz
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit 82a8603
-------------------------------------------------------------------
Wed Feb 29 15:22:34 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc5 and c/s 1157.
- config.conf: Re-enable Xen configs.
- Update config files.
- commit f225622
-------------------------------------------------------------------
Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
@ -47,6 +280,12 @@ Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
same fix will be ported here.
- commit 2bcad53
-------------------------------------------------------------------
Mon Feb 27 03:38:40 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc5.
- commit 0b7f048
-------------------------------------------------------------------
Sun Feb 26 14:19:13 CET 2012 - jslaby@suse.cz
@ -75,6 +314,12 @@ Tue Feb 21 11:56:39 CET 2012 - jslaby@suse.cz
- Linux 3.2.7.
- commit 3d38d11
-------------------------------------------------------------------
Sun Feb 19 18:00:16 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc4.
- commit 8831dca
-------------------------------------------------------------------
Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
@ -83,6 +328,12 @@ Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
patches.fixes/PM-Hibernate-Fix-s2disk-regression-related-to-freezi.patch.
- commit 264e0d4
-------------------------------------------------------------------
Mon Feb 13 19:33:57 CET 2012 - trenn@suse.de
- cpufreq/gx: Fix the compile error.
- commit 4ba1d8b
-------------------------------------------------------------------
Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
@ -90,6 +341,93 @@ Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
Enable brcm80211 wireless driver.
- commit 70a4760
-------------------------------------------------------------------
Mon Feb 13 17:23:49 CET 2012 - mmarek@suse.cz
- nvme: Mark as broken on x86_32.
- commit 28ad576
-------------------------------------------------------------------
Sun Feb 12 18:15:10 CET 2012 - trenn@suse.de
- Add driver auto probing for x86 features v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Fix overrun check in arch_print_cpu_modalias()
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- crypto: Add support for x86 cpuid
auto loading for x86 crypto drivers
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Clean up modalias feature matching
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel-idle: convert to x86_cpu_id auto probing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert via-cputemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k7: Fix CPU family number
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: Load acpi-cpufreq from processor driver automatically
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Revert change of auto_demotion_flags for Nehalem
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert coretemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k6: Really enable auto-loading
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- X86: Introduce HW-Pstate scattered cpuid feature
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- cpufreq: Add support for x86 cpuinfo auto loading v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86: autoload microcode driver on Intel and AMD systems v2
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- CPU: Introduce ARCH_HAS_CPU_AUTOPROBE and X86 parts
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: remove duplicated lines of merging
problems with acpi_processor_start
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- Update config files.
- commit 6efe9b5
-------------------------------------------------------------------
Fri Feb 10 12:03:36 CET 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Build x86 packages as i686, except for
-default (bnc#745632). KMPs are still built as i586.
- commit 88a632b
-------------------------------------------------------------------
Thu Feb 9 15:57:54 CET 2012 - jeffm@suse.com
- Update to 3.3-rc3.
- commit 07ec27c
-------------------------------------------------------------------
Thu Feb 9 12:53:26 CET 2012 - agraf@suse.de
- armv7l: Update config files.
- commit d223353
-------------------------------------------------------------------
Thu Feb 9 12:48:21 CET 2012 - agraf@suse.de
- armv7l: config: integrate bmwiedemann's updates to make it usable
- commit 76d12ed
-------------------------------------------------------------------
Tue Feb 7 18:28:41 CET 2012 - jeffm@suse.com
- Update vanilla config files.
- commit fd3673f
-------------------------------------------------------------------
Tue Feb 7 18:12:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc2.
- Eliminated 5 patches.
- Xen is disabled.
- commit d017ea1
-------------------------------------------------------------------
Sat Feb 4 15:19:04 CET 2012 - jslaby@suse.cz

View File

@ -17,14 +17,15 @@
# norootforbuild
%define srcversion 3.2
%define patchversion 3.2.10
%define srcversion 3.3
%define patchversion 3.3.0
%define variant %{nil}
%define vanilla_only 0
%include %_sourcedir/kernel-spec-macros
%define build_flavor vanilla
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
@ -56,7 +57,7 @@
Name: kernel-vanilla
Summary: The Standard Kernel - without any SUSE patches
Version: 3.2.10
Version: 3.3.0
Release: 0
License: GPL-2.0
Group: System/Kernel
@ -200,6 +201,17 @@ Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: %ix86 ia64 ppc ppc64 s390 s390x x86_64
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
%if ! %build_default
BuildArch: i686
# KMPs are always built as i586, because rpm does not allow to build
# subpackages for different architectures. Therefore, we change the
# /usr/src/linux-obj/<arch> symlink to i586.
%define kmp_target_cpu i586
%endif
%endif
# These files are found in the kernel-source package:
NoSource: 0
@ -630,9 +642,9 @@ if [ %CONFIG_MODULES = y ]; then
# Some architecture's $(uname -m) output is different from the ARCH
# parameter that needs to be passed to kbuild. Create symlinks from
# $(uname -m) to the ARCH directory.
if [ ! -e %rpm_install_dir/%_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%_target_cpu
if [ ! -e %rpm_install_dir/%kmp_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%kmp_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%kmp_target_cpu
fi
# We were building in %my_builddir/linux-%srcversion, but the sources will
@ -907,9 +919,9 @@ kernel module packages) against the %build_flavor flavor of the kernel.
%dir /usr/src/linux-obj/%cpu_arch
%ghost /usr/src/linux-obj/%cpu_arch_flavor
%obj_install_dir/%cpu_arch_flavor
%if %_target_cpu != %cpu_arch
%obj_install_dir/%_target_cpu
/usr/src/linux-obj/%_target_cpu
%if %kmp_target_cpu != %cpu_arch
%obj_install_dir/%kmp_target_cpu
/usr/src/linux-obj/%kmp_target_cpu
%endif
%endif

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon Mar 19 11:16:34 CET 2012 - jslaby@suse.cz
- Update (vanilla) config files.
- commit 55a0a56
-------------------------------------------------------------------
Mon Mar 19 11:07:00 CET 2012 - jslaby@suse.cz
- Delete
patches.arch/acpi_ec_provide_non_interrupt_mode_boot_param.patch.
- Delete patches.arch/dell_optiplex_990_fix_reboot.patch.
- Delete
patches.drivers/alsa-hda-0004-Add-missing-static-ADC-tables-for-ALC269-qu.
- Delete patches.drivers/libata-unlock-hpa-by-default.
- Delete patches.fixes/scsi-add-tgps-setting.
- Delete patches.fixes/scsi-dh-rdac-add-stk.
- Delete patches.suse/dm-mpath-evaluate-request-result-and-sense.
- Delete patches.suse/richacl-fix.
Remove unused patches.
- commit 2cbabfe
-------------------------------------------------------------------
Mon Mar 19 06:27:04 CET 2012 - jeffm@suse.com
- Update to 3.3-final.
- commit a9ab64a
-------------------------------------------------------------------
Fri Mar 16 07:23:33 CET 2012 - ohering@suse.de
- Update bugnumber patches.suse/sd_init.mark_majors_busy.patch (bnc#744658).
- commit e60f2c3
-------------------------------------------------------------------
Tue Mar 13 11:07:58 CET 2012 - jslaby@suse.cz
@ -17,6 +51,190 @@ Mon Mar 12 17:02:51 CET 2012 - jslaby@suse.cz
request_irq() (bnc#750106).
- commit 4bff877
-------------------------------------------------------------------
Mon Mar 12 16:35:36 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc7 and c/s 1163.
- commit 0054c83
-------------------------------------------------------------------
Mon Mar 12 15:26:55 CET 2012 - ohering@suse.de
- Staging: hv: storvsc: Cleanup some comments.
- Staging: hv: storvsc: Cleanup storvsc_probe().
- Staging: hv: storvsc: Cleanup storvsc_queuecommand().
- Staging: hv: storvsc: Introduce defines for srb status codes.
- Staging: hv: storvsc: Cleanup storvsc_host_reset_handler().
- Staging: hv: storvsc: Move and cleanup storvsc_remove().
- Staging: hv: storvsc: Add a comment to explain life-cycle
management.
- Staging: hv: storvsc: Get rid of the on_io_completion in
hv_storvsc_request.
- Staging: hv: storvsc: Rename the context field in
hv_storvsc_request.
- Staging: hv: storvsc: Miscellaneous cleanup of storvsc driver.
- Staging: hv: storvsc: Cleanup the code for generating protocol
version.
- Staging: hv: storvsc: Cleanup some protocol related constants.
- Staging: hv: storvsc: Get rid of some unused defines.
- Staging: hv: storvsc: Consolidate the request structure.
- Staging: hv: storvsc: Consolidate all the wire protocol
definitions.
- Staging: hv: storvsc: Move the storage driver out of the
staging area.
- Rename patches.suse/staging-hv-pata_piix-ignore-disks.patch to
patches.suse/suse-hv-pata_piix-ignore-disks.patch
- commit 7487199
-------------------------------------------------------------------
Mon Mar 12 03:43:53 CET 2012 - jeffm@suse.com
- Update to 3.3-rc7.
- commit 81a18ea
-------------------------------------------------------------------
Sun Mar 11 00:32:36 CET 2012 - jeffm@suse.com
- btrfs: Handle EIO.
- btrfs: add varargs to btrfs_error.
- btrfs: Remove BUG_ON from __finish_chunk_alloc().
- btrfs: Remove BUG_ON from __btrfs_alloc_chunk().
- btrfs: Don't BUG_ON insert errors in btrfs_alloc_dev_extent().
- btrfs: Go readonly on tree errors in balance_level.
- btrfs: Don't BUG_ON errors from update_ref_for_cow().
- btrfs: Go readonly on bad extent refs in update_ref_for_cow().
- btrfs: Don't BUG_ON errors in __finish_chunk_alloc().
- btrfs: Don't BUG_ON kzalloc error in btrfs_lookup_csums_range().
- btrfs: Don't BUG_ON() errors in update_ref_for_cow().
- btrfs: Don't BUG_ON errors from btrfs_create_subvol_root().
- btrfs: btrfs_drop_snapshot should return int.
- brfs: split extent_state ops.
- btrfs: drop gfp_t from lock_extent.
- btrfs: scrub functions should return void.
- btrfs: btrfs_set_item_key_safe should BUG on error and return
void.
- btrfs: Add extent_state alloc/free tracing.
- btrfs: btrfs_destroy_pending_snapshots should return void.
- btrfs: btrfs_destroy_ordered_extents should return void.
- btrfs: btrfs_destroy_ordered_operations should return void.
- btrfs: del_fs_roots should return void.
- btrfs: btrfs_free_fs_root should return void.
- btrfs: btrfs_add_ordered_sum should return void.
- btrfs: btrfs_add_ordered_operation should return void.
- btrfs: btrfs_run_ordered_operations should return void.
- btrfs: btrfs_wait_ordered_range should return void.
- btrfs: btrfs_wait_ordered_extents should return void.
- btrfs: __btrfs_remove_ordered_extent should return void.
- btrfs: btrfs_put_ordered_extent should return void.
- btrfs: update_inline_extent_backref should return void.
- btrfs: copy_for_split should return void.
- btrfs: end_compressed_writeback should return void.
- btrfs: btrfs_extend_item should return void.
- btrfs: btrfs_truncate_item should return void.
- btrfs: add_delayed_data_ref should return void.
- btrfs: add_delayed_tree_ref should return void.
- btrfs: add_delayed_ref_head should return void.
- btrfs: insert_ptr should return void.
- btrfs: del_ptr should return void.
- btrfs: setup_items_for_insert should return void.
- btrfs: fixup_low_keys should return void.
- btrfs: __add_reloc_root error push-up.
- btrfs: ->submit_bio_hook error push-up.
- btrfs: Factor out tree->ops->merge_bio_hook call.
- btrfs: Simplify btrfs_submit_bio_hook.
- btrfs: Fix kfree of member instead of structure.
- btrfs: setup_inline_extent_backref should return void.
- btrfs: btrfs_set_block_group_rw should return void.
- btrfs: btrfs_prepare_extent_commit should return void.
- btrfs: btrfs_destroy_delalloc_inodes should return void.
- btrfs: __setup_root should return void.
- btrfs: btrfs_invalidate_inodes should return void.
- btrfs: btrfs_init_compress should return void.
- btrfs: wait_for_writer should return void.
- btrfs: btrfs_end_log_trans should return void.
- btrfs: btrfs_requeue_work should return void.
- btrfs: btrfs_stop_workers should return void.
- btrfs: run_ordered_completions should return void.
- btrfs: fill_device_from_item should return void.
- btrfs: schedule_bio should return void.
- btrfs: btrfs_close_extra_devices should return void.
- btrfs: run_scheduled_bios should return void.
- btrfs: btrfs_cleanup_fs_uuids should return void.
- btrfs: clear_extent_buffer_dirty should return void.
- btrfs: check_page_writeback should return void.
- btrfs: check_page_locked should return void.
- btrfs: check_page_uptodate should return void.
- btrfs: __unlock_for_delalloc should return void.
- btrfs: wait_extent_bit should return void.
- btrfs: wait_on_state should return void.
- btrfs: btrfs_update_root error push-up.
- btrfs: find_and_setup_root error push-up.
- btrfs: Remove set bits return from clear_extent_bit.
- btrfs: avoid NULL deref in btrfs_reserve_extent with
DEBUG_ENOSPC.
- btrfs: clean_tree_block should panic on observed memory
corruption and return void.
- btrfs: btrfs_tree_{,un}lock should return void.
- btrfs: Simplify btrfs_insert_root.
- btrfs: Panic on bad rbtree operations.
- btrfs: Catch locking failures in {set,clear,convert}_extent_bit.
- btrfs: Add btrfs_panic().
- commit fd31baf
-------------------------------------------------------------------
Fri Mar 9 15:02:13 CET 2012 - ohering@suse.de
- mark busy sd majors as allocated (bug#744658).
- commit b2a640b
-------------------------------------------------------------------
Thu Mar 8 13:37:39 CET 2012 - mmarek@suse.cz
- Fix vanilla config files.
- commit b343c8a
-------------------------------------------------------------------
Thu Mar 8 11:56:26 CET 2012 - mmarek@suse.cz
- Delete patches.rpmify/nvme-broken, nvme builds again on 32bit.
- commit d60272f
-------------------------------------------------------------------
Thu Mar 8 11:34:18 CET 2012 - jbeulich@novell.com
- patches.suse/crasher-26.diff: Eliminate build warnings.
- commit 67c3c8d
-------------------------------------------------------------------
Thu Mar 8 10:55:04 CET 2012 - agraf@suse.de
- armv7l: config: omap: disable HDMI output (breaks build)
- commit 6a871bd
-------------------------------------------------------------------
Tue Mar 6 20:02:14 CET 2012 - agraf@suse.de
- armv7l: omap2plus: Enable TIDSPBRIDGE and SND codecs
- commit 0d8ec4d
-------------------------------------------------------------------
Mon Mar 5 07:01:47 CET 2012 - jeffm@suse.com
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit f4b95ae
-------------------------------------------------------------------
Mon Mar 5 05:35:06 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6. Previous commit was configs.
- commit 639167f
-------------------------------------------------------------------
Mon Mar 5 05:14:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc6.
- commit ebec13a
-------------------------------------------------------------------
Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
@ -24,6 +242,13 @@ Sun Mar 4 14:25:26 CET 2012 - jslaby@suse.cz
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit 2c205b4
-------------------------------------------------------------------
Sun Mar 4 14:21:47 CET 2012 - jslaby@suse.cz
- Update config files.
Enable RT2800USB_RT35XX and RT2800USB_RT53XX.
- commit adb37b7
-------------------------------------------------------------------
Thu Mar 1 18:15:58 CET 2012 - jslaby@suse.cz
@ -38,6 +263,14 @@ Thu Mar 1 10:00:42 CET 2012 - jslaby@suse.cz
- Refresh patches.xen/xen3-fixup-arch-x86.
- commit 82a8603
-------------------------------------------------------------------
Wed Feb 29 15:22:34 CET 2012 - jbeulich@novell.com
- Update Xen patches to 3.3-rc5 and c/s 1157.
- config.conf: Re-enable Xen configs.
- Update config files.
- commit f225622
-------------------------------------------------------------------
Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
@ -47,6 +280,12 @@ Tue Feb 28 09:46:13 CET 2012 - jslaby@suse.cz
same fix will be ported here.
- commit 2bcad53
-------------------------------------------------------------------
Mon Feb 27 03:38:40 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc5.
- commit 0b7f048
-------------------------------------------------------------------
Sun Feb 26 14:19:13 CET 2012 - jslaby@suse.cz
@ -75,6 +314,12 @@ Tue Feb 21 11:56:39 CET 2012 - jslaby@suse.cz
- Linux 3.2.7.
- commit 3d38d11
-------------------------------------------------------------------
Sun Feb 19 18:00:16 CET 2012 - jeffm@suse.com
- Updated to 3.3-rc4.
- commit 8831dca
-------------------------------------------------------------------
Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
@ -83,6 +328,12 @@ Mon Feb 13 22:17:48 CET 2012 - jslaby@suse.cz
patches.fixes/PM-Hibernate-Fix-s2disk-regression-related-to-freezi.patch.
- commit 264e0d4
-------------------------------------------------------------------
Mon Feb 13 19:33:57 CET 2012 - trenn@suse.de
- cpufreq/gx: Fix the compile error.
- commit 4ba1d8b
-------------------------------------------------------------------
Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
@ -90,6 +341,93 @@ Mon Feb 13 18:04:58 CET 2012 - jslaby@suse.cz
Enable brcm80211 wireless driver.
- commit 70a4760
-------------------------------------------------------------------
Mon Feb 13 17:23:49 CET 2012 - mmarek@suse.cz
- nvme: Mark as broken on x86_32.
- commit 28ad576
-------------------------------------------------------------------
Sun Feb 12 18:15:10 CET 2012 - trenn@suse.de
- Add driver auto probing for x86 features v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Fix overrun check in arch_print_cpu_modalias()
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- crypto: Add support for x86 cpuid
auto loading for x86 crypto drivers
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86/cpu: Clean up modalias feature matching
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel-idle: convert to x86_cpu_id auto probing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert via-cputemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k7: Fix CPU family number
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: Load acpi-cpufreq from processor driver automatically
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- intel_idle: Revert change of auto_demotion_flags for Nehalem
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- HWMON: Convert coretemp to x86 cpuid autoprobing
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- powernow-k6: Really enable auto-loading
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- X86: Introduce HW-Pstate scattered cpuid feature
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- cpufreq: Add support for x86 cpuinfo auto loading v4
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- x86: autoload microcode driver on Intel and AMD systems v2
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- CPU: Introduce ARCH_HAS_CPU_AUTOPROBE and X86 parts
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- ACPI: remove duplicated lines of merging
problems with acpi_processor_start
(http://lists.opensuse.org/opensuse-kernel/2011-11/msg00075.html).
- Update config files.
- commit 6efe9b5
-------------------------------------------------------------------
Fri Feb 10 12:03:36 CET 2012 - mmarek@suse.cz
- rpm/kernel-binary.spec.in: Build x86 packages as i686, except for
-default (bnc#745632). KMPs are still built as i586.
- commit 88a632b
-------------------------------------------------------------------
Thu Feb 9 15:57:54 CET 2012 - jeffm@suse.com
- Update to 3.3-rc3.
- commit 07ec27c
-------------------------------------------------------------------
Thu Feb 9 12:53:26 CET 2012 - agraf@suse.de
- armv7l: Update config files.
- commit d223353
-------------------------------------------------------------------
Thu Feb 9 12:48:21 CET 2012 - agraf@suse.de
- armv7l: config: integrate bmwiedemann's updates to make it usable
- commit 76d12ed
-------------------------------------------------------------------
Tue Feb 7 18:28:41 CET 2012 - jeffm@suse.com
- Update vanilla config files.
- commit fd3673f
-------------------------------------------------------------------
Tue Feb 7 18:12:40 CET 2012 - jeffm@suse.com
- Update to 3.3-rc2.
- Eliminated 5 patches.
- Xen is disabled.
- commit d017ea1
-------------------------------------------------------------------
Sat Feb 4 15:19:04 CET 2012 - jslaby@suse.cz

View File

@ -17,14 +17,15 @@
# norootforbuild
%define srcversion 3.2
%define patchversion 3.2.10
%define srcversion 3.3
%define patchversion 3.3.0
%define variant %{nil}
%define vanilla_only 0
%include %_sourcedir/kernel-spec-macros
%define build_flavor xen
%define build_default (%build_flavor == "default")
%define build_kdump (%build_flavor == "kdump")
%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2")
%define build_vanilla (%build_flavor == "vanilla")
@ -56,7 +57,7 @@
Name: kernel-xen
Summary: The Xen Kernel
Version: 3.2.10
Version: 3.3.0
Release: 0
License: GPL-2.0
Group: System/Kernel
@ -193,6 +194,17 @@ Source120: kabi.tar.bz2
Source121: sysctl.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: %ix86 x86_64
%define kmp_target_cpu %_target_cpu
%ifarch %ix86
# Only i386/default supports i586, mark other flavors' packages as i686
%if ! %build_default
BuildArch: i686
# KMPs are always built as i586, because rpm does not allow to build
# subpackages for different architectures. Therefore, we change the
# /usr/src/linux-obj/<arch> symlink to i586.
%define kmp_target_cpu i586
%endif
%endif
# These files are found in the kernel-source package:
NoSource: 0
@ -626,9 +638,9 @@ if [ %CONFIG_MODULES = y ]; then
# Some architecture's $(uname -m) output is different from the ARCH
# parameter that needs to be passed to kbuild. Create symlinks from
# $(uname -m) to the ARCH directory.
if [ ! -e %rpm_install_dir/%_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%_target_cpu
if [ ! -e %rpm_install_dir/%kmp_target_cpu ]; then
ln -sf %cpu_arch %rpm_install_dir/%kmp_target_cpu
ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%kmp_target_cpu
fi
# We were building in %my_builddir/linux-%srcversion, but the sources will
@ -909,9 +921,9 @@ kernel module packages) against the %build_flavor flavor of the kernel.
%dir /usr/src/linux-obj/%cpu_arch
%ghost /usr/src/linux-obj/%cpu_arch_flavor
%obj_install_dir/%cpu_arch_flavor
%if %_target_cpu != %cpu_arch
%obj_install_dir/%_target_cpu
/usr/src/linux-obj/%_target_cpu
%if %kmp_target_cpu != %cpu_arch
%obj_install_dir/%kmp_target_cpu
/usr/src/linux-obj/%kmp_target_cpu
%endif
%endif

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

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8fd669b4e48181b8d44644a45bf421a84bb8d5ec273ef36349796443e442f333
size 78963640

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6d0ee22a360091279e2d915460a88140a13b5e8ae351057b8aa793e762c183ae
size 69919
oid sha256:5359e01863e5f8ecd92c1684b5bf4738b875bd40b6987ee97b64ea4c6298f7fd
size 84334

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8bb869150b7224259f535180aae2658da2c78c9dd4e271711001385775151202
size 8085
oid sha256:ef82ca2f89bfb9c126992981e2978ca471378df80ae4889096ca5e73dfc7a972
size 8101

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:99abd7df2f396f5da84feda662837bb4c8c9e0660ea7f6024d3cdb982e2b7627
size 21794
oid sha256:b7532abbe2263f6a4de9615ef2e06f27fbf20f167d377d35918c5cf36c95084e
size 21094

View File

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

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:40f672592d1cf7324d5046045a5deee3c3f91758cb2d00e2875dcbbf7b22e868
size 135747
oid sha256:23427694f992a62d21673c198607c99a9dff74f7811cdefaae59482dadcc7ffb
size 202335

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3bafcbe2ebb945eb6585b1ce74d3443ad372403113a2400557b768c5b203d445
size 2071957
oid sha256:744e993f85f89c1a2b32241ebaa817652c89305789a442f3b7d13109cfdbc305
size 2093293

View File

@ -27,16 +27,6 @@
# DO NOT MODIFY THEM!
# Send separate patches upstream if you find a problem...
########################################################
patches.kernel.org/patch-3.2.1
patches.kernel.org/patch-3.2.1-2
patches.kernel.org/patch-3.2.2-3
patches.kernel.org/patch-3.2.3-4
patches.kernel.org/patch-3.2.4-5
patches.kernel.org/patch-3.2.5-6
patches.kernel.org/patch-3.2.6-7
patches.kernel.org/patch-3.2.7-8
patches.kernel.org/patch-3.2.8-9
patches.kernel.org/patch-3.2.9-10
########################################################
# Build fixes that apply to the vanilla kernel too.
@ -115,6 +105,27 @@
########################################################
patches.arch/x86_64-hpet-64bit-timer.patch
# Queued for 3.4, please remove the autoload patches then
# including the autoload_fixes below
patches.arch/001-x86_autoload.patch
patches.arch/002-x86_autoload.patch
patches.arch/003-x86_autoload.patch
patches.arch/004-x86_autoload.patch
patches.arch/005-x86_autoload.patch
patches.arch/006-x86_autoload.patch
patches.arch/007-x86_autoload.patch
patches.arch/008-x86_autoload.patch
patches.arch/009-x86_autoload.patch
patches.arch/010-x86_autoload.patch
patches.arch/001-x86_autoload_fixes.patch
patches.arch/002-x86_autoload_fixes.patch
patches.arch/003-x86_autoload_fixes.patch
patches.arch/004-x86_autoload_fixes.patch
patches.arch/005-x86_autoload_fixes.patch
patches.arch/006-x86_autoload_fixes.patch
patches.arch/007-x86_autoload_fixes.patch
+needs_update patches.arch/kvm-split-paravirt-ops-by-functionality
+needs_update patches.arch/kvm-only-export-selected-pv-ops-feature-structs
+needs_update patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature
@ -247,7 +258,23 @@
########################################################
# Suse specific stuff
########################################################
patches.suse/staging-hv-pata_piix-ignore-disks.patch
patches.suse/msft-hv-0309-Staging-hv-storvsc-Cleanup-some-comments.patch
patches.suse/msft-hv-0310-Staging-hv-storvsc-Cleanup-storvsc_probe.patch
patches.suse/msft-hv-0311-Staging-hv-storvsc-Cleanup-storvsc_queuecommand.patch
patches.suse/msft-hv-0312-Staging-hv-storvsc-Introduce-defines-for-srb-stat.patch
patches.suse/msft-hv-0313-Staging-hv-storvsc-Cleanup-storvsc_host_reset_han.patch
patches.suse/msft-hv-0314-Staging-hv-storvsc-Move-and-cleanup-storvsc_remov.patch
patches.suse/msft-hv-0315-Staging-hv-storvsc-Add-a-comment-to-explain-life.patch
patches.suse/msft-hv-0316-Staging-hv-storvsc-Get-rid-of-the-on_io_completio.patch
patches.suse/msft-hv-0317-Staging-hv-storvsc-Rename-the-context-field-in-hv.patch
patches.suse/msft-hv-0318-Staging-hv-storvsc-Miscellaneous-cleanup-of-storv.patch
patches.suse/msft-hv-0319-Staging-hv-storvsc-Cleanup-the-code-for-generatin.patch
patches.suse/msft-hv-0320-Staging-hv-storvsc-Cleanup-some-protocol-related.patch
patches.suse/msft-hv-0321-Staging-hv-storvsc-Get-rid-of-some-unused-defines.patch
patches.suse/msft-hv-0322-Staging-hv-storvsc-Consolidate-the-request-struct.patch
patches.suse/msft-hv-0323-Staging-hv-storvsc-Consolidate-all-the-wire-proto.patch
patches.suse/msft-hv-0324-Staging-hv-storvsc-Move-the-storage-driver-out-of.patch
patches.suse/suse-hv-pata_piix-ignore-disks.patch
########################################################
# Networking, IPv6
@ -282,28 +309,87 @@
########################################################
# btrfs
########################################################
# josef's tree
patches.suse/btrfs-0900-add-allocator-tracepoints.patch
# suse patches (pending upstream approval)
patches.suse/btrfs-allow-cross-subvolume-file-clone.patch
# patches collected from mailinglist
patches.suse/btrfs-8001-rewrite-btrfs_trim_block_group.patch
patches.suse/btrfs-8007-lock-and-disable-irq-during-space-alloc.patch
patches.suse/btrfs-8013-sector-size-check-during-mount.patch
patches.suse/btrfs-8014-add-new-ioctl-to-determine-size-of-compressed-.patch
patches.suse/btrfs-8015-make-lzo-the-default-compression-scheme.patch
patches.suse/btrfs-8024-workaround-for-cleaner-deadlock.patch
patches.suse/btrfs-8025-update-global-block_rsv-when-creating-a-new-bl.patch
patches.suse/btrfs-8026-fix-possible-deadlock-when-opening-a-seed-devi.patch
# Workaround for bnc#672923. Will be removed once we come up
# with something that can go upstream.
patches.suse/0001-vfs-allow-proc-pid-maps-to-return-a-custom-device.patch
patches.suse/0002-btrfs-Introduce-btrfs_get_maps_dev.patch
patches.suse/btrfs-add-btrfs_panic
patches.suse/btrfs-catch-locking-failures-in-set-clear-extent_bit
patches.suse/btrfs-panic-on-bad-rbtree-operations
patches.suse/btrfs-simplify-btrfs_insert_root
patches.suse/btrfs-btrfs_tree_unlock-should-return-void
patches.suse/btrfs-clean_tree_block-should-panic-on-error-and-return-void
patches.suse/btrfs-btrfs_reserve_extent-check-sinfo
patches.suse/btrfs-clear_extent_bit-api-change
patches.suse/btrfs-find_and_setup_root-error-push-up
patches.suse/btrfs-btrfs_update_root-error-push-up
patches.suse/btrfs-extent_io-wait_on_state-should-return-void
patches.suse/btrfs-extent_io-wait_extent_bit-should-return-void
patches.suse/btrfs-extent_io-__unlock_for_delalloc-should-return-void
patches.suse/btrfs-extent_io-check_page_uptodate-should-return-void
patches.suse/btrfs-extent_io-check_page_locked-should-return-void
patches.suse/btrfs-extent_io-check_page_writeback-should-return-void
patches.suse/btrfs-extent_io-clear_extent_buffer_dirty-should-return-void
patches.suse/btrfs-volumes-btrfs_cleanup_fs_uuids-should-return-void
patches.suse/btrfs-volumes-run_scheduled_bios-should-return-void
patches.suse/btrfs-volumes-btrfs_close_extra_devices-should-return-void
patches.suse/btrfs-volumes-schedule_bio-should-return-void
patches.suse/btrfs-volumes-fill_device_from_item-should-return-void
patches.suse/btrfs-async_thread-run_ordered_completions-should-return-void
patches.suse/btrfs-async_thread-btrfs_stop_workers-should-return-void
patches.suse/btrfs-async_thread-btrfs_requeue_work-should-return-void
patches.suse/btrfs-tree-log-btrfs_end_log_trans-should-return-void
patches.suse/btrfs-tree-log-wait_for_writer-should-return-void
patches.suse/btrfs-btrfs_init_compress-should-return-void
patches.suse/btrfs-btrfs_invalidate_inodes-should-return-void
patches.suse/btrfs-disk-io-__setup_root-should-return-void
patches.suse/btrfs-disk-io-btrfs_destroy_delalloc_inodes-should-return-void
patches.suse/btrfs-extent-tree-btrfs_prepare_extent_commit-should-return-void
patches.suse/btrfs-extent-tree-btrfs_set_block_group_rw-should-return-void
patches.suse/btrfs-extent-tree-setup_inline_extent_backref-should-return-void
patches.suse/btrfs-fix-kfree-of-member-instead-of-structure
patches.suse/btrfs-simplify-btrfs_submit_bio_hook
patches.suse/btrfs-factor-out-tree-ops-merge_bio_hook-call
patches.suse/btrfs-submit_bio_hook-error-push-up
patches.suse/btrfs-_add_reloc_root-error-push-up
patches.suse/btrfs-fixup_low_keys-should-return-void
patches.suse/btrfs-setup_items_for_insert-should-return-void
patches.suse/btrfs-del_ptr-should-return-void
patches.suse/btrfs-insert_ptr-should-return-void
patches.suse/btrfs-add_delayed_ref_head-should-return-void
patches.suse/btrfs-add_delayed_tree_ref-should-return-void
patches.suse/btrfs-add_delayed_data_ref-should-return-void
patches.suse/btrfs-btrfs_truncate_item-should-return-void
patches.suse/btrfs-btrfs_extend_item-should-return-void
patches.suse/btrfs-end_compressed_writeback-should-return-void
patches.suse/btrfs-copy_for_split-should-return-void
patches.suse/btrfs-extent-tree-update_inline_extent_backref-should-return-void
patches.suse/btrfs-btrfs_put_ordered_extent-should-return-void
patches.suse/btrfs-__btrfs_remove_ordered_extent-should-return-void
patches.suse/btrfs-btrfs_wait_ordered_extents-should-return-void
patches.suse/btrfs-btrfs_wait_ordered_range-should-return-void
patches.suse/btrfs-btrfs_run_ordered_operations
patches.suse/btrfs-btrfs_add_ordered_operation-should-return-void
patches.suse/btrfs-btrfs_add_ordered_sum-should-return-void
patches.suse/btrfs-btrfs_free_fs_root-should-return-void
patches.suse/btrfs-del_fs_roots-should-return-void
patches.suse/btrfs-btrfs_destroy_ordered_operations-should-return-void
patches.suse/btrfs-btrfs_destroy_ordered_extents-should-return-void
patches.suse/btrfs-btrfs_destroy_pending_snapshots-should-return-void
patches.suse/btrfs-add-extent_state-alloc-free-tracing
patches.suse/btrfs-btrfs_set_item_key_safe-should-bug-and-return-void
patches.suse/btrfs-scrub-functions-should-return-void
patches.suse/btrfs-drop-gfp_t-from-lock_extent
patches.suse/btrfs-split-extent_state-ops
patches.suse/btrfs-btrfs_drop_snapshot-should-return-int
patches.suse/btrfs-0001-Don-t-BUG_ON-errors-from-btrfs_create_subvol_r.patch
patches.suse/btrfs-0002-Don-t-BUG_ON-errors-in-update_ref_for_cow.patch
patches.suse/btrfs-0003-Don-t-BUG_ON-kzalloc-error-in-btrfs_lookup_csu.patch
patches.suse/btrfs-0005-Don-t-BUG_ON-errors-in-__finish_chunk_alloc.patch
patches.suse/btrfs-0011-Go-readonly-on-bad-extent-refs-in-update_ref_f.patch
patches.suse/btrfs-0012-Don-t-BUG_ON-errors-from-update_ref_for_cow.patch
patches.suse/btrfs-0013-Go-readonly-on-tree-errors-in-balance_level.patch
patches.suse/btrfs-0018-Don-t-BUG_ON-insert-errors-in-btrfs_alloc_dev_.patch
patches.suse/btrfs-0019-Remove-BUG_ON-from-__btrfs_alloc_chunk.patch
patches.suse/btrfs-0020-Remove-BUG_ON-from-__finish_chunk_alloc.patch
patches.suse/btrfs-error-varargs
patches.suse/btrfs-handle-EIO
########################################################
# Reiserfs Patches
########################################################
@ -391,6 +477,7 @@
patches.fixes/sd_liberal_28_sense_invalid.diff
patches.fixes/scsi-ibmvscsi-module_alias.patch
patches.suse/sd_init.mark_majors_busy.patch
########################################################
# DRM/Video
@ -411,8 +498,6 @@
# Wireless Networking
########################################################
patches.suse/b43-missing-firmware-info.patch
patches.fixes/batman-adv-bat_socket_read-missing-checks.patch
patches.fixes/batman-adv-Only-write-requested-number-of-byte-to-us.patch
########################################################
# ISDN
@ -451,7 +536,6 @@
##########################################################
# Sound
##########################################################
+jslaby patches.suse/ratelimit-sound-debug-prints.patch
########################################################
# Char / serial
@ -648,7 +732,10 @@
patches.xen/xen3-patch-3.0
patches.xen/xen3-patch-3.1
patches.xen/xen3-patch-3.2
patches.xen/xen3-patch-3.2.7-8
patches.xen/xen3-patch-3.3-rc5
patches.xen/xen3-004-x86_autoload.patch
patches.xen/xen3-006-x86_autoload.patch
patches.xen/xen3-009-x86_autoload.patch
patches.xen/xen3-apei_allow_drivers_access_nvs_ram.patch
patches.xen/xen3-acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch
patches.xen/xen3-stack-unwind
@ -676,7 +763,7 @@
patches.xen/xen-blktap-modular
patches.xen/xen-blktap-write-barriers
patches.xen/xen-blktap2-configurable-nr-devs
patches.xen/xen-op-packet
patches.xen/xen-blkif-op-packet
patches.xen/xen-blkfront-cdrom
patches.xen/xen-blkfront-hvm-no-cdrom
patches.xen/xen-netback-nr-irqs

View File

@ -1,3 +1,3 @@
2012-03-13 11:07:58 +0100
GIT Revision: 614ed044862ebdf650ac72e53d515f6551cb4140
2012-03-19 11:17:31 +0100
GIT Revision: 7e199aa9a3e097fd66d73d0dbb652daad0a38b21
GIT Branch: stable