OBS User unknown 2008-10-13 21:31:54 +00:00 committed by Git OBS Bridge
parent b962baa347
commit 7cc11fd84e
52 changed files with 2707 additions and 144 deletions

View File

@ -1 +1 @@
2008-10-13 10:05:25 +0200
2008-10-13 21:37:58 +0200

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9969d9944e53e3bbe3281e63cc4ece59ca5c1772b4904187ae9b4e082b59373f
size 134786
oid sha256:a75512772e940cc472b0a9ba0fb2e903f4c99d9c9b62b9d346ce24d1d8e0e4ea
size 135232

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e42c4d109b2a8f57b5e2e616a6212b1efe26bd6b8c5628d3249d0017c6a214e3
size 2272
oid sha256:b3fc94d8992415d9208df741b974d06586718c6d14959ae0f6e9b4c5935eb177
size 2273

View File

@ -1,3 +1,98 @@
-------------------------------------------------------------------
Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
-------------------------------------------------------------------
Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
-------------------------------------------------------------------
Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
-------------------------------------------------------------------
Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
-------------------------------------------------------------------
Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
-------------------------------------------------------------------
Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de
- disabled staging drivers for -rt trees
-------------------------------------------------------------------
Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
-------------------------------------------------------------------
Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
-------------------------------------------------------------------
Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
-------------------------------------------------------------------
Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
-------------------------------------------------------------------
Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
-------------------------------------------------------------------
Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
-------------------------------------------------------------------
Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
-------------------------------------------------------------------
Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
-------------------------------------------------------------------
Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
-------------------------------------------------------------------
Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de

View File

@ -58,7 +58,7 @@
Name: kernel-debug
Summary: A Debug Version of the Kernel
Version: 2.6.27
Release: 17
Release: 18
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -196,6 +196,7 @@ Obsoletes: rt2x00-kmp
Obsoletes: rfswitch-kmp
Obsoletes: uvcvideo-kmp
Obsoletes: atl2-kmp
Obsoletes: wlan-ng-kmp
# Build with bash instead of sh as the shell: this turns on bash
# extensions like <(...).
%define _buildshell /bin/bash
@ -214,7 +215,7 @@ Only use this kernel when investigating problems.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%prep
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
@ -558,6 +559,9 @@ if [ $CONFIG_MODULES = y ]; then
for module in $(find lib/modules/$KERNELRELEASE -type f -name '*.ko'); do
case "$(/sbin/modinfo -F supported $module)" in
(yes|external)
modname=$(basename $module .ko)
deps=$(/sbin/modinfo -F depends $module|tr ',' ' ')
echo "$modname: $deps" >> %my_builddir/Makefile.supported
echo "/$module" >> %my_builddir/supported-modules
;;
(*)
@ -573,10 +577,11 @@ if [ $CONFIG_MODULES = y ]; then
modules_dep=%buildroot/lib/modules/$KERNELRELEASE/modules.dep
# Make sure that no supported modules depend on any unsupported modules.
dependent_unsupported_modules=$(
comm -3 <(sort %my_builddir/supported-modules) \
<(cat %my_builddir/supported-modules \
| add_dependent_modules $modules_dep \
| sort))
OUT=$(mktemp)
sed -e 's/:.*//g' < %my_builddir/Makefile.supported | \
xargs make -rRsk -f %my_builddir/Makefile.supported > $OUT
sed -ne '/No rule/s/^.*No rule to make target//p' < $OUT | tr -d "\`'"
)
if [ -n "$dependent_unsupported_modules" ]; then
echo "The following unsupported modules are used by supported modules:"
echo "$dependent_unsupported_modules"
@ -684,7 +689,7 @@ This package contains only the base modules, required in all installs.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%pre -n kernel-debug-base -f pre-base.sh
@ -715,7 +720,7 @@ This package contains additional modules not supported by Novell.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%post -n kernel-debug-extra -f post-extra.sh
%if %split_packages
@ -724,6 +729,56 @@ Source Timestamp: 2008-10-13 10:05:25 +0200
%defattr(-, root, root)
%endif
%changelog
* Mon Oct 13 2008 gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
* Mon Oct 13 2008 gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
* Mon Oct 13 2008 gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
* Mon Oct 13 2008 gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
* Mon Oct 13 2008 aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
* Mon Oct 13 2008 gregkh@suse.de
- disabled staging drivers for -rt trees
* Mon Oct 13 2008 gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
* Mon Oct 13 2008 jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
* Mon Oct 13 2008 jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
* Mon Oct 13 2008 sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
* Mon Oct 13 2008 jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
* Mon Oct 13 2008 oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
* Mon Oct 13 2008 ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
* Mon Oct 13 2008 jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
* Mon Oct 13 2008 ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
* Mon Oct 13 2008 aj@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning.
* Mon Oct 13 2008 sjayaraman@suse.de

View File

@ -1,3 +1,98 @@
-------------------------------------------------------------------
Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
-------------------------------------------------------------------
Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
-------------------------------------------------------------------
Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
-------------------------------------------------------------------
Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
-------------------------------------------------------------------
Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
-------------------------------------------------------------------
Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de
- disabled staging drivers for -rt trees
-------------------------------------------------------------------
Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
-------------------------------------------------------------------
Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
-------------------------------------------------------------------
Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
-------------------------------------------------------------------
Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
-------------------------------------------------------------------
Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
-------------------------------------------------------------------
Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
-------------------------------------------------------------------
Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
-------------------------------------------------------------------
Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
-------------------------------------------------------------------
Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
-------------------------------------------------------------------
Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de

View File

@ -58,7 +58,7 @@
Name: kernel-default
Summary: The Standard Kernel
Version: 2.6.27
Release: 17
Release: 18
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -215,6 +215,7 @@ Obsoletes: rt2x00-kmp
Obsoletes: rfswitch-kmp
Obsoletes: uvcvideo-kmp
Obsoletes: atl2-kmp
Obsoletes: wlan-ng-kmp
# Build with bash instead of sh as the shell: this turns on bash
# extensions like <(...).
%define _buildshell /bin/bash
@ -232,7 +233,7 @@ The standard kernel for both uniprocessor and multiprocessor systems.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%prep
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
@ -576,6 +577,9 @@ if [ $CONFIG_MODULES = y ]; then
for module in $(find lib/modules/$KERNELRELEASE -type f -name '*.ko'); do
case "$(/sbin/modinfo -F supported $module)" in
(yes|external)
modname=$(basename $module .ko)
deps=$(/sbin/modinfo -F depends $module|tr ',' ' ')
echo "$modname: $deps" >> %my_builddir/Makefile.supported
echo "/$module" >> %my_builddir/supported-modules
;;
(*)
@ -591,10 +595,11 @@ if [ $CONFIG_MODULES = y ]; then
modules_dep=%buildroot/lib/modules/$KERNELRELEASE/modules.dep
# Make sure that no supported modules depend on any unsupported modules.
dependent_unsupported_modules=$(
comm -3 <(sort %my_builddir/supported-modules) \
<(cat %my_builddir/supported-modules \
| add_dependent_modules $modules_dep \
| sort))
OUT=$(mktemp)
sed -e 's/:.*//g' < %my_builddir/Makefile.supported | \
xargs make -rRsk -f %my_builddir/Makefile.supported > $OUT
sed -ne '/No rule/s/^.*No rule to make target//p' < $OUT | tr -d "\`'"
)
if [ -n "$dependent_unsupported_modules" ]; then
echo "The following unsupported modules are used by supported modules:"
echo "$dependent_unsupported_modules"
@ -701,7 +706,7 @@ This package contains only the base modules, required in all installs.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%pre -n kernel-default-base -f pre-base.sh
@ -731,7 +736,7 @@ This package contains additional modules not supported by Novell.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%post -n kernel-default-extra -f post-extra.sh
%if %split_packages
@ -740,6 +745,56 @@ Source Timestamp: 2008-10-13 10:05:25 +0200
%defattr(-, root, root)
%endif
%changelog
* Mon Oct 13 2008 gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
* Mon Oct 13 2008 gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
* Mon Oct 13 2008 gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
* Mon Oct 13 2008 gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
* Mon Oct 13 2008 aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
* Mon Oct 13 2008 gregkh@suse.de
- disabled staging drivers for -rt trees
* Mon Oct 13 2008 gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
* Mon Oct 13 2008 jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
* Mon Oct 13 2008 jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
* Mon Oct 13 2008 sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
* Mon Oct 13 2008 jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
* Mon Oct 13 2008 oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
* Mon Oct 13 2008 ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
* Mon Oct 13 2008 jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
* Mon Oct 13 2008 ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
* Mon Oct 13 2008 aj@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning.
* Mon Oct 13 2008 sjayaraman@suse.de

View File

