forked from pool/kernel-source
Accepting request 20500 from Kernel:HEAD
Copy from Kernel:HEAD/kernel-source based on submit request 20500 from user coolo OBS-URL: https://build.opensuse.org/request/show/20500 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kernel-source?expand=0&rev=72
This commit is contained in:
parent
44f2f8c945
commit
6ebc6053a2
@ -1,4 +1,4 @@
|
||||
# The version of the main tarball to use
|
||||
SRCVERSION=2.6.30
|
||||
SRCVERSION=2.6.31
|
||||
# variant of the kernel-source package, either empty or "-rt"
|
||||
VARIANT=
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:15ba13be9ae93b0f06ec5ff4a8235c4aa4fa3bbf0c08ccb5228fd38dda616385
|
||||
size 154197
|
||||
oid sha256:3c83e479c5baeccc7e05f2b7706e54fa1730bbe886485f9e253a11c96a7167a2
|
||||
size 154101
|
||||
|
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport attach inhibition for builtin pci drivers from 2.6.32-rc.
|
||||
|
||||
- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate
|
||||
out pci_add_dynid().
|
||||
- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add
|
||||
pci_stub.ids parameter.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport patches from 2.6.32-rc to ease ossp testing.
|
||||
|
||||
- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N.
|
||||
- patches.drivers/implement-register_chrdev: chrdev: implement
|
||||
__register_chrdev().
|
||||
- patches.drivers/sound-make-oss-device-number-claiming-optional:
|
||||
sound: make OSS device number claiming optional and schedule
|
||||
its removal.
|
||||
- patches.drivers/sound-request-char-major-aliases-for-oss-devices:
|
||||
sound: request char-major-* module aliases for missing OSS
|
||||
devices.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de
|
||||
|
||||
- patches.suse/novfs-client-module: Update header todo list with
|
||||
locking nits (semaphore used as mutex / completion)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com
|
||||
|
||||
- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor
|
||||
(bnc#538849)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.suse/crasher-26.diff: Add capability to also trigger a
|
||||
kernel warning.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/block-seperate-rw-inflight-stats: Seperate read
|
||||
and write statistics of in_flight requests (fate#306525).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- patch fuzz removal now that 2.6.31 is the base.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
CONFIG_MOUSE_PS2_ELANTECH=y
|
||||
CONFIG_MOUSE_PS2_TOUCHKIT=y
|
||||
(bnc#525607)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek
|
||||
issues, add another Nvidia HDMI device id
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de
|
||||
|
||||
- Updated to 2.6.31-final.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de
|
||||
|
||||
@ -22,6 +95,11 @@ Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de
|
||||
- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch:
|
||||
scsi_dh: add the interface scsi_dh_set_params() (bnc#521607).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: delete obsolete macro.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.30
|
||||
%define patchversion 2.6.31-rc9
|
||||
%define srcversion 2.6.31
|
||||
%define patchversion 2.6.31
|
||||
%define variant %{nil}
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
%define build_flavor debug
|
||||
@ -49,7 +49,7 @@
|
||||
Name: kernel-debug
|
||||
Summary: A Debug Version of the Kernel
|
||||
Version: 2.6.31
|
||||
Release: 7
|
||||
Release: 8
|
||||
%if %using_buildservice
|
||||
%else
|
||||
%endif
|
||||
|
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport attach inhibition for builtin pci drivers from 2.6.32-rc.
|
||||
|
||||
- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate
|
||||
out pci_add_dynid().
|
||||
- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add
|
||||
pci_stub.ids parameter.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport patches from 2.6.32-rc to ease ossp testing.
|
||||
|
||||
- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N.
|
||||
- patches.drivers/implement-register_chrdev: chrdev: implement
|
||||
__register_chrdev().
|
||||
- patches.drivers/sound-make-oss-device-number-claiming-optional:
|
||||
sound: make OSS device number claiming optional and schedule
|
||||
its removal.
|
||||
- patches.drivers/sound-request-char-major-aliases-for-oss-devices:
|
||||
sound: request char-major-* module aliases for missing OSS
|
||||
devices.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de
|
||||
|
||||
- patches.suse/novfs-client-module: Update header todo list with
|
||||
locking nits (semaphore used as mutex / completion)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com
|
||||
|
||||
- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor
|
||||
(bnc#538849)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.suse/crasher-26.diff: Add capability to also trigger a
|
||||
kernel warning.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/block-seperate-rw-inflight-stats: Seperate read
|
||||
and write statistics of in_flight requests (fate#306525).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- patch fuzz removal now that 2.6.31 is the base.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
CONFIG_MOUSE_PS2_ELANTECH=y
|
||||
CONFIG_MOUSE_PS2_TOUCHKIT=y
|
||||
(bnc#525607)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek
|
||||
issues, add another Nvidia HDMI device id
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de
|
||||
|
||||
- Updated to 2.6.31-final.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de
|
||||
|
||||
@ -22,6 +95,11 @@ Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de
|
||||
- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch:
|
||||
scsi_dh: add the interface scsi_dh_set_params() (bnc#521607).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: delete obsolete macro.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.30
|
||||
%define patchversion 2.6.31-rc9
|
||||
%define srcversion 2.6.31
|
||||
%define patchversion 2.6.31
|
||||
%define variant %{nil}
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
%define build_flavor default
|
||||
@ -49,7 +49,7 @@
|
||||
Name: kernel-default
|
||||
Summary: The Standard Kernel
|
||||
Version: 2.6.31
|
||||
Release: 7
|
||||
Release: 8
|
||||
%if %using_buildservice
|
||||
%else
|
||||
%endif
|
||||
|
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport attach inhibition for builtin pci drivers from 2.6.32-rc.
|
||||
|
||||
- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate
|
||||
out pci_add_dynid().
|
||||
- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add
|
||||
pci_stub.ids parameter.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport patches from 2.6.32-rc to ease ossp testing.
|
||||
|
||||
- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N.
|
||||
- patches.drivers/implement-register_chrdev: chrdev: implement
|
||||
__register_chrdev().
|
||||
- patches.drivers/sound-make-oss-device-number-claiming-optional:
|
||||
sound: make OSS device number claiming optional and schedule
|
||||
its removal.
|
||||
- patches.drivers/sound-request-char-major-aliases-for-oss-devices:
|
||||
sound: request char-major-* module aliases for missing OSS
|
||||
devices.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de
|
||||
|
||||
- patches.suse/novfs-client-module: Update header todo list with
|
||||
locking nits (semaphore used as mutex / completion)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com
|
||||
|
||||
- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor
|
||||
(bnc#538849)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.suse/crasher-26.diff: Add capability to also trigger a
|
||||
kernel warning.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/block-seperate-rw-inflight-stats: Seperate read
|
||||
and write statistics of in_flight requests (fate#306525).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- patch fuzz removal now that 2.6.31 is the base.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
CONFIG_MOUSE_PS2_ELANTECH=y
|
||||
CONFIG_MOUSE_PS2_TOUCHKIT=y
|
||||
(bnc#525607)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek
|
||||
issues, add another Nvidia HDMI device id
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de
|
||||
|
||||
- Updated to 2.6.31-final.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de
|
||||
|
||||
@ -22,6 +95,11 @@ Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de
|
||||
- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch:
|
||||
scsi_dh: add the interface scsi_dh_set_params() (bnc#521607).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: delete obsolete macro.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.30
|
||||
%define patchversion 2.6.31-rc9
|
||||
%define srcversion 2.6.31
|
||||
%define patchversion 2.6.31
|
||||
%define variant %{nil}
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
%define build_flavor desktop
|
||||
@ -49,7 +49,7 @@
|
||||
Name: kernel-desktop
|
||||
Summary: Kernel optimized for the desktop
|
||||
Version: 2.6.31
|
||||
Release: 7
|
||||
Release: 8
|
||||
%if %using_buildservice
|
||||
%else
|
||||
%endif
|
||||
|
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport attach inhibition for builtin pci drivers from 2.6.32-rc.
|
||||
|
||||
- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate
|
||||
out pci_add_dynid().
|
||||
- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add
|
||||
pci_stub.ids parameter.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport patches from 2.6.32-rc to ease ossp testing.
|
||||
|
||||
- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N.
|
||||
- patches.drivers/implement-register_chrdev: chrdev: implement
|
||||
__register_chrdev().
|
||||
- patches.drivers/sound-make-oss-device-number-claiming-optional:
|
||||
sound: make OSS device number claiming optional and schedule
|
||||
its removal.
|
||||
- patches.drivers/sound-request-char-major-aliases-for-oss-devices:
|
||||
sound: request char-major-* module aliases for missing OSS
|
||||
devices.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de
|
||||
|
||||
- patches.suse/novfs-client-module: Update header todo list with
|
||||
locking nits (semaphore used as mutex / completion)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com
|
||||
|
||||
- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor
|
||||
(bnc#538849)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.suse/crasher-26.diff: Add capability to also trigger a
|
||||
kernel warning.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/block-seperate-rw-inflight-stats: Seperate read
|
||||
and write statistics of in_flight requests (fate#306525).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- patch fuzz removal now that 2.6.31 is the base.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
CONFIG_MOUSE_PS2_ELANTECH=y
|
||||
CONFIG_MOUSE_PS2_TOUCHKIT=y
|
||||
(bnc#525607)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek
|
||||
issues, add another Nvidia HDMI device id
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de
|
||||
|
||||
- Updated to 2.6.31-final.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de
|
||||
|
||||
@ -22,6 +95,11 @@ Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de
|
||||
- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch:
|
||||
scsi_dh: add the interface scsi_dh_set_params() (bnc#521607).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: delete obsolete macro.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.30
|
||||
%define patchversion 2.6.31-rc9
|
||||
%define srcversion 2.6.31
|
||||
%define patchversion 2.6.31
|
||||
%define variant %{nil}
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
%define build_flavor kdump
|
||||
@ -49,7 +49,7 @@
|
||||
Name: kernel-kdump
|
||||
Summary: kernel for kdump
|
||||
Version: 2.6.31
|
||||
Release: 7
|
||||
Release: 8
|
||||
%if %using_buildservice
|
||||
%else
|
||||
%endif
|
||||
|
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport attach inhibition for builtin pci drivers from 2.6.32-rc.
|
||||
|
||||
- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate
|
||||
out pci_add_dynid().
|
||||
- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add
|
||||
pci_stub.ids parameter.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport patches from 2.6.32-rc to ease ossp testing.
|
||||
|
||||
- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N.
|
||||
- patches.drivers/implement-register_chrdev: chrdev: implement
|
||||
__register_chrdev().
|
||||
- patches.drivers/sound-make-oss-device-number-claiming-optional:
|
||||
sound: make OSS device number claiming optional and schedule
|
||||
its removal.
|
||||
- patches.drivers/sound-request-char-major-aliases-for-oss-devices:
|
||||
sound: request char-major-* module aliases for missing OSS
|
||||
devices.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de
|
||||
|
||||
- patches.suse/novfs-client-module: Update header todo list with
|
||||
locking nits (semaphore used as mutex / completion)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com
|
||||
|
||||
- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor
|
||||
(bnc#538849)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.suse/crasher-26.diff: Add capability to also trigger a
|
||||
kernel warning.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/block-seperate-rw-inflight-stats: Seperate read
|
||||
and write statistics of in_flight requests (fate#306525).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- patch fuzz removal now that 2.6.31 is the base.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
CONFIG_MOUSE_PS2_ELANTECH=y
|
||||
CONFIG_MOUSE_PS2_TOUCHKIT=y
|
||||
(bnc#525607)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek
|
||||
issues, add another Nvidia HDMI device id
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de
|
||||
|
||||
- Updated to 2.6.31-final.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de
|
||||
|
||||
@ -22,6 +95,11 @@ Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de
|
||||
- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch:
|
||||
scsi_dh: add the interface scsi_dh_set_params() (bnc#521607).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: delete obsolete macro.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.30
|
||||
%define patchversion 2.6.31-rc9
|
||||
%define srcversion 2.6.31
|
||||
%define patchversion 2.6.31
|
||||
%define variant %{nil}
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
%define build_flavor pae
|
||||
@ -49,7 +49,7 @@
|
||||
Name: kernel-pae
|
||||
Summary: Kernel with PAE Support
|
||||
Version: 2.6.31
|
||||
Release: 7
|
||||
Release: 8
|
||||
%if %using_buildservice
|
||||
%else
|
||||
%endif
|
||||
|
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport attach inhibition for builtin pci drivers from 2.6.32-rc.
|
||||
|
||||
- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate
|
||||
out pci_add_dynid().
|
||||
- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add
|
||||
pci_stub.ids parameter.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport patches from 2.6.32-rc to ease ossp testing.
|
||||
|
||||
- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N.
|
||||
- patches.drivers/implement-register_chrdev: chrdev: implement
|
||||
__register_chrdev().
|
||||
- patches.drivers/sound-make-oss-device-number-claiming-optional:
|
||||
sound: make OSS device number claiming optional and schedule
|
||||
its removal.
|
||||
- patches.drivers/sound-request-char-major-aliases-for-oss-devices:
|
||||
sound: request char-major-* module aliases for missing OSS
|
||||
devices.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de
|
||||
|
||||
- patches.suse/novfs-client-module: Update header todo list with
|
||||
locking nits (semaphore used as mutex / completion)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com
|
||||
|
||||
- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor
|
||||
(bnc#538849)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.suse/crasher-26.diff: Add capability to also trigger a
|
||||
kernel warning.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/block-seperate-rw-inflight-stats: Seperate read
|
||||
and write statistics of in_flight requests (fate#306525).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- patch fuzz removal now that 2.6.31 is the base.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
CONFIG_MOUSE_PS2_ELANTECH=y
|
||||
CONFIG_MOUSE_PS2_TOUCHKIT=y
|
||||
(bnc#525607)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek
|
||||
issues, add another Nvidia HDMI device id
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de
|
||||
|
||||
- Updated to 2.6.31-final.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de
|
||||
|
||||
@ -22,6 +95,11 @@ Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de
|
||||
- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch:
|
||||
scsi_dh: add the interface scsi_dh_set_params() (bnc#521607).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: delete obsolete macro.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.30
|
||||
%define patchversion 2.6.31-rc9
|
||||
%define srcversion 2.6.31
|
||||
%define patchversion 2.6.31
|
||||
%define variant %{nil}
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
%define build_flavor ppc64
|
||||
@ -49,7 +49,7 @@
|
||||
Name: kernel-ppc64
|
||||
Summary: Kernel for ppc64 Systems
|
||||
Version: 2.6.31
|
||||
Release: 7
|
||||
Release: 8
|
||||
%if %using_buildservice
|
||||
%else
|
||||
%endif
|
||||
|
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport attach inhibition for builtin pci drivers from 2.6.32-rc.
|
||||
|
||||
- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate
|
||||
out pci_add_dynid().
|
||||
- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add
|
||||
pci_stub.ids parameter.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport patches from 2.6.32-rc to ease ossp testing.
|
||||
|
||||
- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N.
|
||||
- patches.drivers/implement-register_chrdev: chrdev: implement
|
||||
__register_chrdev().
|
||||
- patches.drivers/sound-make-oss-device-number-claiming-optional:
|
||||
sound: make OSS device number claiming optional and schedule
|
||||
its removal.
|
||||
- patches.drivers/sound-request-char-major-aliases-for-oss-devices:
|
||||
sound: request char-major-* module aliases for missing OSS
|
||||
devices.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de
|
||||
|
||||
- patches.suse/novfs-client-module: Update header todo list with
|
||||
locking nits (semaphore used as mutex / completion)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com
|
||||
|
||||
- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor
|
||||
(bnc#538849)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.suse/crasher-26.diff: Add capability to also trigger a
|
||||
kernel warning.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/block-seperate-rw-inflight-stats: Seperate read
|
||||
and write statistics of in_flight requests (fate#306525).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- patch fuzz removal now that 2.6.31 is the base.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
CONFIG_MOUSE_PS2_ELANTECH=y
|
||||
CONFIG_MOUSE_PS2_TOUCHKIT=y
|
||||
(bnc#525607)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek
|
||||
issues, add another Nvidia HDMI device id
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de
|
||||
|
||||
- Updated to 2.6.31-final.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de
|
||||
|
||||
@ -22,6 +95,11 @@ Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de
|
||||
- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch:
|
||||
scsi_dh: add the interface scsi_dh_set_params() (bnc#521607).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: delete obsolete macro.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.30
|
||||
%define patchversion 2.6.31-rc9
|
||||
%define srcversion 2.6.31
|
||||
%define patchversion 2.6.31
|
||||
%define variant %{nil}
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
%define build_flavor ps3
|
||||
@ -49,7 +49,7 @@
|
||||
Name: kernel-ps3
|
||||
Summary: kernel for ps3 bootloader
|
||||
Version: 2.6.31
|
||||
Release: 7
|
||||
Release: 8
|
||||
%if %using_buildservice
|
||||
%else
|
||||
%endif
|
||||
|
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport attach inhibition for builtin pci drivers from 2.6.32-rc.
|
||||
|
||||
- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate
|
||||
out pci_add_dynid().
|
||||
- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add
|
||||
pci_stub.ids parameter.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport patches from 2.6.32-rc to ease ossp testing.
|
||||
|
||||
- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N.
|
||||
- patches.drivers/implement-register_chrdev: chrdev: implement
|
||||
__register_chrdev().
|
||||
- patches.drivers/sound-make-oss-device-number-claiming-optional:
|
||||
sound: make OSS device number claiming optional and schedule
|
||||
its removal.
|
||||
- patches.drivers/sound-request-char-major-aliases-for-oss-devices:
|
||||
sound: request char-major-* module aliases for missing OSS
|
||||
devices.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de
|
||||
|
||||
- patches.suse/novfs-client-module: Update header todo list with
|
||||
locking nits (semaphore used as mutex / completion)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com
|
||||
|
||||
- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor
|
||||
(bnc#538849)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.suse/crasher-26.diff: Add capability to also trigger a
|
||||
kernel warning.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/block-seperate-rw-inflight-stats: Seperate read
|
||||
and write statistics of in_flight requests (fate#306525).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- patch fuzz removal now that 2.6.31 is the base.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
CONFIG_MOUSE_PS2_ELANTECH=y
|
||||
CONFIG_MOUSE_PS2_TOUCHKIT=y
|
||||
(bnc#525607)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek
|
||||
issues, add another Nvidia HDMI device id
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de
|
||||
|
||||
- Updated to 2.6.31-final.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de
|
||||
|
||||
@ -22,6 +95,11 @@ Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de
|
||||
- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch:
|
||||
scsi_dh: add the interface scsi_dh_set_params() (bnc#521607).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: delete obsolete macro.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.30
|
||||
%define patchversion 2.6.31-rc9
|
||||
%define srcversion 2.6.31
|
||||
%define patchversion 2.6.31
|
||||
%define variant %{nil}
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
%define build_flavor s390
|
||||
@ -49,7 +49,7 @@
|
||||
Name: kernel-s390
|
||||
Summary: The Standard Kernel
|
||||
Version: 2.6.31
|
||||
Release: 7
|
||||
Release: 8
|
||||
%if %using_buildservice
|
||||
%else
|
||||
%endif
|
||||
|
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport attach inhibition for builtin pci drivers from 2.6.32-rc.
|
||||
|
||||
- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate
|
||||
out pci_add_dynid().
|
||||
- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add
|
||||
pci_stub.ids parameter.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport patches from 2.6.32-rc to ease ossp testing.
|
||||
|
||||
- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N.
|
||||
- patches.drivers/implement-register_chrdev: chrdev: implement
|
||||
__register_chrdev().
|
||||
- patches.drivers/sound-make-oss-device-number-claiming-optional:
|
||||
sound: make OSS device number claiming optional and schedule
|
||||
its removal.
|
||||
- patches.drivers/sound-request-char-major-aliases-for-oss-devices:
|
||||
sound: request char-major-* module aliases for missing OSS
|
||||
devices.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de
|
||||
|
||||
- patches.suse/novfs-client-module: Update header todo list with
|
||||
locking nits (semaphore used as mutex / completion)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com
|
||||
|
||||
- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor
|
||||
(bnc#538849)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.suse/crasher-26.diff: Add capability to also trigger a
|
||||
kernel warning.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/block-seperate-rw-inflight-stats: Seperate read
|
||||
and write statistics of in_flight requests (fate#306525).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- patch fuzz removal now that 2.6.31 is the base.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
CONFIG_MOUSE_PS2_ELANTECH=y
|
||||
CONFIG_MOUSE_PS2_TOUCHKIT=y
|
||||
(bnc#525607)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek
|
||||
issues, add another Nvidia HDMI device id
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de
|
||||
|
||||
- Updated to 2.6.31-final.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de
|
||||
|
||||
@ -22,6 +95,11 @@ Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de
|
||||
- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch:
|
||||
scsi_dh: add the interface scsi_dh_set_params() (bnc#521607).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: delete obsolete macro.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
|
@ -18,19 +18,18 @@
|
||||
# norootforbuild
|
||||
# icecream 0
|
||||
|
||||
%define srcversion 2.6.30
|
||||
%define patchversion 2.6.31-rc9
|
||||
%define srcversion 2.6.31
|
||||
%define patchversion 2.6.31
|
||||
%define variant %{nil}
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
%define src_install_dir usr/src/linux-%kernelrelease%variant
|
||||
%define obj_install_dir /%src_install_dir-obj
|
||||
%define rpm_install_dir %buildroot%real_install_dir
|
||||
%define tolerate_unknown_new_config_options @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@
|
||||
|
||||
Name: kernel-source
|
||||
Summary: The Linux Kernel Sources
|
||||
Version: 2.6.31
|
||||
Release: 7
|
||||
Release: 8
|
||||
%if %using_buildservice
|
||||
%else
|
||||
%endif
|
||||
|
@ -28,8 +28,6 @@
|
||||
%define obj_install_dir /%src_install_dir-obj
|
||||
%define rpm_install_dir %buildroot%real_install_dir
|
||||
|
||||
%define tolerate_unknown_new_config_options @TOLERATE_UNKNOWN_NEW_CONFIG_OPTIONS@
|
||||
|
||||
Name: kernel-source@VARIANT@
|
||||
Summary: The Linux Kernel Sources
|
||||
Version: @RPMVERSION@
|
||||
|
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport attach inhibition for builtin pci drivers from 2.6.32-rc.
|
||||
|
||||
- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate
|
||||
out pci_add_dynid().
|
||||
- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add
|
||||
pci_stub.ids parameter.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport patches from 2.6.32-rc to ease ossp testing.
|
||||
|
||||
- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N.
|
||||
- patches.drivers/implement-register_chrdev: chrdev: implement
|
||||
__register_chrdev().
|
||||
- patches.drivers/sound-make-oss-device-number-claiming-optional:
|
||||
sound: make OSS device number claiming optional and schedule
|
||||
its removal.
|
||||
- patches.drivers/sound-request-char-major-aliases-for-oss-devices:
|
||||
sound: request char-major-* module aliases for missing OSS
|
||||
devices.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de
|
||||
|
||||
- patches.suse/novfs-client-module: Update header todo list with
|
||||
locking nits (semaphore used as mutex / completion)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com
|
||||
|
||||
- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor
|
||||
(bnc#538849)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.suse/crasher-26.diff: Add capability to also trigger a
|
||||
kernel warning.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/block-seperate-rw-inflight-stats: Seperate read
|
||||
and write statistics of in_flight requests (fate#306525).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- patch fuzz removal now that 2.6.31 is the base.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
CONFIG_MOUSE_PS2_ELANTECH=y
|
||||
CONFIG_MOUSE_PS2_TOUCHKIT=y
|
||||
(bnc#525607)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek
|
||||
issues, add another Nvidia HDMI device id
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de
|
||||
|
||||
- Updated to 2.6.31-final.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de
|
||||
|
||||
@ -22,6 +95,11 @@ Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de
|
||||
- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch:
|
||||
scsi_dh: add the interface scsi_dh_set_params() (bnc#521607).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: delete obsolete macro.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
Name: kernel-syms
|
||||
Summary: Kernel Symbol Versions (modversions)
|
||||
Version: 2.6.31
|
||||
Release: 7
|
||||
Release: 8
|
||||
%if %using_buildservice
|
||||
%else
|
||||
%define kernel_source_release %(LC_ALL=C rpm -q kernel-source%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0)
|
||||
|
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport attach inhibition for builtin pci drivers from 2.6.32-rc.
|
||||
|
||||
- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate
|
||||
out pci_add_dynid().
|
||||
- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add
|
||||
pci_stub.ids parameter.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport patches from 2.6.32-rc to ease ossp testing.
|
||||
|
||||
- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N.
|
||||
- patches.drivers/implement-register_chrdev: chrdev: implement
|
||||
__register_chrdev().
|
||||
- patches.drivers/sound-make-oss-device-number-claiming-optional:
|
||||
sound: make OSS device number claiming optional and schedule
|
||||
its removal.
|
||||
- patches.drivers/sound-request-char-major-aliases-for-oss-devices:
|
||||
sound: request char-major-* module aliases for missing OSS
|
||||
devices.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de
|
||||
|
||||
- patches.suse/novfs-client-module: Update header todo list with
|
||||
locking nits (semaphore used as mutex / completion)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com
|
||||
|
||||
- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor
|
||||
(bnc#538849)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.suse/crasher-26.diff: Add capability to also trigger a
|
||||
kernel warning.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/block-seperate-rw-inflight-stats: Seperate read
|
||||
and write statistics of in_flight requests (fate#306525).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- patch fuzz removal now that 2.6.31 is the base.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
CONFIG_MOUSE_PS2_ELANTECH=y
|
||||
CONFIG_MOUSE_PS2_TOUCHKIT=y
|
||||
(bnc#525607)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek
|
||||
issues, add another Nvidia HDMI device id
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de
|
||||
|
||||
- Updated to 2.6.31-final.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de
|
||||
|
||||
@ -22,6 +95,11 @@ Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de
|
||||
- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch:
|
||||
scsi_dh: add the interface scsi_dh_set_params() (bnc#521607).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: delete obsolete macro.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.30
|
||||
%define patchversion 2.6.31-rc9
|
||||
%define srcversion 2.6.31
|
||||
%define patchversion 2.6.31
|
||||
%define variant %{nil}
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
%define build_flavor trace
|
||||
@ -49,7 +49,7 @@
|
||||
Name: kernel-trace
|
||||
Summary: The Realtime Linux Kernel
|
||||
Version: 2.6.31
|
||||
Release: 7
|
||||
Release: 8
|
||||
%if %using_buildservice
|
||||
%else
|
||||
%endif
|
||||
|
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport attach inhibition for builtin pci drivers from 2.6.32-rc.
|
||||
|
||||
- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate
|
||||
out pci_add_dynid().
|
||||
- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add
|
||||
pci_stub.ids parameter.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport patches from 2.6.32-rc to ease ossp testing.
|
||||
|
||||
- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N.
|
||||
- patches.drivers/implement-register_chrdev: chrdev: implement
|
||||
__register_chrdev().
|
||||
- patches.drivers/sound-make-oss-device-number-claiming-optional:
|
||||
sound: make OSS device number claiming optional and schedule
|
||||
its removal.
|
||||
- patches.drivers/sound-request-char-major-aliases-for-oss-devices:
|
||||
sound: request char-major-* module aliases for missing OSS
|
||||
devices.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de
|
||||
|
||||
- patches.suse/novfs-client-module: Update header todo list with
|
||||
locking nits (semaphore used as mutex / completion)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com
|
||||
|
||||
- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor
|
||||
(bnc#538849)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.suse/crasher-26.diff: Add capability to also trigger a
|
||||
kernel warning.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/block-seperate-rw-inflight-stats: Seperate read
|
||||
and write statistics of in_flight requests (fate#306525).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- patch fuzz removal now that 2.6.31 is the base.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
CONFIG_MOUSE_PS2_ELANTECH=y
|
||||
CONFIG_MOUSE_PS2_TOUCHKIT=y
|
||||
(bnc#525607)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek
|
||||
issues, add another Nvidia HDMI device id
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de
|
||||
|
||||
- Updated to 2.6.31-final.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de
|
||||
|
||||
@ -22,6 +95,11 @@ Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de
|
||||
- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch:
|
||||
scsi_dh: add the interface scsi_dh_set_params() (bnc#521607).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: delete obsolete macro.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.30
|
||||
%define patchversion 2.6.31-rc9
|
||||
%define srcversion 2.6.31
|
||||
%define patchversion 2.6.31
|
||||
%define variant %{nil}
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
%define build_flavor vanilla
|
||||
@ -49,7 +49,7 @@
|
||||
Name: kernel-vanilla
|
||||
Summary: The Standard Kernel - without any SUSE patches
|
||||
Version: 2.6.31
|
||||
Release: 7
|
||||
Release: 8
|
||||
%if %using_buildservice
|
||||
%else
|
||||
%endif
|
||||
|
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:29:19 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport attach inhibition for builtin pci drivers from 2.6.32-rc.
|
||||
|
||||
- patches.drivers/pci-separate-out-pci_add_dynid: pci: separate
|
||||
out pci_add_dynid().
|
||||
- patches.drivers/pci_stub-add-ids-parameter: pci-stub: add
|
||||
pci_stub.ids parameter.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 11:22:53 CEST 2009 - teheo@suse.de
|
||||
|
||||
Backport patches from 2.6.32-rc to ease ossp testing.
|
||||
|
||||
- Update config files - SOUND_OSS_CORE_PRECLAIM is set to N.
|
||||
- patches.drivers/implement-register_chrdev: chrdev: implement
|
||||
__register_chrdev().
|
||||
- patches.drivers/sound-make-oss-device-number-claiming-optional:
|
||||
sound: make OSS device number claiming optional and schedule
|
||||
its removal.
|
||||
- patches.drivers/sound-request-char-major-aliases-for-oss-devices:
|
||||
sound: request char-major-* module aliases for missing OSS
|
||||
devices.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 21:33:26 CEST 2009 - sdietrich@suse.de
|
||||
|
||||
- patches.suse/novfs-client-module: Update header todo list with
|
||||
locking nits (semaphore used as mutex / completion)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 17:03:49 CEST 2009 - jeffm@suse.com
|
||||
|
||||
- Revert back to CONFIG_M586TSC from CONFIG_M686 for default flavor
|
||||
(bnc#538849)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 10:49:18 CEST 2009 - jbeulich@novell.com
|
||||
|
||||
- patches.suse/crasher-26.diff: Add capability to also trigger a
|
||||
kernel warning.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 11 07:11:57 CEST 2009 - knikanth@suse.de
|
||||
|
||||
- patches.suse/block-seperate-rw-inflight-stats: Seperate read
|
||||
and write statistics of in_flight requests (fate#306525).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:20:58 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- patch fuzz removal now that 2.6.31 is the base.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 17:19:17 CEST 2009 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
CONFIG_MOUSE_PS2_ELANTECH=y
|
||||
CONFIG_MOUSE_PS2_TOUCHKIT=y
|
||||
(bnc#525607)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 15:19:51 CEST 2009 - tiwai@suse.de
|
||||
|
||||
- patches.drivers/alsa-hda-2.6.32-pre: Refresh: fix misc realtek
|
||||
issues, add another Nvidia HDMI device id
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 10 03:08:43 CEST 2009 - jeffm@suse.de
|
||||
|
||||
- Updated to 2.6.31-final.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 8 18:48:55 CEST 2009 - gregkh@suse.de
|
||||
|
||||
@ -22,6 +95,11 @@ Tue Sep 8 15:03:15 CEST 2009 - knikanth@suse.de
|
||||
- patches.fixes/scsi_dh-add-the-interface-scsi_dh_set_params.patch:
|
||||
scsi_dh: add the interface scsi_dh_set_params() (bnc#521607).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 16:33:07 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: delete obsolete macro.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 7 12:40:45 CEST 2009 - mmarek@suse.cz
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
%define srcversion 2.6.30
|
||||
%define patchversion 2.6.31-rc9
|
||||
%define srcversion 2.6.31
|
||||
%define patchversion 2.6.31
|
||||
%define variant %{nil}
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
%define build_flavor xen
|
||||
@ -49,7 +49,7 @@
|
||||
Name: kernel-xen
|
||||
Summary: The Xen Kernel
|
||||
Version: 2.6.31
|
||||
Release: 6
|
||||
Release: 7
|
||||
%if %using_buildservice
|
||||
%else
|
||||
%endif
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d7b9f19b92fd5c693c16cd62f441d051b699f28ec6a175d1b464e58bacd8c78f
|
||||
size 59435895
|
3
linux-2.6.31.tar.bz2
Normal file
3
linux-2.6.31.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0acd83f7b85db7ee18c2b0b7505e1ba6fd722c36f49a8870a831c851660e3512
|
||||
size 61494822
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0b42806b7f5d02209e77660f3419363b2c79795578bebd1e0fddcdc2e1e00b0c
|
||||
size 36937
|
||||
oid sha256:39c867372a33411fca860da95af7cf9feb0f8e4845698a8d57c5c115a48da809
|
||||
size 36916
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b1691c3055c1e6080beae5dd846e96769eae0de84d1afca462d555b53d2a51de
|
||||
size 234617
|
||||
oid sha256:bf6f3e8d2b834daa7aadbfa78c2acebb927c038f4f4103d0c1a9e3f1a3f0aaed
|
||||
size 242025
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:196f1ce31f8163f94ff1fceaec02868895f499310e609c76fd89f4b55004a323
|
||||
size 11183474
|
||||
oid sha256:8a33cc5aba13a59319143cf1d356215c07f8d2fdf3759dc38461bfd0dc3a72b1
|
||||
size 3722
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9f531b8ae2d3a2d7bb2cfd7e96e6b704195660463e8ef264e3ce99d0fb115d2e
|
||||
size 852441
|
||||
oid sha256:0a0f550b962803174a8a7c3200fa91f55c5efb6dc0b5a98b31306418e573e18d
|
||||
size 854003
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:87be51e13ec51a7d1e64b6aa0e77ac9f65344849365dfb9f727144c3ceb97b2e
|
||||
size 1846708
|
||||
oid sha256:c568793403b539ed720859c31b884419102dc620e9d38b024aba9810088fd1b6
|
||||
size 1850247
|
||||
|
18
series.conf
18
series.conf
@ -27,15 +27,6 @@
|
||||
# DO NOT MODIFY THEM!
|
||||
# Send separate patches upstream if you find a problem...
|
||||
########################################################
|
||||
patches.kernel.org/patch-2.6.31-rc1
|
||||
patches.kernel.org/patch-2.6.31-rc1-rc2
|
||||
patches.kernel.org/patch-2.6.31-rc2-rc3
|
||||
patches.kernel.org/patch-2.6.31-rc3-rc4
|
||||
patches.kernel.org/patch-2.6.31-rc4-rc5
|
||||
patches.kernel.org/patch-2.6.31-rc5-rc6
|
||||
patches.kernel.org/patch-2.6.31-rc6-rc7
|
||||
patches.kernel.org/patch-2.6.31-rc7-rc8
|
||||
patches.kernel.org/patch-2.6.31-rc8-rc9
|
||||
|
||||
########################################################
|
||||
# Build fixes that apply to the vanilla kernel too.
|
||||
@ -382,6 +373,8 @@
|
||||
|
||||
patches.fixes/scsi-check-host-lookup-failure
|
||||
|
||||
patches.suse/block-seperate-rw-inflight-stats
|
||||
|
||||
# Remaining SCSI patches (garloff)
|
||||
patches.suse/scsi-error-test-unit-ready-timeout
|
||||
patches.fixes/scsi-scan-blist-update
|
||||
@ -426,6 +419,8 @@
|
||||
########################################################
|
||||
# PCI and PCI hotplug
|
||||
########################################################
|
||||
patches.drivers/pci-separate-out-pci_add_dynid
|
||||
patches.drivers/pci_stub-add-ids-parameter
|
||||
|
||||
########################################################
|
||||
# sysfs / driver core
|
||||
@ -474,6 +469,11 @@
|
||||
patches.drivers/alsa-usb-05-use-multiple-output-URBs
|
||||
patches.drivers/alsa-usb-06-add-MIDI-drain-callback
|
||||
|
||||
# backported from 2.6.32 for OSSP
|
||||
patches.drivers/implement-register_chrdev
|
||||
patches.drivers/sound-request-char-major-aliases-for-oss-devices
|
||||
patches.drivers/sound-make-oss-device-number-claiming-optional
|
||||
|
||||
########################################################
|
||||
# Other driver fixes
|
||||
########################################################
|
||||
|
@ -1,3 +1,3 @@
|
||||
2009-09-08 18:49:15 +0200
|
||||
GIT Revision: 3161ffc424838f7e32e6d64970eef2ff8f016cd1
|
||||
2009-09-15 11:30:09 +0200
|
||||
GIT Revision: bc902ececdf4c1739202ba3990a2f1e65060b648
|
||||
GIT Branch: master
|
||||
|
Loading…
Reference in New Issue
Block a user