@ -1,3 +1,98 @@
-------------------------------------------------------------------
Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
-------------------------------------------------------------------
Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
-------------------------------------------------------------------
Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
-------------------------------------------------------------------
Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
-------------------------------------------------------------------
Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
-------------------------------------------------------------------
Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de
- disabled staging drivers for -rt trees
-------------------------------------------------------------------
Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
-------------------------------------------------------------------
Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
-------------------------------------------------------------------
Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
-------------------------------------------------------------------
Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
-------------------------------------------------------------------
Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
-------------------------------------------------------------------
Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
-------------------------------------------------------------------
Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
-------------------------------------------------------------------
Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
-------------------------------------------------------------------
Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
-------------------------------------------------------------------
Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de

View File

@ -23,7 +23,7 @@ Url: http://www.kernel.org/
Name: kernel-dummy
Summary: Internal dummy package for synchronizing release numbers
Version: 2.6.27
Release: 17
Release: 18
License: GPL v2 only
Group: System/Kernel
AutoReqProv: off
@ -36,7 +36,7 @@ Authors:
--------
Andreas Gruenbacher <agruen@suse.de>
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%install
rm -rf %buildroot
@ -47,6 +47,56 @@ echo dummy > %buildroot/etc/dummy
%defattr(-, root, root)
/etc/dummy
%changelog
* Mon Oct 13 2008 gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
* Mon Oct 13 2008 gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
* Mon Oct 13 2008 gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
* Mon Oct 13 2008 gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
* Mon Oct 13 2008 aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
* Mon Oct 13 2008 gregkh@suse.de
- disabled staging drivers for -rt trees
* Mon Oct 13 2008 gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
* Mon Oct 13 2008 jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
* Mon Oct 13 2008 jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
* Mon Oct 13 2008 sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
* Mon Oct 13 2008 jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
* Mon Oct 13 2008 oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
* Mon Oct 13 2008 ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
* Mon Oct 13 2008 jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
* Mon Oct 13 2008 ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
* Mon Oct 13 2008 aj@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning.
* Mon Oct 13 2008 sjayaraman@suse.de

View File

@ -1,3 +1,98 @@
-------------------------------------------------------------------
Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
-------------------------------------------------------------------
Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
-------------------------------------------------------------------
Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
-------------------------------------------------------------------
Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
-------------------------------------------------------------------
Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
-------------------------------------------------------------------
Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de
- disabled staging drivers for -rt trees
-------------------------------------------------------------------
Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
-------------------------------------------------------------------
Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
-------------------------------------------------------------------
Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
-------------------------------------------------------------------
Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
-------------------------------------------------------------------
Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
-------------------------------------------------------------------
Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
-------------------------------------------------------------------
Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
-------------------------------------------------------------------
Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
-------------------------------------------------------------------
Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
-------------------------------------------------------------------
Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de

View File

@ -58,7 +58,7 @@
Name: kernel-kdump
Summary: kernel for kdump
Version: 2.6.27
Release: 17
Release: 18
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -193,6 +193,7 @@ Obsoletes: rt2x00-kmp
Obsoletes: rfswitch-kmp
Obsoletes: uvcvideo-kmp
Obsoletes: atl2-kmp
Obsoletes: wlan-ng-kmp
# Build with bash instead of sh as the shell: this turns on bash
# extensions like <(...).
%define _buildshell /bin/bash
@ -213,7 +214,7 @@ crashed kernel.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%prep
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
@ -557,6 +558,9 @@ if [ $CONFIG_MODULES = y ]; then
for module in $(find lib/modules/$KERNELRELEASE -type f -name '*.ko'); do
case "$(/sbin/modinfo -F supported $module)" in
(yes|external)
modname=$(basename $module .ko)
deps=$(/sbin/modinfo -F depends $module|tr ',' ' ')
echo "$modname: $deps" >> %my_builddir/Makefile.supported
echo "/$module" >> %my_builddir/supported-modules
;;
(*)
@ -572,10 +576,11 @@ if [ $CONFIG_MODULES = y ]; then
modules_dep=%buildroot/lib/modules/$KERNELRELEASE/modules.dep
# Make sure that no supported modules depend on any unsupported modules.
dependent_unsupported_modules=$(
comm -3 <(sort %my_builddir/supported-modules) \
<(cat %my_builddir/supported-modules \
| add_dependent_modules $modules_dep \
| sort))
OUT=$(mktemp)
sed -e 's/:.*//g' < %my_builddir/Makefile.supported | \
xargs make -rRsk -f %my_builddir/Makefile.supported > $OUT
sed -ne '/No rule/s/^.*No rule to make target//p' < $OUT | tr -d "\`'"
)
if [ -n "$dependent_unsupported_modules" ]; then
echo "The following unsupported modules are used by supported modules:"
echo "$dependent_unsupported_modules"
@ -685,7 +690,7 @@ This package contains only the base modules, required in all installs.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%pre -n kernel-kdump-base -f pre-base.sh
@ -718,7 +723,7 @@ This package contains additional modules not supported by Novell.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%post -n kernel-kdump-extra -f post-extra.sh
%if %split_packages
@ -727,6 +732,56 @@ Source Timestamp: 2008-10-13 10:05:25 +0200
%defattr(-, root, root)
%endif
%changelog
* Mon Oct 13 2008 gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
* Mon Oct 13 2008 gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
* Mon Oct 13 2008 gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
* Mon Oct 13 2008 gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
* Mon Oct 13 2008 aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
* Mon Oct 13 2008 gregkh@suse.de
- disabled staging drivers for -rt trees
* Mon Oct 13 2008 gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
* Mon Oct 13 2008 jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
* Mon Oct 13 2008 jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
* Mon Oct 13 2008 sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
* Mon Oct 13 2008 jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
* Mon Oct 13 2008 oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
* Mon Oct 13 2008 ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
* Mon Oct 13 2008 jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
* Mon Oct 13 2008 ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
* Mon Oct 13 2008 aj@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning.
* Mon Oct 13 2008 sjayaraman@suse.de

View File

@ -1,3 +1,98 @@
-------------------------------------------------------------------
Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
-------------------------------------------------------------------
Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
-------------------------------------------------------------------
Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
-------------------------------------------------------------------
Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
-------------------------------------------------------------------
Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
-------------------------------------------------------------------
Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de
- disabled staging drivers for -rt trees
-------------------------------------------------------------------
Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
-------------------------------------------------------------------
Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
-------------------------------------------------------------------
Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
-------------------------------------------------------------------
Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
-------------------------------------------------------------------
Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
-------------------------------------------------------------------
Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
-------------------------------------------------------------------
Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
-------------------------------------------------------------------
Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
-------------------------------------------------------------------
Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
-------------------------------------------------------------------
Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de

View File

@ -58,7 +58,7 @@
Name: kernel-pae
Summary: Kernel with PAE Support
Version: 2.6.27
Release: 17
Release: 18
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -190,6 +190,7 @@ Obsoletes: rt2x00-kmp
Obsoletes: rfswitch-kmp
Obsoletes: uvcvideo-kmp
Obsoletes: atl2-kmp
Obsoletes: wlan-ng-kmp
# Build with bash instead of sh as the shell: this turns on bash
# extensions like <(...).
%define _buildshell /bin/bash
@ -214,7 +215,7 @@ that support it, regardless of the amount of main memory.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%prep
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
@ -558,6 +559,9 @@ if [ $CONFIG_MODULES = y ]; then
for module in $(find lib/modules/$KERNELRELEASE -type f -name '*.ko'); do
case "$(/sbin/modinfo -F supported $module)" in
(yes|external)
modname=$(basename $module .ko)
deps=$(/sbin/modinfo -F depends $module|tr ',' ' ')
echo "$modname: $deps" >> %my_builddir/Makefile.supported
echo "/$module" >> %my_builddir/supported-modules
;;
(*)
@ -573,10 +577,11 @@ if [ $CONFIG_MODULES = y ]; then
modules_dep=%buildroot/lib/modules/$KERNELRELEASE/modules.dep
# Make sure that no supported modules depend on any unsupported modules.
dependent_unsupported_modules=$(
comm -3 <(sort %my_builddir/supported-modules) \
<(cat %my_builddir/supported-modules \
| add_dependent_modules $modules_dep \
| sort))
OUT=$(mktemp)
sed -e 's/:.*//g' < %my_builddir/Makefile.supported | \
xargs make -rRsk -f %my_builddir/Makefile.supported > $OUT
sed -ne '/No rule/s/^.*No rule to make target//p' < $OUT | tr -d "\`'"
)
if [ -n "$dependent_unsupported_modules" ]; then
echo "The following unsupported modules are used by supported modules:"
echo "$dependent_unsupported_modules"
@ -690,7 +695,7 @@ This package contains only the base modules, required in all installs.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%pre -n kernel-pae-base -f pre-base.sh
@ -727,7 +732,7 @@ This package contains additional modules not supported by Novell.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%post -n kernel-pae-extra -f post-extra.sh
%if %split_packages
@ -736,6 +741,56 @@ Source Timestamp: 2008-10-13 10:05:25 +0200
%defattr(-, root, root)
%endif
%changelog
* Mon Oct 13 2008 gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
* Mon Oct 13 2008 gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
* Mon Oct 13 2008 gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
* Mon Oct 13 2008 gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
* Mon Oct 13 2008 aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
* Mon Oct 13 2008 gregkh@suse.de
- disabled staging drivers for -rt trees
* Mon Oct 13 2008 gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
* Mon Oct 13 2008 jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
* Mon Oct 13 2008 jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
* Mon Oct 13 2008 sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
* Mon Oct 13 2008 jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
* Mon Oct 13 2008 oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
* Mon Oct 13 2008 ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
* Mon Oct 13 2008 jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
* Mon Oct 13 2008 ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
* Mon Oct 13 2008 aj@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning.
* Mon Oct 13 2008 sjayaraman@suse.de

View File

@ -1,3 +1,98 @@
-------------------------------------------------------------------
Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
-------------------------------------------------------------------
Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
-------------------------------------------------------------------
Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
-------------------------------------------------------------------
Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
-------------------------------------------------------------------
Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
-------------------------------------------------------------------
Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de
- disabled staging drivers for -rt trees
-------------------------------------------------------------------
Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
-------------------------------------------------------------------
Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
-------------------------------------------------------------------
Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
-------------------------------------------------------------------
Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
-------------------------------------------------------------------
Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
-------------------------------------------------------------------
Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
-------------------------------------------------------------------
Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
-------------------------------------------------------------------
Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
-------------------------------------------------------------------
Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
-------------------------------------------------------------------
Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de

View File

@ -58,7 +58,7 @@
Name: kernel-ppc64
Summary: Kernel for ppc64 Systems
Version: 2.6.27
Release: 17
Release: 18
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -195,6 +195,7 @@ Obsoletes: rt2x00-kmp
Obsoletes: rfswitch-kmp
Obsoletes: uvcvideo-kmp
Obsoletes: atl2-kmp
Obsoletes: wlan-ng-kmp
# Build with bash instead of sh as the shell: this turns on bash
# extensions like <(...).
%define _buildshell /bin/bash
@ -226,7 +227,7 @@ Authors:
Tom Gall <tom_gall@vnet.ibm.com>
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%prep
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
@ -570,6 +571,9 @@ if [ $CONFIG_MODULES = y ]; then
for module in $(find lib/modules/$KERNELRELEASE -type f -name '*.ko'); do
case "$(/sbin/modinfo -F supported $module)" in
(yes|external)
modname=$(basename $module .ko)
deps=$(/sbin/modinfo -F depends $module|tr ',' ' ')
echo "$modname: $deps" >> %my_builddir/Makefile.supported
echo "/$module" >> %my_builddir/supported-modules
;;
(*)
@ -585,10 +589,11 @@ if [ $CONFIG_MODULES = y ]; then
modules_dep=%buildroot/lib/modules/$KERNELRELEASE/modules.dep
# Make sure that no supported modules depend on any unsupported modules.
dependent_unsupported_modules=$(
comm -3 <(sort %my_builddir/supported-modules) \
<(cat %my_builddir/supported-modules \
| add_dependent_modules $modules_dep \
| sort))
OUT=$(mktemp)
sed -e 's/:.*//g' < %my_builddir/Makefile.supported | \
xargs make -rRsk -f %my_builddir/Makefile.supported > $OUT
sed -ne '/No rule/s/^.*No rule to make target//p' < $OUT | tr -d "\`'"
)
if [ -n "$dependent_unsupported_modules" ]; then
echo "The following unsupported modules are used by supported modules:"
echo "$dependent_unsupported_modules"
@ -709,7 +714,7 @@ Authors:
Tom Gall <tom_gall@vnet.ibm.com>
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%pre -n kernel-ppc64-base -f pre-base.sh
@ -753,7 +758,7 @@ Authors:
Tom Gall <tom_gall@vnet.ibm.com>
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%post -n kernel-ppc64-extra -f post-extra.sh
%if %split_packages
@ -762,6 +767,56 @@ Source Timestamp: 2008-10-13 10:05:25 +0200
%defattr(-, root, root)
%endif
%changelog
* Mon Oct 13 2008 gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
* Mon Oct 13 2008 gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
* Mon Oct 13 2008 gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
* Mon Oct 13 2008 gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
* Mon Oct 13 2008 aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
* Mon Oct 13 2008 gregkh@suse.de
- disabled staging drivers for -rt trees
* Mon Oct 13 2008 gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
* Mon Oct 13 2008 jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
* Mon Oct 13 2008 jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
* Mon Oct 13 2008 sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
* Mon Oct 13 2008 jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
* Mon Oct 13 2008 oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
* Mon Oct 13 2008 ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
* Mon Oct 13 2008 jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
* Mon Oct 13 2008 ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
* Mon Oct 13 2008 aj@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning.
* Mon Oct 13 2008 sjayaraman@suse.de

View File

@ -1,3 +1,98 @@
-------------------------------------------------------------------
Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
-------------------------------------------------------------------
Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
-------------------------------------------------------------------
Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
-------------------------------------------------------------------
Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
-------------------------------------------------------------------
Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
-------------------------------------------------------------------
Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de
- disabled staging drivers for -rt trees
-------------------------------------------------------------------
Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
-------------------------------------------------------------------
Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
-------------------------------------------------------------------
Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
-------------------------------------------------------------------
Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
-------------------------------------------------------------------
Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
-------------------------------------------------------------------
Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
-------------------------------------------------------------------
Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
-------------------------------------------------------------------
Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
-------------------------------------------------------------------
Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
-------------------------------------------------------------------
Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de

View File

@ -58,7 +58,7 @@
Name: kernel-ps3
Summary: kernel for ps3 bootloader
Version: 2.6.27
Release: 17
Release: 18
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -193,6 +193,7 @@ Obsoletes: rt2x00-kmp
Obsoletes: rfswitch-kmp
Obsoletes: uvcvideo-kmp
Obsoletes: atl2-kmp
Obsoletes: wlan-ng-kmp
# Build with bash instead of sh as the shell: this turns on bash
# extensions like <(...).
%define _buildshell /bin/bash
@ -212,7 +213,7 @@ needs to be as small as possible.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%prep
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
@ -556,6 +557,9 @@ if [ $CONFIG_MODULES = y ]; then
for module in $(find lib/modules/$KERNELRELEASE -type f -name '*.ko'); do
case "$(/sbin/modinfo -F supported $module)" in
(yes|external)
modname=$(basename $module .ko)
deps=$(/sbin/modinfo -F depends $module|tr ',' ' ')
echo "$modname: $deps" >> %my_builddir/Makefile.supported
echo "/$module" >> %my_builddir/supported-modules
;;
(*)
@ -571,10 +575,11 @@ if [ $CONFIG_MODULES = y ]; then
modules_dep=%buildroot/lib/modules/$KERNELRELEASE/modules.dep
# Make sure that no supported modules depend on any unsupported modules.
dependent_unsupported_modules=$(
comm -3 <(sort %my_builddir/supported-modules) \
<(cat %my_builddir/supported-modules \
| add_dependent_modules $modules_dep \
| sort))
OUT=$(mktemp)
sed -e 's/:.*//g' < %my_builddir/Makefile.supported | \
xargs make -rRsk -f %my_builddir/Makefile.supported > $OUT
sed -ne '/No rule/s/^.*No rule to make target//p' < $OUT | tr -d "\`'"
)
if [ -n "$dependent_unsupported_modules" ]; then
echo "The following unsupported modules are used by supported modules:"
echo "$dependent_unsupported_modules"
@ -681,7 +686,7 @@ needs to be as small as possible.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%pre -n kernel-ps3-base -f pre-base.sh
@ -711,7 +716,7 @@ needs to be as small as possible.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%post -n kernel-ps3-extra -f post-extra.sh
%if %split_packages
@ -720,6 +725,56 @@ Source Timestamp: 2008-10-13 10:05:25 +0200
%defattr(-, root, root)
%endif
%changelog
* Mon Oct 13 2008 gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
* Mon Oct 13 2008 gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
* Mon Oct 13 2008 gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
* Mon Oct 13 2008 gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
* Mon Oct 13 2008 aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
* Mon Oct 13 2008 gregkh@suse.de
- disabled staging drivers for -rt trees
* Mon Oct 13 2008 gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
* Mon Oct 13 2008 jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
* Mon Oct 13 2008 jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
* Mon Oct 13 2008 sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
* Mon Oct 13 2008 jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
* Mon Oct 13 2008 oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
* Mon Oct 13 2008 ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
* Mon Oct 13 2008 jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
* Mon Oct 13 2008 ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
* Mon Oct 13 2008 aj@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning.
* Mon Oct 13 2008 sjayaraman@suse.de

View File

@ -1,3 +1,98 @@
-------------------------------------------------------------------
Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
-------------------------------------------------------------------
Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
-------------------------------------------------------------------
Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
-------------------------------------------------------------------
Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
-------------------------------------------------------------------
Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
-------------------------------------------------------------------
Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de
- disabled staging drivers for -rt trees
-------------------------------------------------------------------
Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
-------------------------------------------------------------------
Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
-------------------------------------------------------------------
Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
-------------------------------------------------------------------
Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
-------------------------------------------------------------------
Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
-------------------------------------------------------------------
Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
-------------------------------------------------------------------
Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
-------------------------------------------------------------------
Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
-------------------------------------------------------------------
Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
-------------------------------------------------------------------
Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de

View File

@ -58,7 +58,7 @@
Name: kernel-rt
Summary: The Realtime Linux Kernel
Version: 2.6.27
Release: 4
Release: 5
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -193,6 +193,7 @@ Obsoletes: rt2x00-kmp
Obsoletes: rfswitch-kmp
Obsoletes: uvcvideo-kmp
Obsoletes: atl2-kmp
Obsoletes: wlan-ng-kmp
# Build with bash instead of sh as the shell: this turns on bash
# extensions like <(...).
%define _buildshell /bin/bash
@ -216,7 +217,7 @@ Authors:
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%prep
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
@ -560,6 +561,9 @@ if [ $CONFIG_MODULES = y ]; then
for module in $(find lib/modules/$KERNELRELEASE -type f -name '*.ko'); do
case "$(/sbin/modinfo -F supported $module)" in
(yes|external)
modname=$(basename $module .ko)
deps=$(/sbin/modinfo -F depends $module|tr ',' ' ')
echo "$modname: $deps" >> %my_builddir/Makefile.supported
echo "/$module" >> %my_builddir/supported-modules
;;
(*)
@ -575,10 +579,11 @@ if [ $CONFIG_MODULES = y ]; then
modules_dep=%buildroot/lib/modules/$KERNELRELEASE/modules.dep
# Make sure that no supported modules depend on any unsupported modules.
dependent_unsupported_modules=$(
comm -3 <(sort %my_builddir/supported-modules) \
<(cat %my_builddir/supported-modules \
| add_dependent_modules $modules_dep \
| sort))
OUT=$(mktemp)
sed -e 's/:.*//g' < %my_builddir/Makefile.supported | \
xargs make -rRsk -f %my_builddir/Makefile.supported > $OUT
sed -ne '/No rule/s/^.*No rule to make target//p' < $OUT | tr -d "\`'"
)
if [ -n "$dependent_unsupported_modules" ]; then
echo "The following unsupported modules are used by supported modules:"
echo "$dependent_unsupported_modules"
@ -691,7 +696,7 @@ Authors:
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%pre -n kernel-rt-base -f pre-base.sh
@ -727,7 +732,7 @@ Authors:
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%post -n kernel-rt-extra -f post-extra.sh
%if %split_packages
@ -736,6 +741,56 @@ Source Timestamp: 2008-10-13 10:05:25 +0200
%defattr(-, root, root)
%endif
%changelog
* Mon Oct 13 2008 gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
* Mon Oct 13 2008 gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
* Mon Oct 13 2008 gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
* Mon Oct 13 2008 gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
* Mon Oct 13 2008 aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
* Mon Oct 13 2008 gregkh@suse.de
- disabled staging drivers for -rt trees
* Mon Oct 13 2008 gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
* Mon Oct 13 2008 jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
* Mon Oct 13 2008 jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
* Mon Oct 13 2008 sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
* Mon Oct 13 2008 jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
* Mon Oct 13 2008 oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
* Mon Oct 13 2008 ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
* Mon Oct 13 2008 jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
* Mon Oct 13 2008 ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
* Mon Oct 13 2008 aj@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning.
* Mon Oct 13 2008 sjayaraman@suse.de

View File

@ -1,3 +1,98 @@
-------------------------------------------------------------------
Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
-------------------------------------------------------------------
Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
-------------------------------------------------------------------
Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
-------------------------------------------------------------------
Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
-------------------------------------------------------------------
Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
-------------------------------------------------------------------
Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de
- disabled staging drivers for -rt trees
-------------------------------------------------------------------
Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
-------------------------------------------------------------------
Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
-------------------------------------------------------------------
Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
-------------------------------------------------------------------
Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
-------------------------------------------------------------------
Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
-------------------------------------------------------------------
Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
-------------------------------------------------------------------
Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
-------------------------------------------------------------------
Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
-------------------------------------------------------------------
Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
-------------------------------------------------------------------
Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de

View File

@ -58,7 +58,7 @@
Name: kernel-rt_debug
Summary: A Debug Version of the Kernel
Version: 2.6.27
Release: 3
Release: 4
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -193,6 +193,7 @@ Obsoletes: rt2x00-kmp
Obsoletes: rfswitch-kmp
Obsoletes: uvcvideo-kmp
Obsoletes: atl2-kmp
Obsoletes: wlan-ng-kmp
# Build with bash instead of sh as the shell: this turns on bash
# extensions like <(...).
%define _buildshell /bin/bash
@ -211,7 +212,7 @@ Only use this kernel when investigating problems.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%prep
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
@ -555,6 +556,9 @@ if [ $CONFIG_MODULES = y ]; then
for module in $(find lib/modules/$KERNELRELEASE -type f -name '*.ko'); do
case "$(/sbin/modinfo -F supported $module)" in
(yes|external)
modname=$(basename $module .ko)
deps=$(/sbin/modinfo -F depends $module|tr ',' ' ')
echo "$modname: $deps" >> %my_builddir/Makefile.supported
echo "/$module" >> %my_builddir/supported-modules
;;
(*)
@ -570,10 +574,11 @@ if [ $CONFIG_MODULES = y ]; then
modules_dep=%buildroot/lib/modules/$KERNELRELEASE/modules.dep
# Make sure that no supported modules depend on any unsupported modules.
dependent_unsupported_modules=$(
comm -3 <(sort %my_builddir/supported-modules) \
<(cat %my_builddir/supported-modules \
| add_dependent_modules $modules_dep \
| sort))
OUT=$(mktemp)
sed -e 's/:.*//g' < %my_builddir/Makefile.supported | \
xargs make -rRsk -f %my_builddir/Makefile.supported > $OUT
sed -ne '/No rule/s/^.*No rule to make target//p' < $OUT | tr -d "\`'"
)
if [ -n "$dependent_unsupported_modules" ]; then
echo "The following unsupported modules are used by supported modules:"
echo "$dependent_unsupported_modules"
@ -681,7 +686,7 @@ This package contains only the base modules, required in all installs.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%pre -n kernel-rt_debug-base -f pre-base.sh
@ -712,7 +717,7 @@ This package contains additional modules not supported by Novell.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%post -n kernel-rt_debug-extra -f post-extra.sh
%if %split_packages
@ -721,6 +726,56 @@ Source Timestamp: 2008-10-13 10:05:25 +0200
%defattr(-, root, root)
%endif
%changelog
* Mon Oct 13 2008 gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
* Mon Oct 13 2008 gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
* Mon Oct 13 2008 gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
* Mon Oct 13 2008 gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
* Mon Oct 13 2008 aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
* Mon Oct 13 2008 gregkh@suse.de
- disabled staging drivers for -rt trees
* Mon Oct 13 2008 gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
* Mon Oct 13 2008 jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
* Mon Oct 13 2008 jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
* Mon Oct 13 2008 sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
* Mon Oct 13 2008 jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
* Mon Oct 13 2008 oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
* Mon Oct 13 2008 ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
* Mon Oct 13 2008 jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
* Mon Oct 13 2008 ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
* Mon Oct 13 2008 aj@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning.
* Mon Oct 13 2008 sjayaraman@suse.de

View File

@ -1,3 +1,98 @@
-------------------------------------------------------------------
Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
-------------------------------------------------------------------
Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
-------------------------------------------------------------------
Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
-------------------------------------------------------------------
Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
-------------------------------------------------------------------
Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
-------------------------------------------------------------------
Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de
- disabled staging drivers for -rt trees
-------------------------------------------------------------------
Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
-------------------------------------------------------------------
Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
-------------------------------------------------------------------
Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
-------------------------------------------------------------------
Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
-------------------------------------------------------------------
Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
-------------------------------------------------------------------
Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
-------------------------------------------------------------------
Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
-------------------------------------------------------------------
Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
-------------------------------------------------------------------
Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
-------------------------------------------------------------------
Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de

View File

@ -58,7 +58,7 @@
Name: kernel-s390
Summary: The Standard Kernel
Version: 2.6.27
Release: 17
Release: 18
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -190,6 +190,7 @@ Obsoletes: rt2x00-kmp
Obsoletes: rfswitch-kmp
Obsoletes: uvcvideo-kmp
Obsoletes: atl2-kmp
Obsoletes: wlan-ng-kmp
# Build with bash instead of sh as the shell: this turns on bash
# extensions like <(...).
%define _buildshell /bin/bash
@ -207,7 +208,7 @@ The standard kernel.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%prep
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
@ -551,6 +552,9 @@ if [ $CONFIG_MODULES = y ]; then
for module in $(find lib/modules/$KERNELRELEASE -type f -name '*.ko'); do
case "$(/sbin/modinfo -F supported $module)" in
(yes|external)
modname=$(basename $module .ko)
deps=$(/sbin/modinfo -F depends $module|tr ',' ' ')
echo "$modname: $deps" >> %my_builddir/Makefile.supported
echo "/$module" >> %my_builddir/supported-modules
;;
(*)
@ -566,10 +570,11 @@ if [ $CONFIG_MODULES = y ]; then
modules_dep=%buildroot/lib/modules/$KERNELRELEASE/modules.dep
# Make sure that no supported modules depend on any unsupported modules.
dependent_unsupported_modules=$(
comm -3 <(sort %my_builddir/supported-modules) \
<(cat %my_builddir/supported-modules \
| add_dependent_modules $modules_dep \
| sort))
OUT=$(mktemp)
sed -e 's/:.*//g' < %my_builddir/Makefile.supported | \
xargs make -rRsk -f %my_builddir/Makefile.supported > $OUT
sed -ne '/No rule/s/^.*No rule to make target//p' < $OUT | tr -d "\`'"
)
if [ -n "$dependent_unsupported_modules" ]; then
echo "The following unsupported modules are used by supported modules:"
echo "$dependent_unsupported_modules"
@ -676,7 +681,7 @@ This package contains only the base modules, required in all installs.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%pre -n kernel-s390-base -f pre-base.sh
@ -706,7 +711,7 @@ This package contains additional modules not supported by Novell.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%post -n kernel-s390-extra -f post-extra.sh
%if %split_packages
@ -715,6 +720,56 @@ Source Timestamp: 2008-10-13 10:05:25 +0200
%defattr(-, root, root)
%endif
%changelog
* Mon Oct 13 2008 gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
* Mon Oct 13 2008 gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
* Mon Oct 13 2008 gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
* Mon Oct 13 2008 gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
* Mon Oct 13 2008 aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
* Mon Oct 13 2008 gregkh@suse.de
- disabled staging drivers for -rt trees
* Mon Oct 13 2008 gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
* Mon Oct 13 2008 jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
* Mon Oct 13 2008 jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
* Mon Oct 13 2008 sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
* Mon Oct 13 2008 jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
* Mon Oct 13 2008 oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
* Mon Oct 13 2008 ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
* Mon Oct 13 2008 jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
* Mon Oct 13 2008 ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
* Mon Oct 13 2008 aj@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning.
* Mon Oct 13 2008 sjayaraman@suse.de

View File

@ -1,3 +1,98 @@
-------------------------------------------------------------------
Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
-------------------------------------------------------------------
Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
-------------------------------------------------------------------
Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
-------------------------------------------------------------------
Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
-------------------------------------------------------------------
Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
-------------------------------------------------------------------
Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de
- disabled staging drivers for -rt trees
-------------------------------------------------------------------
Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
-------------------------------------------------------------------
Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
-------------------------------------------------------------------
Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
-------------------------------------------------------------------
Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
-------------------------------------------------------------------
Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
-------------------------------------------------------------------
Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
-------------------------------------------------------------------
Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
-------------------------------------------------------------------
Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
-------------------------------------------------------------------
Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
-------------------------------------------------------------------
Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de

View File

@ -30,7 +30,7 @@ Url: http://www.kernel.org/
Name: kernel-source-rt
Summary: The Linux Kernel Sources, including the real-time patches
Version: 2.6.27
Release: 10
Release: 11
License: GPL v2 only
Group: Development/Sources
AutoReqProv: off
@ -120,7 +120,7 @@ Authors:
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%prep
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
@ -286,6 +286,56 @@ install -m 644 %_sourcedir/kernel-module-subpackage \
%files -f kernel-source-rt.files
%changelog
* Mon Oct 13 2008 gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
* Mon Oct 13 2008 gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
* Mon Oct 13 2008 gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
* Mon Oct 13 2008 gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
* Mon Oct 13 2008 aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
* Mon Oct 13 2008 gregkh@suse.de
- disabled staging drivers for -rt trees
* Mon Oct 13 2008 gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
* Mon Oct 13 2008 jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
* Mon Oct 13 2008 jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
* Mon Oct 13 2008 sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
* Mon Oct 13 2008 jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
* Mon Oct 13 2008 oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
* Mon Oct 13 2008 ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
* Mon Oct 13 2008 jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
* Mon Oct 13 2008 ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
* Mon Oct 13 2008 aj@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning.
* Mon Oct 13 2008 sjayaraman@suse.de

View File

@ -1,3 +1,98 @@
-------------------------------------------------------------------
Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
-------------------------------------------------------------------
Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
-------------------------------------------------------------------
Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
-------------------------------------------------------------------
Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
-------------------------------------------------------------------
Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
-------------------------------------------------------------------
Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de
- disabled staging drivers for -rt trees
-------------------------------------------------------------------
Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
-------------------------------------------------------------------
Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
-------------------------------------------------------------------
Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
-------------------------------------------------------------------
Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
-------------------------------------------------------------------
Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
-------------------------------------------------------------------
Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
-------------------------------------------------------------------
Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
-------------------------------------------------------------------
Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
-------------------------------------------------------------------
Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
-------------------------------------------------------------------
Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de

View File

@ -30,7 +30,7 @@ Url: http://www.kernel.org/
Name: kernel-source
Summary: The Linux Kernel Sources
Version: 2.6.27
Release: 17
Release: 18
License: GPL v2 only
Group: Development/Sources
AutoReqProv: off
@ -120,7 +120,7 @@ Authors:
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%prep
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
@ -286,6 +286,56 @@ install -m 644 %_sourcedir/kernel-module-subpackage \
%files -f kernel-source.files
%changelog
* Mon Oct 13 2008 gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
* Mon Oct 13 2008 gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
* Mon Oct 13 2008 gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
* Mon Oct 13 2008 gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
* Mon Oct 13 2008 aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
* Mon Oct 13 2008 gregkh@suse.de
- disabled staging drivers for -rt trees
* Mon Oct 13 2008 gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
* Mon Oct 13 2008 jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
* Mon Oct 13 2008 jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
* Mon Oct 13 2008 sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
* Mon Oct 13 2008 jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
* Mon Oct 13 2008 oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
* Mon Oct 13 2008 ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
* Mon Oct 13 2008 jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
* Mon Oct 13 2008 ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
* Mon Oct 13 2008 aj@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning.
* Mon Oct 13 2008 sjayaraman@suse.de

View File

@ -1,3 +1,98 @@
-------------------------------------------------------------------
Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
-------------------------------------------------------------------
Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
-------------------------------------------------------------------
Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
-------------------------------------------------------------------
Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
-------------------------------------------------------------------
Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
-------------------------------------------------------------------
Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de
- disabled staging drivers for -rt trees
-------------------------------------------------------------------
Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
-------------------------------------------------------------------
Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
-------------------------------------------------------------------
Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
-------------------------------------------------------------------
Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
-------------------------------------------------------------------
Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
-------------------------------------------------------------------
Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
-------------------------------------------------------------------
Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
-------------------------------------------------------------------
Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
-------------------------------------------------------------------
Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
-------------------------------------------------------------------
Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de

View File

@ -29,7 +29,7 @@ Url: http://www.kernel.org/
Name: kernel-syms-rt
Summary: Kernel Symbol Versions (modversions) For Real-Time Kernels
Version: 2.6.27
Release: 4
Release: 5
License: GPL v2 only
Group: Development/Sources
AutoReqProv: off
@ -74,7 +74,7 @@ Authors:
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%prep
echo "Architecture symbol(s):" %symbols
@ -130,6 +130,56 @@ done
/boot/symsets-*-*.tar.gz
/lib/modules/*/build
%changelog
* Mon Oct 13 2008 gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
* Mon Oct 13 2008 gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
* Mon Oct 13 2008 gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
* Mon Oct 13 2008 gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
* Mon Oct 13 2008 aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
* Mon Oct 13 2008 gregkh@suse.de
- disabled staging drivers for -rt trees
* Mon Oct 13 2008 gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
* Mon Oct 13 2008 jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
* Mon Oct 13 2008 jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
* Mon Oct 13 2008 sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
* Mon Oct 13 2008 jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
* Mon Oct 13 2008 oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
* Mon Oct 13 2008 ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
* Mon Oct 13 2008 jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
* Mon Oct 13 2008 ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
* Mon Oct 13 2008 aj@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning.
* Mon Oct 13 2008 sjayaraman@suse.de

View File

@ -1,3 +1,98 @@
-------------------------------------------------------------------
Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
-------------------------------------------------------------------
Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
-------------------------------------------------------------------
Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
-------------------------------------------------------------------
Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
-------------------------------------------------------------------
Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
-------------------------------------------------------------------
Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de
- disabled staging drivers for -rt trees
-------------------------------------------------------------------
Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
-------------------------------------------------------------------
Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
-------------------------------------------------------------------
Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
-------------------------------------------------------------------
Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
-------------------------------------------------------------------
Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
-------------------------------------------------------------------
Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
-------------------------------------------------------------------
Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
-------------------------------------------------------------------
Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
-------------------------------------------------------------------
Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
-------------------------------------------------------------------
Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de

View File

@ -29,7 +29,7 @@ Url: http://www.kernel.org/
Name: kernel-syms
Summary: Kernel Symbol Versions (modversions)
Version: 2.6.27
Release: 17
Release: 18
License: GPL v2 only
Group: Development/Sources
AutoReqProv: off
@ -94,7 +94,7 @@ Authors:
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%prep
echo "Architecture symbol(s):" %symbols
@ -150,6 +150,56 @@ done
/boot/symsets-*-*.tar.gz
/lib/modules/*/build
%changelog
* Mon Oct 13 2008 gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
* Mon Oct 13 2008 gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
* Mon Oct 13 2008 gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
* Mon Oct 13 2008 gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
* Mon Oct 13 2008 aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
* Mon Oct 13 2008 gregkh@suse.de
- disabled staging drivers for -rt trees
* Mon Oct 13 2008 gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
* Mon Oct 13 2008 jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
* Mon Oct 13 2008 jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
* Mon Oct 13 2008 sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
* Mon Oct 13 2008 jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
* Mon Oct 13 2008 oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
* Mon Oct 13 2008 ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
* Mon Oct 13 2008 jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
* Mon Oct 13 2008 ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
* Mon Oct 13 2008 aj@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning.
* Mon Oct 13 2008 sjayaraman@suse.de

View File

@ -1,3 +1,98 @@
-------------------------------------------------------------------
Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
-------------------------------------------------------------------
Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
-------------------------------------------------------------------
Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
-------------------------------------------------------------------
Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
-------------------------------------------------------------------
Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
-------------------------------------------------------------------
Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de
- disabled staging drivers for -rt trees
-------------------------------------------------------------------
Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
-------------------------------------------------------------------
Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
-------------------------------------------------------------------
Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
-------------------------------------------------------------------
Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
-------------------------------------------------------------------
Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
-------------------------------------------------------------------
Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
-------------------------------------------------------------------
Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
-------------------------------------------------------------------
Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
-------------------------------------------------------------------
Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
-------------------------------------------------------------------
Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de

View File

@ -58,7 +58,7 @@
Name: kernel-trace
Summary: The Realtime Linux Kernel
Version: 2.6.27
Release: 10
Release: 11
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -196,6 +196,7 @@ Obsoletes: rt2x00-kmp
Obsoletes: rfswitch-kmp
Obsoletes: uvcvideo-kmp
Obsoletes: atl2-kmp
Obsoletes: wlan-ng-kmp
# Build with bash instead of sh as the shell: this turns on bash
# extensions like <(...).
%define _buildshell /bin/bash
@ -219,7 +220,7 @@ Authors:
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%prep
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
@ -563,6 +564,9 @@ if [ $CONFIG_MODULES = y ]; then
for module in $(find lib/modules/$KERNELRELEASE -type f -name '*.ko'); do
case "$(/sbin/modinfo -F supported $module)" in
(yes|external)
modname=$(basename $module .ko)
deps=$(/sbin/modinfo -F depends $module|tr ',' ' ')
echo "$modname: $deps" >> %my_builddir/Makefile.supported
echo "/$module" >> %my_builddir/supported-modules
;;
(*)
@ -578,10 +582,11 @@ if [ $CONFIG_MODULES = y ]; then
modules_dep=%buildroot/lib/modules/$KERNELRELEASE/modules.dep
# Make sure that no supported modules depend on any unsupported modules.
dependent_unsupported_modules=$(
comm -3 <(sort %my_builddir/supported-modules) \
<(cat %my_builddir/supported-modules \
| add_dependent_modules $modules_dep \
| sort))
OUT=$(mktemp)
sed -e 's/:.*//g' < %my_builddir/Makefile.supported | \
xargs make -rRsk -f %my_builddir/Makefile.supported > $OUT
sed -ne '/No rule/s/^.*No rule to make target//p' < $OUT | tr -d "\`'"
)
if [ -n "$dependent_unsupported_modules" ]; then
echo "The following unsupported modules are used by supported modules:"
echo "$dependent_unsupported_modules"
@ -692,7 +697,7 @@ Authors:
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%pre -n kernel-trace-base -f pre-base.sh
@ -726,7 +731,7 @@ Authors:
see /usr/src/linux/CREDITS for more details.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%post -n kernel-trace-extra -f post-extra.sh
%if %split_packages
@ -735,6 +740,56 @@ Source Timestamp: 2008-10-13 10:05:25 +0200
%defattr(-, root, root)
%endif
%changelog
* Mon Oct 13 2008 gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
* Mon Oct 13 2008 gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
* Mon Oct 13 2008 gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
* Mon Oct 13 2008 gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
* Mon Oct 13 2008 aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
* Mon Oct 13 2008 gregkh@suse.de
- disabled staging drivers for -rt trees
* Mon Oct 13 2008 gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
* Mon Oct 13 2008 jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
* Mon Oct 13 2008 jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
* Mon Oct 13 2008 sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
* Mon Oct 13 2008 jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
* Mon Oct 13 2008 oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
* Mon Oct 13 2008 ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
* Mon Oct 13 2008 jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
* Mon Oct 13 2008 ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
* Mon Oct 13 2008 aj@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning.
* Mon Oct 13 2008 sjayaraman@suse.de

View File

@ -1,3 +1,98 @@
-------------------------------------------------------------------
Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
-------------------------------------------------------------------
Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
-------------------------------------------------------------------
Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
-------------------------------------------------------------------
Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
-------------------------------------------------------------------
Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
-------------------------------------------------------------------
Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de
- disabled staging drivers for -rt trees
-------------------------------------------------------------------
Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
-------------------------------------------------------------------
Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
-------------------------------------------------------------------
Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
-------------------------------------------------------------------
Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
-------------------------------------------------------------------
Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
-------------------------------------------------------------------
Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
-------------------------------------------------------------------
Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
-------------------------------------------------------------------
Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
-------------------------------------------------------------------
Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
-------------------------------------------------------------------
Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de

View File

@ -58,7 +58,7 @@
Name: kernel-vanilla
Summary: The Standard Kernel - without any SUSE patches
Version: 2.6.27
Release: 17
Release: 18
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -212,6 +212,7 @@ Obsoletes: rt2x00-kmp
Obsoletes: rfswitch-kmp
Obsoletes: uvcvideo-kmp
Obsoletes: atl2-kmp
Obsoletes: wlan-ng-kmp
# Build with bash instead of sh as the shell: this turns on bash
# extensions like <(...).
%define _buildshell /bin/bash
@ -229,7 +230,7 @@ The standard kernel - without any SUSE patches
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%prep
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
@ -573,6 +574,9 @@ if [ $CONFIG_MODULES = y ]; then
for module in $(find lib/modules/$KERNELRELEASE -type f -name '*.ko'); do
case "$(/sbin/modinfo -F supported $module)" in
(yes|external)
modname=$(basename $module .ko)
deps=$(/sbin/modinfo -F depends $module|tr ',' ' ')
echo "$modname: $deps" >> %my_builddir/Makefile.supported
echo "/$module" >> %my_builddir/supported-modules
;;
(*)
@ -588,10 +592,11 @@ if [ $CONFIG_MODULES = y ]; then
modules_dep=%buildroot/lib/modules/$KERNELRELEASE/modules.dep
# Make sure that no supported modules depend on any unsupported modules.
dependent_unsupported_modules=$(
comm -3 <(sort %my_builddir/supported-modules) \
<(cat %my_builddir/supported-modules \
| add_dependent_modules $modules_dep \
| sort))
OUT=$(mktemp)
sed -e 's/:.*//g' < %my_builddir/Makefile.supported | \
xargs make -rRsk -f %my_builddir/Makefile.supported > $OUT
sed -ne '/No rule/s/^.*No rule to make target//p' < $OUT | tr -d "\`'"
)
if [ -n "$dependent_unsupported_modules" ]; then
echo "The following unsupported modules are used by supported modules:"
echo "$dependent_unsupported_modules"
@ -696,7 +701,7 @@ The standard kernel - without any SUSE patches
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%pre -n kernel-vanilla-base -f pre-base.sh
@ -724,7 +729,7 @@ The standard kernel - without any SUSE patches
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%post -n kernel-vanilla-extra -f post-extra.sh
%if %split_packages
@ -733,6 +738,56 @@ Source Timestamp: 2008-10-13 10:05:25 +0200
%defattr(-, root, root)
%endif
%changelog
* Mon Oct 13 2008 gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
* Mon Oct 13 2008 gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
* Mon Oct 13 2008 gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
* Mon Oct 13 2008 gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
* Mon Oct 13 2008 aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
* Mon Oct 13 2008 gregkh@suse.de
- disabled staging drivers for -rt trees
* Mon Oct 13 2008 gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
* Mon Oct 13 2008 jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
* Mon Oct 13 2008 jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
* Mon Oct 13 2008 sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
* Mon Oct 13 2008 jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
* Mon Oct 13 2008 oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
* Mon Oct 13 2008 ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
* Mon Oct 13 2008 jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
* Mon Oct 13 2008 ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
* Mon Oct 13 2008 aj@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning.
* Mon Oct 13 2008 sjayaraman@suse.de

View File

@ -1,3 +1,98 @@
-------------------------------------------------------------------
Mon Oct 13 21:33:49 CEST 2008 - gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
-------------------------------------------------------------------
Mon Oct 13 20:47:48 CEST 2008 - gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
-------------------------------------------------------------------
Mon Oct 13 20:46:03 CEST 2008 - gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
-------------------------------------------------------------------
Mon Oct 13 20:44:24 CEST 2008 - gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
-------------------------------------------------------------------
Mon Oct 13 20:38:36 CEST 2008 - aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
-------------------------------------------------------------------
Mon Oct 13 20:18:48 CEST 2008 - gregkh@suse.de
- disabled staging drivers for -rt trees
-------------------------------------------------------------------
Mon Oct 13 20:14:39 CEST 2008 - gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
-------------------------------------------------------------------
Mon Oct 13 19:08:42 CEST 2008 - jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
-------------------------------------------------------------------
Mon Oct 13 17:16:40 CEST 2008 - jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
-------------------------------------------------------------------
Mon Oct 13 15:44:39 CEST 2008 - sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
-------------------------------------------------------------------
Mon Oct 13 15:27:02 CEST 2008 - jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
-------------------------------------------------------------------
Mon Oct 13 14:37:57 CEST 2008 - oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
-------------------------------------------------------------------
Mon Oct 13 13:53:09 CEST 2008 - ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
-------------------------------------------------------------------
Mon Oct 13 13:18:50 CEST 2008 - jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
-------------------------------------------------------------------
Mon Oct 13 13:16:56 CEST 2008 - ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
-------------------------------------------------------------------
Mon Oct 13 10:01:30 CEST 2008 - aj@suse.de

View File

@ -58,7 +58,7 @@
Name: kernel-xen
Summary: The Xen Kernel
Version: 2.6.27
Release: 15
Release: 16
License: GPL v2 only
Group: System/Kernel
Url: http://www.kernel.org/
@ -193,6 +193,7 @@ Obsoletes: rt2x00-kmp
Obsoletes: rfswitch-kmp
Obsoletes: uvcvideo-kmp
Obsoletes: atl2-kmp
Obsoletes: wlan-ng-kmp
# Build with bash instead of sh as the shell: this turns on bash
# extensions like <(...).
%define _buildshell /bin/bash
@ -213,7 +214,7 @@ unprivileged ("xenU") kernel.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%prep
if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then
@ -557,6 +558,9 @@ if [ $CONFIG_MODULES = y ]; then
for module in $(find lib/modules/$KERNELRELEASE -type f -name '*.ko'); do
case "$(/sbin/modinfo -F supported $module)" in
(yes|external)
modname=$(basename $module .ko)
deps=$(/sbin/modinfo -F depends $module|tr ',' ' ')
echo "$modname: $deps" >> %my_builddir/Makefile.supported
echo "/$module" >> %my_builddir/supported-modules
;;
(*)
@ -572,10 +576,11 @@ if [ $CONFIG_MODULES = y ]; then
modules_dep=%buildroot/lib/modules/$KERNELRELEASE/modules.dep
# Make sure that no supported modules depend on any unsupported modules.
dependent_unsupported_modules=$(
comm -3 <(sort %my_builddir/supported-modules) \
<(cat %my_builddir/supported-modules \
| add_dependent_modules $modules_dep \
| sort))
OUT=$(mktemp)
sed -e 's/:.*//g' < %my_builddir/Makefile.supported | \
xargs make -rRsk -f %my_builddir/Makefile.supported > $OUT
sed -ne '/No rule/s/^.*No rule to make target//p' < $OUT | tr -d "\`'"
)
if [ -n "$dependent_unsupported_modules" ]; then
echo "The following unsupported modules are used by supported modules:"
echo "$dependent_unsupported_modules"
@ -685,7 +690,7 @@ This package contains only the base modules, required in all installs.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%pre -n kernel-xen-base -f pre-base.sh
@ -718,7 +723,7 @@ This package contains additional modules not supported by Novell.
Source Timestamp: 2008-10-13 10:05:25 +0200
Source Timestamp: 2008-10-13 21:37:58 +0200
%post -n kernel-xen-extra -f post-extra.sh
%if %split_packages
@ -727,6 +732,56 @@ Source Timestamp: 2008-10-13 10:05:25 +0200
%defattr(-, root, root)
%endif
%changelog
* Mon Oct 13 2008 gregkh@suse.de
- refresh all patches (except xen and rt) to apply cleanly
* Mon Oct 13 2008 gregkh@suse.de
- rpm/kernel-binary.spec.in: add Obsoletes: wlan-ng-kmp as the needed
driver is now included from the staging tree.
* Mon Oct 13 2008 gregkh@suse.de
- put proper Patch-mainline: markings on staging patches
* Mon Oct 13 2008 gregkh@suse.de
- patches.drivers/staging-workaround-build-system-bug.patch:
Staging: workaround build system bug.
* Mon Oct 13 2008 aj@suse.de
- rpm/post.sh: Fix typo that breaks script.
* Mon Oct 13 2008 gregkh@suse.de
- disabled staging drivers for -rt trees
* Mon Oct 13 2008 gregkh@suse.de
- Add -staging tree:
- added TAINT_CRAP flag
- added eth131x network driver
- added slicoss network driver
- added sgx network driver
- added me4000 data collection driver
- added go7007 video capture driver
- added USB/IP host and client driver
- added w35und wifi network driver
- added prism2 usb wifi network driver
- added echo cancellation driver
- only enabled these on x86 platforms
* Mon Oct 13 2008 jjolly@suse.de
- patches.arch/s390-02-01-xpram.patch: xpram: per device block
request queues (bnc#434333,LTC#49030)
* Mon Oct 13 2008 jeffm@suse.de
- rpm/kernel-binary.spec.in: Updated supported.conf checker to
eliminate false positives.
* Mon Oct 13 2008 sjayaraman@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Fix a compiler warning.
* Mon Oct 13 2008 jbenc@suse.cz
- supported.conf: mark drivers/net/wireless/b43* and
driver/net/wireless/rt2x00/* as unsupported because of known
problems we cannot fix.
* Mon Oct 13 2008 oneukum@suse.de
- patches.fixes/wdm_autoload.diff: add MODULE_DEVICE_TABLE to
cdc-wdm driver to compute a proper alias (bnc#433817).
* Mon Oct 13 2008 ptesarik@suse.cz
- Update config files (CONFIG_UTRACE for rt flavours).
* Mon Oct 13 2008 jbeulich@novell.com
- patches.xen/xen3-patch-2.6.27-rc3: Fix uninitialized data issue.
* Mon Oct 13 2008 ptesarik@suse.cz
- patches.trace/utrace-core: utrace core (FATE#304321).
CONFIG_UTRACE enabled only for kernel-trace.
- Update config files.
* Mon Oct 13 2008 aj@suse.de
- patches.suse/SoN-14-mm-reserve.patch: Add cast to fix compiler warning.
* Mon Oct 13 2008 sjayaraman@suse.de

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bddb75cab0edf905aa99194ab7d52811cd97e83553b7c8f5791c22c27e0b68ea
size 125
oid sha256:3ddb9811f52b59e5881c824e43f5dc228a071898aa22bcdfdb15fcdb4e0b9b49
size 130

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:624f9470ad6868b6a48f9a29ec0db56448dd6ba0208f222db6aae626970e94e9
size 59111
oid sha256:29f002d25f888a1aad4271a1321a24bf5cbb799b35752b74b5a3a757e58a1c42
size 59173

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:abce751bd04c928b70a4bcebe5ebc5bf34143647fbdb125543786be5251021e6
size 120870
oid sha256:291721965679a4260144322fe4831071d5eb4efb8d681a7555d5496a95ba92ae
size 121407

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3cdf4c184caf973e2b854867f056a8004a79f553102f8d6615bdd3037e837c29
size 518625
oid sha256:e504b51b0d2f299b98b142ea8b41a49c7481a73a9806a9ad1c00a74299374996
size 1335608

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:04110b4ca6bd3c82f3a39883eb023a69e21609f4d3c15260aea5db079533897e
size 80471
oid sha256:d5e0ec99e637a7a2f3d92bcca5c255080966fc7f8bba977359537c24f5ceb241
size 79302

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0f15b49b661ca1428e372fe8a656aa3d4351c31727b39aea9e464c17e32bc931
size 5373
oid sha256:c35f808bd865a0e01fafeff4c5c206d35f4b6634c3ca9efa25afebd0dd8a59d2
size 5393

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2f41a715f97942579ffbe54175c368a86eee764b2ce2a88370d2bc6cb8dc55ca
size 1613
oid sha256:6d4d11c26ce8a01336e06c0891999f1199744578b1ab0362354ca40007c943a6
size 1630

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a4c7496a8bfb0740986c5341619fcea23a293c5e958bf080aee0fa6d845817d1
size 352358
oid sha256:9c8628b09d864f6ce317cdea7922b2af9861bca3b8cf9ff340256347bf5e9641
size 352589

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:11d224beb429d227785636360890ed626ee8c1417d093c6b2938394ea34da8ba
size 1195897
oid sha256:bee587883ba1eb745c32dec830d61b5e2156fe15f1b3b255be1b06add1e7549a
size 1193923

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c250b75a2ac701e3c38bec47ffdcdbd60165c812894b1f80275ad1b7654764c8
size 28490
oid sha256:33d68b30ed02cb41f97b54350332e203e6c8855feda1261209ad4da31a7dee67
size 57962

3
patches.uml.tar.bz2 Normal file
View File

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

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1824e1abab0f35c259e853a8f0936fde0b9d232b9b48bafc6c07cb42f3e401dd
size 1460639
oid sha256:a2767eed2c4d324e664796fb7e4d26979cc7060a567a5c5ac82f0e5f6dd29630
size 1460677

View File

@ -83,7 +83,7 @@ if [ -f /etc/fstab -a ! -e /.buildenv -a -x /sbin/mkinitrd ] ; then
# only run the bootloader if the usual bootloader configuration
# files are there -- this is different on every architecture
initrd=/boot/initrd-@KERNELRELEASE
initrd=/boot/initrd-@KERNELRELEASE@
if [ -e $initrd -o ! -e /lib/modules/@KERNELRELEASE@ ] && \
run_bootloader ; then
[ -e $initrd ] || initrd=

View File

@ -235,6 +235,8 @@
patches.arch/s390-01-04-fcpperf-3.patch
patches.arch/s390-01-04-fcpperf-4-v2.patch
patches.arch/s390-02-01-xpram.patch
########################################################
# VM/FS patches
########################################################
@ -633,6 +635,8 @@
patches.suse/usb-storage-disable-delay.patch
#403346
patches.fixes/ehci_sched.diff
#433817
patches.fixes/wdm_autoload.diff
########################################################
# I2C
@ -808,6 +812,8 @@
patches.trace/ftrace-port-to-tracepoints.patch
patches.trace/ftrace-framepointer.diff
patches.trace/utrace-core
########################################################
# Swap over NFS
########################################################
@ -844,6 +850,35 @@
patches.suse/SoN-30-nfs-swap_ops.patch
patches.suse/SoN-31-nfs-alloc-recursions.patch
########################################################
# Staging tree patches
# new drivers that are going upstream
########################################################
patches.drivers/0001-Staging-add-TAINT_CRAP-for-all-drivers-staging-code.patch
patches.drivers/0002-Staging-add-TAINT_CRAP-flag-to-drivers-staging-modu.patch
patches.drivers/0003-Staging-add-Kconfig-entries-and-Makefile-infrastruc.patch
patches.drivers/0004-Staging-add-MAINTAINERS-entry.patch
patches.drivers/0005-Staging-add-et131x-network-driver.patch
patches.drivers/0006-Staging-add-Alacritech-slicoss-network-driver.patch
patches.drivers/0007-Staging-add-sxg-network-driver.patch
patches.drivers/0008-Staging-add-me4000-firmware-files.patch
patches.drivers/0009-Staging-add-me4000-pci-data-collection-driver.patch
patches.drivers/0010-Staging-add-the-go7007-video-driver.patch
patches.drivers/0011-Staging-USB-IP-add-common-functions-needed.patch
patches.drivers/0012-Staging-USB-IP-add-client-driver.patch
patches.drivers/0013-Staging-USB-IP-add-host-driver.patch
patches.drivers/0014-Staging-add-w35und-wifi-driver.patch
patches.drivers/0015-Staging-add-wlan-ng-prism2-usb-driver.patch
patches.drivers/0016-Staging-add-echo-cancelation-module.patch
patches.drivers/0017-Staging-Fix-gcc-warnings-in-sxg.patch
patches.drivers/0018-Staging-go7007-v4l-fixes.patch
patches.drivers/0019-Staging-SLICOSS-lots-of-checkpatch-fixes.patch
patches.drivers/0020-Staging-SLICOSS-Fix-warnings-due-to-static-usage.patch
patches.drivers/0021-Staging-SLICOSS-Fix-remaining-type-names.patch
patches.drivers/0022-Staging-SLICOSS-Call-pci_release_regions-at-driver.patch
patches.drivers/0023-Staging-Lindent-sxg.c.patch
patches.drivers/staging-workaround-build-system-bug.patch
########################################################
# You'd better have a good reason for adding a patch
# below here.

View File

@ -1338,8 +1338,8 @@
kernel/drivers/net/wireless/atmel_cs # Support for Atmel at76c50x 802.11 wireless ethernet cards.
kernel/drivers/net/wireless/atmel_pci # Support for Atmel at76c50x 802.11 wireless ethernet cards.
kernel/drivers/net/wireless/atmel # Support for Atmel at76c50x 802.11 wireless ethernet cards.
kernel/drivers/net/wireless/b43/b43
kernel/drivers/net/wireless/b43legacy/b43legacy
- kernel/drivers/net/wireless/b43/b43
- kernel/drivers/net/wireless/b43legacy/b43legacy
kernel/drivers/net/wireless/hermes # Low-level driver helper for Lucent Hermes chipset and Prism II HFA384x wireless MAC controller
- kernel/drivers/net/wireless/hostap/hostap_cs
- kernel/drivers/net/wireless/hostap/hostap # Host AP common routines
@ -1368,14 +1368,14 @@
kernel/drivers/net/wireless/prism54/prism54 # The Prism54 802.11 Wireless LAN adapter
- kernel/drivers/net/wireless/ray_cs # Raylink/WebGear wireless LAN driver
kernel/drivers/net/wireless/rndis_wlan
kernel/drivers/net/wireless/rt2x00/rt2400pci
kernel/drivers/net/wireless/rt2x00/rt2500pci
kernel/drivers/net/wireless/rt2x00/rt2500usb
kernel/drivers/net/wireless/rt2x00/rt2x00lib
kernel/drivers/net/wireless/rt2x00/rt2x00pci
kernel/drivers/net/wireless/rt2x00/rt2x00usb
kernel/drivers/net/wireless/rt2x00/rt61pci
kernel/drivers/net/wireless/rt2x00/rt73usb
- kernel/drivers/net/wireless/rt2x00/rt2400pci
- kernel/drivers/net/wireless/rt2x00/rt2500pci
- kernel/drivers/net/wireless/rt2x00/rt2500usb
- kernel/drivers/net/wireless/rt2x00/rt2x00lib
- kernel/drivers/net/wireless/rt2x00/rt2x00pci
- kernel/drivers/net/wireless/rt2x00/rt2x00usb
- kernel/drivers/net/wireless/rt2x00/rt61pci
- kernel/drivers/net/wireless/rt2x00/rt73usb
kernel/drivers/net/wireless/rtl8180
kernel/drivers/net/wireless/rtl8187
+review kernel/drivers/net/wireless/spectrum_cs # Driver for 802.11b cards using RAM-loadable Symbol firmwar