This commit is contained in:
parent
5c9e38f2ca
commit
27b85337ac
10
README.SUSE
10
README.SUSE
@ -319,13 +319,13 @@ WHERE TO FIND CONFIGURATION FILES
|
|||||||
Kernel configuration files are stored in the kernel CVS repository. When
|
Kernel configuration files are stored in the kernel CVS repository. When
|
||||||
packing up the repository, they end up in config.tar.bz. When
|
packing up the repository, they end up in config.tar.bz. When
|
||||||
kernel-source.$ARCH.rpm is built, the config files are copied from
|
kernel-source.$ARCH.rpm is built, the config files are copied from
|
||||||
config/$ARCH/$FLAVOR to arch/$ARCH/defconfig.$FLAVOR in the kernel
|
config/$ARCH/$FLAVOR to .config in the kernel source tree.
|
||||||
source tree (for eaxmple, arch/i386/defconfig.default).
|
|
||||||
|
|
||||||
The kernel-$FLAVOR packages are based on arch/$ARCH/defconfig.$FLAVOR
|
The kernel-$FLAVOR packages are based on config/$ARCH/$FLAVOR.
|
||||||
(kernel-default is based on arch/$ARCH/defconfig.default, for example).
|
(kernel-default is based on config/$ARCH/default, for example).
|
||||||
The kernel-$FLAVOR packages install their configuration files as
|
The kernel-$FLAVOR packages install their configuration files as
|
||||||
/boot/config-$VER_STR (for example, boot/config-2.6.5-99-default).
|
/boot/config-$VER_STR (for example, /boot/config-2.6.5-99-default) as
|
||||||
|
well as /usr/src/linux-obj/$ARCH/$FLAVOR/.config.
|
||||||
|
|
||||||
In addition, the running kernel exposes a gzip compressed version of its
|
In addition, the running kernel exposes a gzip compressed version of its
|
||||||
configuration file as /proc/config.gz. The kernel sources can be
|
configuration file as /proc/config.gz. The kernel sources can be
|
||||||
|
@ -1 +1 @@
|
|||||||
2008-10-02 20:07:06 +0200
|
2008-10-08 10:30:20 +0200
|
||||||
|
@ -15,7 +15,7 @@ done
|
|||||||
# Check if any installed module was not listed
|
# Check if any installed module was not listed
|
||||||
status=
|
status=
|
||||||
cd $modpath
|
cd $modpath
|
||||||
for module in $(find . -name '*.ko'); do
|
for module in $(find . -name '*.ko' | sort); do
|
||||||
module=${module%.ko}
|
module=${module%.ko}
|
||||||
m=${module##*/}
|
m=${module##*/}
|
||||||
m=${m//-/_}
|
m=${m//-/_}
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
+IA32 i386/xen
|
+IA32 i386/xen
|
||||||
+IA32 i386/vanilla
|
+IA32 i386/vanilla
|
||||||
+IA32 i386/rt
|
+IA32 i386/rt
|
||||||
+IA32 - i386/rt_debug
|
+IA32 i386/rt_debug
|
||||||
+IA32 i386/trace
|
+IA32 i386/trace
|
||||||
|
|
||||||
+ia64 ia64/default
|
+ia64 ia64/default
|
||||||
@ -20,7 +20,7 @@
|
|||||||
+x86_64 x86_64/debug
|
+x86_64 x86_64/debug
|
||||||
+x86_64 x86_64/vanilla
|
+x86_64 x86_64/vanilla
|
||||||
+x86_64 x86_64/rt
|
+x86_64 x86_64/rt
|
||||||
+x86_64 - x86_64/rt_debug
|
+x86_64 x86_64/rt_debug
|
||||||
+x86_64 x86_64/trace
|
+x86_64 x86_64/trace
|
||||||
|
|
||||||
+PPC powerpc/default
|
+PPC powerpc/default
|
||||||
@ -32,4 +32,4 @@
|
|||||||
|
|
||||||
+s390 s390/s390
|
+s390 s390/s390
|
||||||
+s390x s390/default
|
+s390x s390/default
|
||||||
+s390x s390/vanilla
|
+S390 s390/vanilla
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:fda09911a4ef2133602f6e4967fd1294860d534e4daacb2bb1053a1163b35f30
|
oid sha256:f604369208f71f2f439b756c57d54b6412dec133bedb9a0be344beb66dd5f303
|
||||||
size 130261
|
size 130234
|
||||||
|
@ -1,3 +1,171 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- kernel-source-rt must not provide a kernel-source symbol: this
|
||||||
|
would break dependencies.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- update patches.suse/ppc-no-LDFLAGS_MODULE.patch
|
||||||
|
use suggested patch from kernel.org bugzilla
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch
|
||||||
|
fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- supported.conf: mark efivars.ko as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- enable yealink driver (bnc#432841)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/ehci_sched.diff: fix hang in disable_periodic
|
||||||
|
(bnc#403346).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix
|
||||||
|
section mismatch in fujitsu_laptop driver (none).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/sd-needs-updating: Driver 'sd' needs updating
|
||||||
|
(bnc#406656).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/post.sh: Catch mkinitrd error code indicating missing
|
||||||
|
required modules. Only add a bootloader entry if an initrd
|
||||||
|
could be created, but re-add the bootloader entry even if
|
||||||
|
the initrd already existed before (bnc#431703).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4
|
||||||
|
(bnc#420767).
|
||||||
|
- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes
|
||||||
|
for SLES11 (bnc#432976).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark legacy iseries storage as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as
|
||||||
|
unsupported.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985
|
||||||
|
on ia64, these are motherboard-specific drivers for x86_64
|
||||||
|
motherboards.
|
||||||
|
- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver
|
||||||
|
for x86 hardware.
|
||||||
|
- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there
|
||||||
|
is no Simtec hardware based on these architectures.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols
|
||||||
|
defined in vmlinux by subsystem. (Actually, per directory, under
|
||||||
|
the assumption that there is enough of a correlation).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de
|
||||||
|
|
||||||
|
- supported.conf: add ohci-hcd to base. Fix up other USB drivers
|
||||||
|
(USB network drivers had moved, others were missing)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/atl2-add-atl2-network-driver.patch: atl2:
|
||||||
|
add atl2 network driver.
|
||||||
|
- Update config files (even the rt ones).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de
|
||||||
|
|
||||||
|
- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus
|
||||||
|
WARN_ON() condition, as per upstream commit 95b866d5a
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- compile windfarm_pm121 into the kernel
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
|
- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh,
|
||||||
|
scripts/run_oldconfig.sh,
|
||||||
|
scripts/sequence-patch.sh: Eliminated defconfig.$flavor
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark Cell drivers as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Update config files
|
||||||
|
rt configs not updated for per-module-dynamic-debug-messages.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- change patches.suse/supported-flag to show which modules are
|
||||||
|
unsupported and externally supported in oops messages. Also change
|
||||||
|
the taint values as the documentation was totally wrong.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Reenable RT debug builds, compile tested only
|
||||||
|
- Update config files
|
||||||
|
- Fix tracer issues
|
||||||
|
patches.rt/event-trace-hrtimer-trace.patch
|
||||||
|
patches.rt/trace-events-handle-syscalls.patch
|
||||||
|
patches.rt/trace-ktime-scalar.patch
|
||||||
|
patches.rt/tracer-event-trace.patch
|
||||||
|
- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb
|
||||||
|
- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT
|
||||||
|
- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch:
|
||||||
|
driver core: basic infrastructure for per-module dynamic
|
||||||
|
debug messages.
|
||||||
|
- refresh patches.trace/tracepoints.patch: Kernel Tracepoints.
|
||||||
|
- Update config files.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
@ -32,16 +200,16 @@ Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com
|
|||||||
proper place in series.conf.
|
proper place in series.conf.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
- enable msi on ppc64 (bnc#430937)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Oct 1 12:19:54 CEST 2008 - jeffm@suse.de
|
|
||||||
|
|
||||||
- scripts/sequence-patch.sh
|
- scripts/sequence-patch.sh
|
||||||
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- enable msi on ppc64 (bnc#430937)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
||||||
|
|
||||||
@ -2443,6 +2611,7 @@ Update to 2.6.26-rt1:
|
|||||||
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
||||||
|
|
||||||
Remove obsolete patches:
|
Remove obsolete patches:
|
||||||
|
------------------------
|
||||||
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
||||||
- patches.rt/arm-cmpxchg.patch: Delete.
|
- patches.rt/arm-cmpxchg.patch: Delete.
|
||||||
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
||||||
@ -2550,6 +2719,7 @@ Remove obsolete patches:
|
|||||||
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
||||||
|
|
||||||
Introduce 2.6.26-RT1:
|
Introduce 2.6.26-RT1:
|
||||||
|
---------------------
|
||||||
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
||||||
Linux-RT 2.6.26-RT
|
Linux-RT 2.6.26-RT
|
||||||
radix-tree: gang slot lookups.
|
radix-tree: gang slot lookups.
|
||||||
|
24193
kernel-debug.spec
24193
kernel-debug.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,171 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- kernel-source-rt must not provide a kernel-source symbol: this
|
||||||
|
would break dependencies.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- update patches.suse/ppc-no-LDFLAGS_MODULE.patch
|
||||||
|
use suggested patch from kernel.org bugzilla
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch
|
||||||
|
fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- supported.conf: mark efivars.ko as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- enable yealink driver (bnc#432841)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/ehci_sched.diff: fix hang in disable_periodic
|
||||||
|
(bnc#403346).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix
|
||||||
|
section mismatch in fujitsu_laptop driver (none).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/sd-needs-updating: Driver 'sd' needs updating
|
||||||
|
(bnc#406656).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/post.sh: Catch mkinitrd error code indicating missing
|
||||||
|
required modules. Only add a bootloader entry if an initrd
|
||||||
|
could be created, but re-add the bootloader entry even if
|
||||||
|
the initrd already existed before (bnc#431703).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4
|
||||||
|
(bnc#420767).
|
||||||
|
- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes
|
||||||
|
for SLES11 (bnc#432976).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark legacy iseries storage as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as
|
||||||
|
unsupported.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985
|
||||||
|
on ia64, these are motherboard-specific drivers for x86_64
|
||||||
|
motherboards.
|
||||||
|
- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver
|
||||||
|
for x86 hardware.
|
||||||
|
- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there
|
||||||
|
is no Simtec hardware based on these architectures.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols
|
||||||
|
defined in vmlinux by subsystem. (Actually, per directory, under
|
||||||
|
the assumption that there is enough of a correlation).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de
|
||||||
|
|
||||||
|
- supported.conf: add ohci-hcd to base. Fix up other USB drivers
|
||||||
|
(USB network drivers had moved, others were missing)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/atl2-add-atl2-network-driver.patch: atl2:
|
||||||
|
add atl2 network driver.
|
||||||
|
- Update config files (even the rt ones).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de
|
||||||
|
|
||||||
|
- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus
|
||||||
|
WARN_ON() condition, as per upstream commit 95b866d5a
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- compile windfarm_pm121 into the kernel
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
|
- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh,
|
||||||
|
scripts/run_oldconfig.sh,
|
||||||
|
scripts/sequence-patch.sh: Eliminated defconfig.$flavor
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark Cell drivers as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Update config files
|
||||||
|
rt configs not updated for per-module-dynamic-debug-messages.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- change patches.suse/supported-flag to show which modules are
|
||||||
|
unsupported and externally supported in oops messages. Also change
|
||||||
|
the taint values as the documentation was totally wrong.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Reenable RT debug builds, compile tested only
|
||||||
|
- Update config files
|
||||||
|
- Fix tracer issues
|
||||||
|
patches.rt/event-trace-hrtimer-trace.patch
|
||||||
|
patches.rt/trace-events-handle-syscalls.patch
|
||||||
|
patches.rt/trace-ktime-scalar.patch
|
||||||
|
patches.rt/tracer-event-trace.patch
|
||||||
|
- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb
|
||||||
|
- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT
|
||||||
|
- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch:
|
||||||
|
driver core: basic infrastructure for per-module dynamic
|
||||||
|
debug messages.
|
||||||
|
- refresh patches.trace/tracepoints.patch: Kernel Tracepoints.
|
||||||
|
- Update config files.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
@ -32,16 +200,16 @@ Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com
|
|||||||
proper place in series.conf.
|
proper place in series.conf.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
- enable msi on ppc64 (bnc#430937)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Oct 1 12:19:54 CEST 2008 - jeffm@suse.de
|
|
||||||
|
|
||||||
- scripts/sequence-patch.sh
|
- scripts/sequence-patch.sh
|
||||||
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- enable msi on ppc64 (bnc#430937)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
||||||
|
|
||||||
@ -2443,6 +2611,7 @@ Update to 2.6.26-rt1:
|
|||||||
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
||||||
|
|
||||||
Remove obsolete patches:
|
Remove obsolete patches:
|
||||||
|
------------------------
|
||||||
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
||||||
- patches.rt/arm-cmpxchg.patch: Delete.
|
- patches.rt/arm-cmpxchg.patch: Delete.
|
||||||
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
||||||
@ -2550,6 +2719,7 @@ Remove obsolete patches:
|
|||||||
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
||||||
|
|
||||||
Introduce 2.6.26-RT1:
|
Introduce 2.6.26-RT1:
|
||||||
|
---------------------
|
||||||
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
||||||
Linux-RT 2.6.26-RT
|
Linux-RT 2.6.26-RT
|
||||||
radix-tree: gang slot lookups.
|
radix-tree: gang slot lookups.
|
||||||
|
24210
kernel-default.spec
24210
kernel-default.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,171 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- kernel-source-rt must not provide a kernel-source symbol: this
|
||||||
|
would break dependencies.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- update patches.suse/ppc-no-LDFLAGS_MODULE.patch
|
||||||
|
use suggested patch from kernel.org bugzilla
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch
|
||||||
|
fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- supported.conf: mark efivars.ko as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- enable yealink driver (bnc#432841)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/ehci_sched.diff: fix hang in disable_periodic
|
||||||
|
(bnc#403346).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix
|
||||||
|
section mismatch in fujitsu_laptop driver (none).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/sd-needs-updating: Driver 'sd' needs updating
|
||||||
|
(bnc#406656).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/post.sh: Catch mkinitrd error code indicating missing
|
||||||
|
required modules. Only add a bootloader entry if an initrd
|
||||||
|
could be created, but re-add the bootloader entry even if
|
||||||
|
the initrd already existed before (bnc#431703).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4
|
||||||
|
(bnc#420767).
|
||||||
|
- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes
|
||||||
|
for SLES11 (bnc#432976).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark legacy iseries storage as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as
|
||||||
|
unsupported.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985
|
||||||
|
on ia64, these are motherboard-specific drivers for x86_64
|
||||||
|
motherboards.
|
||||||
|
- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver
|
||||||
|
for x86 hardware.
|
||||||
|
- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there
|
||||||
|
is no Simtec hardware based on these architectures.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols
|
||||||
|
defined in vmlinux by subsystem. (Actually, per directory, under
|
||||||
|
the assumption that there is enough of a correlation).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de
|
||||||
|
|
||||||
|
- supported.conf: add ohci-hcd to base. Fix up other USB drivers
|
||||||
|
(USB network drivers had moved, others were missing)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/atl2-add-atl2-network-driver.patch: atl2:
|
||||||
|
add atl2 network driver.
|
||||||
|
- Update config files (even the rt ones).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de
|
||||||
|
|
||||||
|
- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus
|
||||||
|
WARN_ON() condition, as per upstream commit 95b866d5a
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- compile windfarm_pm121 into the kernel
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
|
- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh,
|
||||||
|
scripts/run_oldconfig.sh,
|
||||||
|
scripts/sequence-patch.sh: Eliminated defconfig.$flavor
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark Cell drivers as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Update config files
|
||||||
|
rt configs not updated for per-module-dynamic-debug-messages.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- change patches.suse/supported-flag to show which modules are
|
||||||
|
unsupported and externally supported in oops messages. Also change
|
||||||
|
the taint values as the documentation was totally wrong.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Reenable RT debug builds, compile tested only
|
||||||
|
- Update config files
|
||||||
|
- Fix tracer issues
|
||||||
|
patches.rt/event-trace-hrtimer-trace.patch
|
||||||
|
patches.rt/trace-events-handle-syscalls.patch
|
||||||
|
patches.rt/trace-ktime-scalar.patch
|
||||||
|
patches.rt/tracer-event-trace.patch
|
||||||
|
- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb
|
||||||
|
- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT
|
||||||
|
- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch:
|
||||||
|
driver core: basic infrastructure for per-module dynamic
|
||||||
|
debug messages.
|
||||||
|
- refresh patches.trace/tracepoints.patch: Kernel Tracepoints.
|
||||||
|
- Update config files.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
@ -32,16 +200,16 @@ Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com
|
|||||||
proper place in series.conf.
|
proper place in series.conf.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
- enable msi on ppc64 (bnc#430937)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Oct 1 12:19:54 CEST 2008 - jeffm@suse.de
|
|
||||||
|
|
||||||
- scripts/sequence-patch.sh
|
- scripts/sequence-patch.sh
|
||||||
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- enable msi on ppc64 (bnc#430937)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
||||||
|
|
||||||
@ -2443,6 +2611,7 @@ Update to 2.6.26-rt1:
|
|||||||
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
||||||
|
|
||||||
Remove obsolete patches:
|
Remove obsolete patches:
|
||||||
|
------------------------
|
||||||
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
||||||
- patches.rt/arm-cmpxchg.patch: Delete.
|
- patches.rt/arm-cmpxchg.patch: Delete.
|
||||||
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
||||||
@ -2550,6 +2719,7 @@ Remove obsolete patches:
|
|||||||
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
||||||
|
|
||||||
Introduce 2.6.26-RT1:
|
Introduce 2.6.26-RT1:
|
||||||
|
---------------------
|
||||||
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
||||||
Linux-RT 2.6.26-RT
|
Linux-RT 2.6.26-RT
|
||||||
radix-tree: gang slot lookups.
|
radix-tree: gang slot lookups.
|
||||||
|
23962
kernel-dummy.spec
23962
kernel-dummy.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,171 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- kernel-source-rt must not provide a kernel-source symbol: this
|
||||||
|
would break dependencies.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- update patches.suse/ppc-no-LDFLAGS_MODULE.patch
|
||||||
|
use suggested patch from kernel.org bugzilla
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch
|
||||||
|
fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- supported.conf: mark efivars.ko as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- enable yealink driver (bnc#432841)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/ehci_sched.diff: fix hang in disable_periodic
|
||||||
|
(bnc#403346).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix
|
||||||
|
section mismatch in fujitsu_laptop driver (none).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/sd-needs-updating: Driver 'sd' needs updating
|
||||||
|
(bnc#406656).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/post.sh: Catch mkinitrd error code indicating missing
|
||||||
|
required modules. Only add a bootloader entry if an initrd
|
||||||
|
could be created, but re-add the bootloader entry even if
|
||||||
|
the initrd already existed before (bnc#431703).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4
|
||||||
|
(bnc#420767).
|
||||||
|
- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes
|
||||||
|
for SLES11 (bnc#432976).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark legacy iseries storage as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as
|
||||||
|
unsupported.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985
|
||||||
|
on ia64, these are motherboard-specific drivers for x86_64
|
||||||
|
motherboards.
|
||||||
|
- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver
|
||||||
|
for x86 hardware.
|
||||||
|
- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there
|
||||||
|
is no Simtec hardware based on these architectures.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols
|
||||||
|
defined in vmlinux by subsystem. (Actually, per directory, under
|
||||||
|
the assumption that there is enough of a correlation).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de
|
||||||
|
|
||||||
|
- supported.conf: add ohci-hcd to base. Fix up other USB drivers
|
||||||
|
(USB network drivers had moved, others were missing)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/atl2-add-atl2-network-driver.patch: atl2:
|
||||||
|
add atl2 network driver.
|
||||||
|
- Update config files (even the rt ones).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de
|
||||||
|
|
||||||
|
- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus
|
||||||
|
WARN_ON() condition, as per upstream commit 95b866d5a
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- compile windfarm_pm121 into the kernel
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
|
- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh,
|
||||||
|
scripts/run_oldconfig.sh,
|
||||||
|
scripts/sequence-patch.sh: Eliminated defconfig.$flavor
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark Cell drivers as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Update config files
|
||||||
|
rt configs not updated for per-module-dynamic-debug-messages.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- change patches.suse/supported-flag to show which modules are
|
||||||
|
unsupported and externally supported in oops messages. Also change
|
||||||
|
the taint values as the documentation was totally wrong.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Reenable RT debug builds, compile tested only
|
||||||
|
- Update config files
|
||||||
|
- Fix tracer issues
|
||||||
|
patches.rt/event-trace-hrtimer-trace.patch
|
||||||
|
patches.rt/trace-events-handle-syscalls.patch
|
||||||
|
patches.rt/trace-ktime-scalar.patch
|
||||||
|
patches.rt/tracer-event-trace.patch
|
||||||
|
- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb
|
||||||
|
- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT
|
||||||
|
- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch:
|
||||||
|
driver core: basic infrastructure for per-module dynamic
|
||||||
|
debug messages.
|
||||||
|
- refresh patches.trace/tracepoints.patch: Kernel Tracepoints.
|
||||||
|
- Update config files.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
@ -32,16 +200,16 @@ Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com
|
|||||||
proper place in series.conf.
|
proper place in series.conf.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
- enable msi on ppc64 (bnc#430937)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Oct 1 12:19:54 CEST 2008 - jeffm@suse.de
|
|
||||||
|
|
||||||
- scripts/sequence-patch.sh
|
- scripts/sequence-patch.sh
|
||||||
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- enable msi on ppc64 (bnc#430937)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
||||||
|
|
||||||
@ -2443,6 +2611,7 @@ Update to 2.6.26-rt1:
|
|||||||
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
||||||
|
|
||||||
Remove obsolete patches:
|
Remove obsolete patches:
|
||||||
|
------------------------
|
||||||
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
||||||
- patches.rt/arm-cmpxchg.patch: Delete.
|
- patches.rt/arm-cmpxchg.patch: Delete.
|
||||||
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
||||||
@ -2550,6 +2719,7 @@ Remove obsolete patches:
|
|||||||
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
||||||
|
|
||||||
Introduce 2.6.26-RT1:
|
Introduce 2.6.26-RT1:
|
||||||
|
---------------------
|
||||||
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
||||||
Linux-RT 2.6.26-RT
|
Linux-RT 2.6.26-RT
|
||||||
radix-tree: gang slot lookups.
|
radix-tree: gang slot lookups.
|
||||||
|
24199
kernel-kdump.spec
24199
kernel-kdump.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,171 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- kernel-source-rt must not provide a kernel-source symbol: this
|
||||||
|
would break dependencies.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- update patches.suse/ppc-no-LDFLAGS_MODULE.patch
|
||||||
|
use suggested patch from kernel.org bugzilla
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch
|
||||||
|
fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- supported.conf: mark efivars.ko as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- enable yealink driver (bnc#432841)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/ehci_sched.diff: fix hang in disable_periodic
|
||||||
|
(bnc#403346).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix
|
||||||
|
section mismatch in fujitsu_laptop driver (none).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/sd-needs-updating: Driver 'sd' needs updating
|
||||||
|
(bnc#406656).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/post.sh: Catch mkinitrd error code indicating missing
|
||||||
|
required modules. Only add a bootloader entry if an initrd
|
||||||
|
could be created, but re-add the bootloader entry even if
|
||||||
|
the initrd already existed before (bnc#431703).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4
|
||||||
|
(bnc#420767).
|
||||||
|
- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes
|
||||||
|
for SLES11 (bnc#432976).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark legacy iseries storage as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as
|
||||||
|
unsupported.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985
|
||||||
|
on ia64, these are motherboard-specific drivers for x86_64
|
||||||
|
motherboards.
|
||||||
|
- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver
|
||||||
|
for x86 hardware.
|
||||||
|
- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there
|
||||||
|
is no Simtec hardware based on these architectures.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols
|
||||||
|
defined in vmlinux by subsystem. (Actually, per directory, under
|
||||||
|
the assumption that there is enough of a correlation).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de
|
||||||
|
|
||||||
|
- supported.conf: add ohci-hcd to base. Fix up other USB drivers
|
||||||
|
(USB network drivers had moved, others were missing)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/atl2-add-atl2-network-driver.patch: atl2:
|
||||||
|
add atl2 network driver.
|
||||||
|
- Update config files (even the rt ones).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de
|
||||||
|
|
||||||
|
- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus
|
||||||
|
WARN_ON() condition, as per upstream commit 95b866d5a
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- compile windfarm_pm121 into the kernel
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
|
- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh,
|
||||||
|
scripts/run_oldconfig.sh,
|
||||||
|
scripts/sequence-patch.sh: Eliminated defconfig.$flavor
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark Cell drivers as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Update config files
|
||||||
|
rt configs not updated for per-module-dynamic-debug-messages.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- change patches.suse/supported-flag to show which modules are
|
||||||
|
unsupported and externally supported in oops messages. Also change
|
||||||
|
the taint values as the documentation was totally wrong.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Reenable RT debug builds, compile tested only
|
||||||
|
- Update config files
|
||||||
|
- Fix tracer issues
|
||||||
|
patches.rt/event-trace-hrtimer-trace.patch
|
||||||
|
patches.rt/trace-events-handle-syscalls.patch
|
||||||
|
patches.rt/trace-ktime-scalar.patch
|
||||||
|
patches.rt/tracer-event-trace.patch
|
||||||
|
- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb
|
||||||
|
- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT
|
||||||
|
- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch:
|
||||||
|
driver core: basic infrastructure for per-module dynamic
|
||||||
|
debug messages.
|
||||||
|
- refresh patches.trace/tracepoints.patch: Kernel Tracepoints.
|
||||||
|
- Update config files.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
@ -32,16 +200,16 @@ Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com
|
|||||||
proper place in series.conf.
|
proper place in series.conf.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
- enable msi on ppc64 (bnc#430937)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Oct 1 12:19:54 CEST 2008 - jeffm@suse.de
|
|
||||||
|
|
||||||
- scripts/sequence-patch.sh
|
- scripts/sequence-patch.sh
|
||||||
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- enable msi on ppc64 (bnc#430937)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
||||||
|
|
||||||
@ -2443,6 +2611,7 @@ Update to 2.6.26-rt1:
|
|||||||
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
||||||
|
|
||||||
Remove obsolete patches:
|
Remove obsolete patches:
|
||||||
|
------------------------
|
||||||
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
||||||
- patches.rt/arm-cmpxchg.patch: Delete.
|
- patches.rt/arm-cmpxchg.patch: Delete.
|
||||||
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
||||||
@ -2550,6 +2719,7 @@ Remove obsolete patches:
|
|||||||
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
||||||
|
|
||||||
Introduce 2.6.26-RT1:
|
Introduce 2.6.26-RT1:
|
||||||
|
---------------------
|
||||||
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
||||||
Linux-RT 2.6.26-RT
|
Linux-RT 2.6.26-RT
|
||||||
radix-tree: gang slot lookups.
|
radix-tree: gang slot lookups.
|
||||||
|
24215
kernel-pae.spec
24215
kernel-pae.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,171 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- kernel-source-rt must not provide a kernel-source symbol: this
|
||||||
|
would break dependencies.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- update patches.suse/ppc-no-LDFLAGS_MODULE.patch
|
||||||
|
use suggested patch from kernel.org bugzilla
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch
|
||||||
|
fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- supported.conf: mark efivars.ko as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- enable yealink driver (bnc#432841)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/ehci_sched.diff: fix hang in disable_periodic
|
||||||
|
(bnc#403346).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix
|
||||||
|
section mismatch in fujitsu_laptop driver (none).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/sd-needs-updating: Driver 'sd' needs updating
|
||||||
|
(bnc#406656).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/post.sh: Catch mkinitrd error code indicating missing
|
||||||
|
required modules. Only add a bootloader entry if an initrd
|
||||||
|
could be created, but re-add the bootloader entry even if
|
||||||
|
the initrd already existed before (bnc#431703).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4
|
||||||
|
(bnc#420767).
|
||||||
|
- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes
|
||||||
|
for SLES11 (bnc#432976).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark legacy iseries storage as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as
|
||||||
|
unsupported.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985
|
||||||
|
on ia64, these are motherboard-specific drivers for x86_64
|
||||||
|
motherboards.
|
||||||
|
- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver
|
||||||
|
for x86 hardware.
|
||||||
|
- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there
|
||||||
|
is no Simtec hardware based on these architectures.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols
|
||||||
|
defined in vmlinux by subsystem. (Actually, per directory, under
|
||||||
|
the assumption that there is enough of a correlation).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de
|
||||||
|
|
||||||
|
- supported.conf: add ohci-hcd to base. Fix up other USB drivers
|
||||||
|
(USB network drivers had moved, others were missing)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/atl2-add-atl2-network-driver.patch: atl2:
|
||||||
|
add atl2 network driver.
|
||||||
|
- Update config files (even the rt ones).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de
|
||||||
|
|
||||||
|
- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus
|
||||||
|
WARN_ON() condition, as per upstream commit 95b866d5a
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- compile windfarm_pm121 into the kernel
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
|
- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh,
|
||||||
|
scripts/run_oldconfig.sh,
|
||||||
|
scripts/sequence-patch.sh: Eliminated defconfig.$flavor
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark Cell drivers as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Update config files
|
||||||
|
rt configs not updated for per-module-dynamic-debug-messages.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- change patches.suse/supported-flag to show which modules are
|
||||||
|
unsupported and externally supported in oops messages. Also change
|
||||||
|
the taint values as the documentation was totally wrong.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Reenable RT debug builds, compile tested only
|
||||||
|
- Update config files
|
||||||
|
- Fix tracer issues
|
||||||
|
patches.rt/event-trace-hrtimer-trace.patch
|
||||||
|
patches.rt/trace-events-handle-syscalls.patch
|
||||||
|
patches.rt/trace-ktime-scalar.patch
|
||||||
|
patches.rt/tracer-event-trace.patch
|
||||||
|
- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb
|
||||||
|
- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT
|
||||||
|
- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch:
|
||||||
|
driver core: basic infrastructure for per-module dynamic
|
||||||
|
debug messages.
|
||||||
|
- refresh patches.trace/tracepoints.patch: Kernel Tracepoints.
|
||||||
|
- Update config files.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
@ -32,16 +200,16 @@ Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com
|
|||||||
proper place in series.conf.
|
proper place in series.conf.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
- enable msi on ppc64 (bnc#430937)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Oct 1 12:19:54 CEST 2008 - jeffm@suse.de
|
|
||||||
|
|
||||||
- scripts/sequence-patch.sh
|
- scripts/sequence-patch.sh
|
||||||
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- enable msi on ppc64 (bnc#430937)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
||||||
|
|
||||||
@ -2443,6 +2611,7 @@ Update to 2.6.26-rt1:
|
|||||||
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
||||||
|
|
||||||
Remove obsolete patches:
|
Remove obsolete patches:
|
||||||
|
------------------------
|
||||||
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
||||||
- patches.rt/arm-cmpxchg.patch: Delete.
|
- patches.rt/arm-cmpxchg.patch: Delete.
|
||||||
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
||||||
@ -2550,6 +2719,7 @@ Remove obsolete patches:
|
|||||||
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
||||||
|
|
||||||
Introduce 2.6.26-RT1:
|
Introduce 2.6.26-RT1:
|
||||||
|
---------------------
|
||||||
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
||||||
Linux-RT 2.6.26-RT
|
Linux-RT 2.6.26-RT
|
||||||
radix-tree: gang slot lookups.
|
radix-tree: gang slot lookups.
|
||||||
|
24236
kernel-ppc64.spec
24236
kernel-ppc64.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,171 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- kernel-source-rt must not provide a kernel-source symbol: this
|
||||||
|
would break dependencies.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- update patches.suse/ppc-no-LDFLAGS_MODULE.patch
|
||||||
|
use suggested patch from kernel.org bugzilla
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch
|
||||||
|
fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- supported.conf: mark efivars.ko as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- enable yealink driver (bnc#432841)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/ehci_sched.diff: fix hang in disable_periodic
|
||||||
|
(bnc#403346).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix
|
||||||
|
section mismatch in fujitsu_laptop driver (none).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/sd-needs-updating: Driver 'sd' needs updating
|
||||||
|
(bnc#406656).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/post.sh: Catch mkinitrd error code indicating missing
|
||||||
|
required modules. Only add a bootloader entry if an initrd
|
||||||
|
could be created, but re-add the bootloader entry even if
|
||||||
|
the initrd already existed before (bnc#431703).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4
|
||||||
|
(bnc#420767).
|
||||||
|
- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes
|
||||||
|
for SLES11 (bnc#432976).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark legacy iseries storage as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as
|
||||||
|
unsupported.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985
|
||||||
|
on ia64, these are motherboard-specific drivers for x86_64
|
||||||
|
motherboards.
|
||||||
|
- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver
|
||||||
|
for x86 hardware.
|
||||||
|
- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there
|
||||||
|
is no Simtec hardware based on these architectures.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols
|
||||||
|
defined in vmlinux by subsystem. (Actually, per directory, under
|
||||||
|
the assumption that there is enough of a correlation).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de
|
||||||
|
|
||||||
|
- supported.conf: add ohci-hcd to base. Fix up other USB drivers
|
||||||
|
(USB network drivers had moved, others were missing)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/atl2-add-atl2-network-driver.patch: atl2:
|
||||||
|
add atl2 network driver.
|
||||||
|
- Update config files (even the rt ones).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de
|
||||||
|
|
||||||
|
- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus
|
||||||
|
WARN_ON() condition, as per upstream commit 95b866d5a
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- compile windfarm_pm121 into the kernel
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
|
- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh,
|
||||||
|
scripts/run_oldconfig.sh,
|
||||||
|
scripts/sequence-patch.sh: Eliminated defconfig.$flavor
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark Cell drivers as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Update config files
|
||||||
|
rt configs not updated for per-module-dynamic-debug-messages.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- change patches.suse/supported-flag to show which modules are
|
||||||
|
unsupported and externally supported in oops messages. Also change
|
||||||
|
the taint values as the documentation was totally wrong.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Reenable RT debug builds, compile tested only
|
||||||
|
- Update config files
|
||||||
|
- Fix tracer issues
|
||||||
|
patches.rt/event-trace-hrtimer-trace.patch
|
||||||
|
patches.rt/trace-events-handle-syscalls.patch
|
||||||
|
patches.rt/trace-ktime-scalar.patch
|
||||||
|
patches.rt/tracer-event-trace.patch
|
||||||
|
- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb
|
||||||
|
- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT
|
||||||
|
- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch:
|
||||||
|
driver core: basic infrastructure for per-module dynamic
|
||||||
|
debug messages.
|
||||||
|
- refresh patches.trace/tracepoints.patch: Kernel Tracepoints.
|
||||||
|
- Update config files.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
@ -32,16 +200,16 @@ Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com
|
|||||||
proper place in series.conf.
|
proper place in series.conf.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
- enable msi on ppc64 (bnc#430937)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Oct 1 12:19:54 CEST 2008 - jeffm@suse.de
|
|
||||||
|
|
||||||
- scripts/sequence-patch.sh
|
- scripts/sequence-patch.sh
|
||||||
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- enable msi on ppc64 (bnc#430937)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
||||||
|
|
||||||
@ -2443,6 +2611,7 @@ Update to 2.6.26-rt1:
|
|||||||
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
||||||
|
|
||||||
Remove obsolete patches:
|
Remove obsolete patches:
|
||||||
|
------------------------
|
||||||
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
||||||
- patches.rt/arm-cmpxchg.patch: Delete.
|
- patches.rt/arm-cmpxchg.patch: Delete.
|
||||||
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
||||||
@ -2550,6 +2719,7 @@ Remove obsolete patches:
|
|||||||
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
||||||
|
|
||||||
Introduce 2.6.26-RT1:
|
Introduce 2.6.26-RT1:
|
||||||
|
---------------------
|
||||||
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
||||||
Linux-RT 2.6.26-RT
|
Linux-RT 2.6.26-RT
|
||||||
radix-tree: gang slot lookups.
|
radix-tree: gang slot lookups.
|
||||||
|
24192
kernel-ps3.spec
24192
kernel-ps3.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,171 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- kernel-source-rt must not provide a kernel-source symbol: this
|
||||||
|
would break dependencies.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- update patches.suse/ppc-no-LDFLAGS_MODULE.patch
|
||||||
|
use suggested patch from kernel.org bugzilla
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch
|
||||||
|
fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- supported.conf: mark efivars.ko as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- enable yealink driver (bnc#432841)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/ehci_sched.diff: fix hang in disable_periodic
|
||||||
|
(bnc#403346).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix
|
||||||
|
section mismatch in fujitsu_laptop driver (none).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/sd-needs-updating: Driver 'sd' needs updating
|
||||||
|
(bnc#406656).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/post.sh: Catch mkinitrd error code indicating missing
|
||||||
|
required modules. Only add a bootloader entry if an initrd
|
||||||
|
could be created, but re-add the bootloader entry even if
|
||||||
|
the initrd already existed before (bnc#431703).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4
|
||||||
|
(bnc#420767).
|
||||||
|
- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes
|
||||||
|
for SLES11 (bnc#432976).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark legacy iseries storage as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as
|
||||||
|
unsupported.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985
|
||||||
|
on ia64, these are motherboard-specific drivers for x86_64
|
||||||
|
motherboards.
|
||||||
|
- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver
|
||||||
|
for x86 hardware.
|
||||||
|
- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there
|
||||||
|
is no Simtec hardware based on these architectures.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols
|
||||||
|
defined in vmlinux by subsystem. (Actually, per directory, under
|
||||||
|
the assumption that there is enough of a correlation).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de
|
||||||
|
|
||||||
|
- supported.conf: add ohci-hcd to base. Fix up other USB drivers
|
||||||
|
(USB network drivers had moved, others were missing)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/atl2-add-atl2-network-driver.patch: atl2:
|
||||||
|
add atl2 network driver.
|
||||||
|
- Update config files (even the rt ones).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de
|
||||||
|
|
||||||
|
- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus
|
||||||
|
WARN_ON() condition, as per upstream commit 95b866d5a
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- compile windfarm_pm121 into the kernel
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
|
- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh,
|
||||||
|
scripts/run_oldconfig.sh,
|
||||||
|
scripts/sequence-patch.sh: Eliminated defconfig.$flavor
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark Cell drivers as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Update config files
|
||||||
|
rt configs not updated for per-module-dynamic-debug-messages.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- change patches.suse/supported-flag to show which modules are
|
||||||
|
unsupported and externally supported in oops messages. Also change
|
||||||
|
the taint values as the documentation was totally wrong.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Reenable RT debug builds, compile tested only
|
||||||
|
- Update config files
|
||||||
|
- Fix tracer issues
|
||||||
|
patches.rt/event-trace-hrtimer-trace.patch
|
||||||
|
patches.rt/trace-events-handle-syscalls.patch
|
||||||
|
patches.rt/trace-ktime-scalar.patch
|
||||||
|
patches.rt/tracer-event-trace.patch
|
||||||
|
- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb
|
||||||
|
- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT
|
||||||
|
- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch:
|
||||||
|
driver core: basic infrastructure for per-module dynamic
|
||||||
|
debug messages.
|
||||||
|
- refresh patches.trace/tracepoints.patch: Kernel Tracepoints.
|
||||||
|
- Update config files.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
@ -32,16 +200,16 @@ Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com
|
|||||||
proper place in series.conf.
|
proper place in series.conf.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
- enable msi on ppc64 (bnc#430937)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Oct 1 12:19:54 CEST 2008 - jeffm@suse.de
|
|
||||||
|
|
||||||
- scripts/sequence-patch.sh
|
- scripts/sequence-patch.sh
|
||||||
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- enable msi on ppc64 (bnc#430937)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
||||||
|
|
||||||
@ -2443,6 +2611,7 @@ Update to 2.6.26-rt1:
|
|||||||
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
||||||
|
|
||||||
Remove obsolete patches:
|
Remove obsolete patches:
|
||||||
|
------------------------
|
||||||
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
||||||
- patches.rt/arm-cmpxchg.patch: Delete.
|
- patches.rt/arm-cmpxchg.patch: Delete.
|
||||||
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
||||||
@ -2550,6 +2719,7 @@ Remove obsolete patches:
|
|||||||
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
||||||
|
|
||||||
Introduce 2.6.26-RT1:
|
Introduce 2.6.26-RT1:
|
||||||
|
---------------------
|
||||||
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
||||||
Linux-RT 2.6.26-RT
|
Linux-RT 2.6.26-RT
|
||||||
radix-tree: gang slot lookups.
|
radix-tree: gang slot lookups.
|
||||||
|
24208
kernel-rt.spec
24208
kernel-rt.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,171 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- kernel-source-rt must not provide a kernel-source symbol: this
|
||||||
|
would break dependencies.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- update patches.suse/ppc-no-LDFLAGS_MODULE.patch
|
||||||
|
use suggested patch from kernel.org bugzilla
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch
|
||||||
|
fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- supported.conf: mark efivars.ko as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- enable yealink driver (bnc#432841)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/ehci_sched.diff: fix hang in disable_periodic
|
||||||
|
(bnc#403346).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix
|
||||||
|
section mismatch in fujitsu_laptop driver (none).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/sd-needs-updating: Driver 'sd' needs updating
|
||||||
|
(bnc#406656).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/post.sh: Catch mkinitrd error code indicating missing
|
||||||
|
required modules. Only add a bootloader entry if an initrd
|
||||||
|
could be created, but re-add the bootloader entry even if
|
||||||
|
the initrd already existed before (bnc#431703).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4
|
||||||
|
(bnc#420767).
|
||||||
|
- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes
|
||||||
|
for SLES11 (bnc#432976).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark legacy iseries storage as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as
|
||||||
|
unsupported.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985
|
||||||
|
on ia64, these are motherboard-specific drivers for x86_64
|
||||||
|
motherboards.
|
||||||
|
- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver
|
||||||
|
for x86 hardware.
|
||||||
|
- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there
|
||||||
|
is no Simtec hardware based on these architectures.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols
|
||||||
|
defined in vmlinux by subsystem. (Actually, per directory, under
|
||||||
|
the assumption that there is enough of a correlation).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de
|
||||||
|
|
||||||
|
- supported.conf: add ohci-hcd to base. Fix up other USB drivers
|
||||||
|
(USB network drivers had moved, others were missing)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/atl2-add-atl2-network-driver.patch: atl2:
|
||||||
|
add atl2 network driver.
|
||||||
|
- Update config files (even the rt ones).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de
|
||||||
|
|
||||||
|
- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus
|
||||||
|
WARN_ON() condition, as per upstream commit 95b866d5a
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- compile windfarm_pm121 into the kernel
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
|
- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh,
|
||||||
|
scripts/run_oldconfig.sh,
|
||||||
|
scripts/sequence-patch.sh: Eliminated defconfig.$flavor
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark Cell drivers as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Update config files
|
||||||
|
rt configs not updated for per-module-dynamic-debug-messages.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- change patches.suse/supported-flag to show which modules are
|
||||||
|
unsupported and externally supported in oops messages. Also change
|
||||||
|
the taint values as the documentation was totally wrong.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Reenable RT debug builds, compile tested only
|
||||||
|
- Update config files
|
||||||
|
- Fix tracer issues
|
||||||
|
patches.rt/event-trace-hrtimer-trace.patch
|
||||||
|
patches.rt/trace-events-handle-syscalls.patch
|
||||||
|
patches.rt/trace-ktime-scalar.patch
|
||||||
|
patches.rt/tracer-event-trace.patch
|
||||||
|
- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb
|
||||||
|
- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT
|
||||||
|
- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch:
|
||||||
|
driver core: basic infrastructure for per-module dynamic
|
||||||
|
debug messages.
|
||||||
|
- refresh patches.trace/tracepoints.patch: Kernel Tracepoints.
|
||||||
|
- Update config files.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
@ -32,16 +200,16 @@ Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com
|
|||||||
proper place in series.conf.
|
proper place in series.conf.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
- enable msi on ppc64 (bnc#430937)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Oct 1 12:19:54 CEST 2008 - jeffm@suse.de
|
|
||||||
|
|
||||||
- scripts/sequence-patch.sh
|
- scripts/sequence-patch.sh
|
||||||
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- enable msi on ppc64 (bnc#430937)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
||||||
|
|
||||||
@ -2443,6 +2611,7 @@ Update to 2.6.26-rt1:
|
|||||||
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
||||||
|
|
||||||
Remove obsolete patches:
|
Remove obsolete patches:
|
||||||
|
------------------------
|
||||||
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
||||||
- patches.rt/arm-cmpxchg.patch: Delete.
|
- patches.rt/arm-cmpxchg.patch: Delete.
|
||||||
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
||||||
@ -2550,6 +2719,7 @@ Remove obsolete patches:
|
|||||||
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
||||||
|
|
||||||
Introduce 2.6.26-RT1:
|
Introduce 2.6.26-RT1:
|
||||||
|
---------------------
|
||||||
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
||||||
Linux-RT 2.6.26-RT
|
Linux-RT 2.6.26-RT
|
||||||
radix-tree: gang slot lookups.
|
radix-tree: gang slot lookups.
|
||||||
|
24194
kernel-s390.spec
24194
kernel-s390.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,171 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- kernel-source-rt must not provide a kernel-source symbol: this
|
||||||
|
would break dependencies.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- update patches.suse/ppc-no-LDFLAGS_MODULE.patch
|
||||||
|
use suggested patch from kernel.org bugzilla
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch
|
||||||
|
fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- supported.conf: mark efivars.ko as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- enable yealink driver (bnc#432841)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/ehci_sched.diff: fix hang in disable_periodic
|
||||||
|
(bnc#403346).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix
|
||||||
|
section mismatch in fujitsu_laptop driver (none).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/sd-needs-updating: Driver 'sd' needs updating
|
||||||
|
(bnc#406656).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/post.sh: Catch mkinitrd error code indicating missing
|
||||||
|
required modules. Only add a bootloader entry if an initrd
|
||||||
|
could be created, but re-add the bootloader entry even if
|
||||||
|
the initrd already existed before (bnc#431703).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4
|
||||||
|
(bnc#420767).
|
||||||
|
- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes
|
||||||
|
for SLES11 (bnc#432976).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark legacy iseries storage as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as
|
||||||
|
unsupported.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985
|
||||||
|
on ia64, these are motherboard-specific drivers for x86_64
|
||||||
|
motherboards.
|
||||||
|
- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver
|
||||||
|
for x86 hardware.
|
||||||
|
- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there
|
||||||
|
is no Simtec hardware based on these architectures.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols
|
||||||
|
defined in vmlinux by subsystem. (Actually, per directory, under
|
||||||
|
the assumption that there is enough of a correlation).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de
|
||||||
|
|
||||||
|
- supported.conf: add ohci-hcd to base. Fix up other USB drivers
|
||||||
|
(USB network drivers had moved, others were missing)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/atl2-add-atl2-network-driver.patch: atl2:
|
||||||
|
add atl2 network driver.
|
||||||
|
- Update config files (even the rt ones).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de
|
||||||
|
|
||||||
|
- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus
|
||||||
|
WARN_ON() condition, as per upstream commit 95b866d5a
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- compile windfarm_pm121 into the kernel
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
|
- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh,
|
||||||
|
scripts/run_oldconfig.sh,
|
||||||
|
scripts/sequence-patch.sh: Eliminated defconfig.$flavor
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark Cell drivers as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Update config files
|
||||||
|
rt configs not updated for per-module-dynamic-debug-messages.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- change patches.suse/supported-flag to show which modules are
|
||||||
|
unsupported and externally supported in oops messages. Also change
|
||||||
|
the taint values as the documentation was totally wrong.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Reenable RT debug builds, compile tested only
|
||||||
|
- Update config files
|
||||||
|
- Fix tracer issues
|
||||||
|
patches.rt/event-trace-hrtimer-trace.patch
|
||||||
|
patches.rt/trace-events-handle-syscalls.patch
|
||||||
|
patches.rt/trace-ktime-scalar.patch
|
||||||
|
patches.rt/tracer-event-trace.patch
|
||||||
|
- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb
|
||||||
|
- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT
|
||||||
|
- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch:
|
||||||
|
driver core: basic infrastructure for per-module dynamic
|
||||||
|
debug messages.
|
||||||
|
- refresh patches.trace/tracepoints.patch: Kernel Tracepoints.
|
||||||
|
- Update config files.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
@ -32,16 +200,16 @@ Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com
|
|||||||
proper place in series.conf.
|
proper place in series.conf.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
- enable msi on ppc64 (bnc#430937)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Oct 1 12:19:54 CEST 2008 - jeffm@suse.de
|
|
||||||
|
|
||||||
- scripts/sequence-patch.sh
|
- scripts/sequence-patch.sh
|
||||||
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- enable msi on ppc64 (bnc#430937)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
||||||
|
|
||||||
@ -2443,6 +2611,7 @@ Update to 2.6.26-rt1:
|
|||||||
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
||||||
|
|
||||||
Remove obsolete patches:
|
Remove obsolete patches:
|
||||||
|
------------------------
|
||||||
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
||||||
- patches.rt/arm-cmpxchg.patch: Delete.
|
- patches.rt/arm-cmpxchg.patch: Delete.
|
||||||
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
||||||
@ -2550,6 +2719,7 @@ Remove obsolete patches:
|
|||||||
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
||||||
|
|
||||||
Introduce 2.6.26-RT1:
|
Introduce 2.6.26-RT1:
|
||||||
|
---------------------
|
||||||
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
||||||
Linux-RT 2.6.26-RT
|
Linux-RT 2.6.26-RT
|
||||||
radix-tree: gang slot lookups.
|
radix-tree: gang slot lookups.
|
||||||
|
24119
kernel-source-rt.spec
24119
kernel-source-rt.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,171 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- kernel-source-rt must not provide a kernel-source symbol: this
|
||||||
|
would break dependencies.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- update patches.suse/ppc-no-LDFLAGS_MODULE.patch
|
||||||
|
use suggested patch from kernel.org bugzilla
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch
|
||||||
|
fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- supported.conf: mark efivars.ko as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- enable yealink driver (bnc#432841)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/ehci_sched.diff: fix hang in disable_periodic
|
||||||
|
(bnc#403346).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix
|
||||||
|
section mismatch in fujitsu_laptop driver (none).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/sd-needs-updating: Driver 'sd' needs updating
|
||||||
|
(bnc#406656).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/post.sh: Catch mkinitrd error code indicating missing
|
||||||
|
required modules. Only add a bootloader entry if an initrd
|
||||||
|
could be created, but re-add the bootloader entry even if
|
||||||
|
the initrd already existed before (bnc#431703).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4
|
||||||
|
(bnc#420767).
|
||||||
|
- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes
|
||||||
|
for SLES11 (bnc#432976).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark legacy iseries storage as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as
|
||||||
|
unsupported.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985
|
||||||
|
on ia64, these are motherboard-specific drivers for x86_64
|
||||||
|
motherboards.
|
||||||
|
- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver
|
||||||
|
for x86 hardware.
|
||||||
|
- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there
|
||||||
|
is no Simtec hardware based on these architectures.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols
|
||||||
|
defined in vmlinux by subsystem. (Actually, per directory, under
|
||||||
|
the assumption that there is enough of a correlation).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de
|
||||||
|
|
||||||
|
- supported.conf: add ohci-hcd to base. Fix up other USB drivers
|
||||||
|
(USB network drivers had moved, others were missing)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/atl2-add-atl2-network-driver.patch: atl2:
|
||||||
|
add atl2 network driver.
|
||||||
|
- Update config files (even the rt ones).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de
|
||||||
|
|
||||||
|
- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus
|
||||||
|
WARN_ON() condition, as per upstream commit 95b866d5a
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- compile windfarm_pm121 into the kernel
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
|
- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh,
|
||||||
|
scripts/run_oldconfig.sh,
|
||||||
|
scripts/sequence-patch.sh: Eliminated defconfig.$flavor
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark Cell drivers as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Update config files
|
||||||
|
rt configs not updated for per-module-dynamic-debug-messages.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- change patches.suse/supported-flag to show which modules are
|
||||||
|
unsupported and externally supported in oops messages. Also change
|
||||||
|
the taint values as the documentation was totally wrong.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Reenable RT debug builds, compile tested only
|
||||||
|
- Update config files
|
||||||
|
- Fix tracer issues
|
||||||
|
patches.rt/event-trace-hrtimer-trace.patch
|
||||||
|
patches.rt/trace-events-handle-syscalls.patch
|
||||||
|
patches.rt/trace-ktime-scalar.patch
|
||||||
|
patches.rt/tracer-event-trace.patch
|
||||||
|
- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb
|
||||||
|
- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT
|
||||||
|
- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch:
|
||||||
|
driver core: basic infrastructure for per-module dynamic
|
||||||
|
debug messages.
|
||||||
|
- refresh patches.trace/tracepoints.patch: Kernel Tracepoints.
|
||||||
|
- Update config files.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
@ -32,16 +200,16 @@ Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com
|
|||||||
proper place in series.conf.
|
proper place in series.conf.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
- enable msi on ppc64 (bnc#430937)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Oct 1 12:19:54 CEST 2008 - jeffm@suse.de
|
|
||||||
|
|
||||||
- scripts/sequence-patch.sh
|
- scripts/sequence-patch.sh
|
||||||
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- enable msi on ppc64 (bnc#430937)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
||||||
|
|
||||||
@ -2443,6 +2611,7 @@ Update to 2.6.26-rt1:
|
|||||||
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
||||||
|
|
||||||
Remove obsolete patches:
|
Remove obsolete patches:
|
||||||
|
------------------------
|
||||||
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
||||||
- patches.rt/arm-cmpxchg.patch: Delete.
|
- patches.rt/arm-cmpxchg.patch: Delete.
|
||||||
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
||||||
@ -2550,6 +2719,7 @@ Remove obsolete patches:
|
|||||||
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
||||||
|
|
||||||
Introduce 2.6.26-RT1:
|
Introduce 2.6.26-RT1:
|
||||||
|
---------------------
|
||||||
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
||||||
Linux-RT 2.6.26-RT
|
Linux-RT 2.6.26-RT
|
||||||
radix-tree: gang slot lookups.
|
radix-tree: gang slot lookups.
|
||||||
|
24117
kernel-source.spec
24117
kernel-source.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,171 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- kernel-source-rt must not provide a kernel-source symbol: this
|
||||||
|
would break dependencies.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- update patches.suse/ppc-no-LDFLAGS_MODULE.patch
|
||||||
|
use suggested patch from kernel.org bugzilla
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch
|
||||||
|
fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- supported.conf: mark efivars.ko as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- enable yealink driver (bnc#432841)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/ehci_sched.diff: fix hang in disable_periodic
|
||||||
|
(bnc#403346).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix
|
||||||
|
section mismatch in fujitsu_laptop driver (none).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/sd-needs-updating: Driver 'sd' needs updating
|
||||||
|
(bnc#406656).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/post.sh: Catch mkinitrd error code indicating missing
|
||||||
|
required modules. Only add a bootloader entry if an initrd
|
||||||
|
could be created, but re-add the bootloader entry even if
|
||||||
|
the initrd already existed before (bnc#431703).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4
|
||||||
|
(bnc#420767).
|
||||||
|
- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes
|
||||||
|
for SLES11 (bnc#432976).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark legacy iseries storage as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as
|
||||||
|
unsupported.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985
|
||||||
|
on ia64, these are motherboard-specific drivers for x86_64
|
||||||
|
motherboards.
|
||||||
|
- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver
|
||||||
|
for x86 hardware.
|
||||||
|
- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there
|
||||||
|
is no Simtec hardware based on these architectures.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols
|
||||||
|
defined in vmlinux by subsystem. (Actually, per directory, under
|
||||||
|
the assumption that there is enough of a correlation).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de
|
||||||
|
|
||||||
|
- supported.conf: add ohci-hcd to base. Fix up other USB drivers
|
||||||
|
(USB network drivers had moved, others were missing)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/atl2-add-atl2-network-driver.patch: atl2:
|
||||||
|
add atl2 network driver.
|
||||||
|
- Update config files (even the rt ones).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de
|
||||||
|
|
||||||
|
- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus
|
||||||
|
WARN_ON() condition, as per upstream commit 95b866d5a
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- compile windfarm_pm121 into the kernel
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
|
- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh,
|
||||||
|
scripts/run_oldconfig.sh,
|
||||||
|
scripts/sequence-patch.sh: Eliminated defconfig.$flavor
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark Cell drivers as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Update config files
|
||||||
|
rt configs not updated for per-module-dynamic-debug-messages.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- change patches.suse/supported-flag to show which modules are
|
||||||
|
unsupported and externally supported in oops messages. Also change
|
||||||
|
the taint values as the documentation was totally wrong.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Reenable RT debug builds, compile tested only
|
||||||
|
- Update config files
|
||||||
|
- Fix tracer issues
|
||||||
|
patches.rt/event-trace-hrtimer-trace.patch
|
||||||
|
patches.rt/trace-events-handle-syscalls.patch
|
||||||
|
patches.rt/trace-ktime-scalar.patch
|
||||||
|
patches.rt/tracer-event-trace.patch
|
||||||
|
- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb
|
||||||
|
- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT
|
||||||
|
- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch:
|
||||||
|
driver core: basic infrastructure for per-module dynamic
|
||||||
|
debug messages.
|
||||||
|
- refresh patches.trace/tracepoints.patch: Kernel Tracepoints.
|
||||||
|
- Update config files.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
@ -32,16 +200,16 @@ Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com
|
|||||||
proper place in series.conf.
|
proper place in series.conf.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
- enable msi on ppc64 (bnc#430937)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Oct 1 12:19:54 CEST 2008 - jeffm@suse.de
|
|
||||||
|
|
||||||
- scripts/sequence-patch.sh
|
- scripts/sequence-patch.sh
|
||||||
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- enable msi on ppc64 (bnc#430937)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
||||||
|
|
||||||
@ -2443,6 +2611,7 @@ Update to 2.6.26-rt1:
|
|||||||
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
||||||
|
|
||||||
Remove obsolete patches:
|
Remove obsolete patches:
|
||||||
|
------------------------
|
||||||
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
||||||
- patches.rt/arm-cmpxchg.patch: Delete.
|
- patches.rt/arm-cmpxchg.patch: Delete.
|
||||||
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
||||||
@ -2550,6 +2719,7 @@ Remove obsolete patches:
|
|||||||
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
||||||
|
|
||||||
Introduce 2.6.26-RT1:
|
Introduce 2.6.26-RT1:
|
||||||
|
---------------------
|
||||||
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
||||||
Linux-RT 2.6.26-RT
|
Linux-RT 2.6.26-RT
|
||||||
radix-tree: gang slot lookups.
|
radix-tree: gang slot lookups.
|
||||||
|
24000
kernel-syms-rt.spec
24000
kernel-syms-rt.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,171 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- kernel-source-rt must not provide a kernel-source symbol: this
|
||||||
|
would break dependencies.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- update patches.suse/ppc-no-LDFLAGS_MODULE.patch
|
||||||
|
use suggested patch from kernel.org bugzilla
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch
|
||||||
|
fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- supported.conf: mark efivars.ko as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- enable yealink driver (bnc#432841)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/ehci_sched.diff: fix hang in disable_periodic
|
||||||
|
(bnc#403346).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix
|
||||||
|
section mismatch in fujitsu_laptop driver (none).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/sd-needs-updating: Driver 'sd' needs updating
|
||||||
|
(bnc#406656).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/post.sh: Catch mkinitrd error code indicating missing
|
||||||
|
required modules. Only add a bootloader entry if an initrd
|
||||||
|
could be created, but re-add the bootloader entry even if
|
||||||
|
the initrd already existed before (bnc#431703).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4
|
||||||
|
(bnc#420767).
|
||||||
|
- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes
|
||||||
|
for SLES11 (bnc#432976).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark legacy iseries storage as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as
|
||||||
|
unsupported.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985
|
||||||
|
on ia64, these are motherboard-specific drivers for x86_64
|
||||||
|
motherboards.
|
||||||
|
- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver
|
||||||
|
for x86 hardware.
|
||||||
|
- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there
|
||||||
|
is no Simtec hardware based on these architectures.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols
|
||||||
|
defined in vmlinux by subsystem. (Actually, per directory, under
|
||||||
|
the assumption that there is enough of a correlation).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de
|
||||||
|
|
||||||
|
- supported.conf: add ohci-hcd to base. Fix up other USB drivers
|
||||||
|
(USB network drivers had moved, others were missing)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/atl2-add-atl2-network-driver.patch: atl2:
|
||||||
|
add atl2 network driver.
|
||||||
|
- Update config files (even the rt ones).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de
|
||||||
|
|
||||||
|
- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus
|
||||||
|
WARN_ON() condition, as per upstream commit 95b866d5a
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- compile windfarm_pm121 into the kernel
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
|
- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh,
|
||||||
|
scripts/run_oldconfig.sh,
|
||||||
|
scripts/sequence-patch.sh: Eliminated defconfig.$flavor
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark Cell drivers as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Update config files
|
||||||
|
rt configs not updated for per-module-dynamic-debug-messages.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- change patches.suse/supported-flag to show which modules are
|
||||||
|
unsupported and externally supported in oops messages. Also change
|
||||||
|
the taint values as the documentation was totally wrong.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Reenable RT debug builds, compile tested only
|
||||||
|
- Update config files
|
||||||
|
- Fix tracer issues
|
||||||
|
patches.rt/event-trace-hrtimer-trace.patch
|
||||||
|
patches.rt/trace-events-handle-syscalls.patch
|
||||||
|
patches.rt/trace-ktime-scalar.patch
|
||||||
|
patches.rt/tracer-event-trace.patch
|
||||||
|
- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb
|
||||||
|
- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT
|
||||||
|
- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch:
|
||||||
|
driver core: basic infrastructure for per-module dynamic
|
||||||
|
debug messages.
|
||||||
|
- refresh patches.trace/tracepoints.patch: Kernel Tracepoints.
|
||||||
|
- Update config files.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
@ -32,16 +200,16 @@ Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com
|
|||||||
proper place in series.conf.
|
proper place in series.conf.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
- enable msi on ppc64 (bnc#430937)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Oct 1 12:19:54 CEST 2008 - jeffm@suse.de
|
|
||||||
|
|
||||||
- scripts/sequence-patch.sh
|
- scripts/sequence-patch.sh
|
||||||
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- enable msi on ppc64 (bnc#430937)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
||||||
|
|
||||||
@ -2443,6 +2611,7 @@ Update to 2.6.26-rt1:
|
|||||||
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
||||||
|
|
||||||
Remove obsolete patches:
|
Remove obsolete patches:
|
||||||
|
------------------------
|
||||||
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
||||||
- patches.rt/arm-cmpxchg.patch: Delete.
|
- patches.rt/arm-cmpxchg.patch: Delete.
|
||||||
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
||||||
@ -2550,6 +2719,7 @@ Remove obsolete patches:
|
|||||||
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
||||||
|
|
||||||
Introduce 2.6.26-RT1:
|
Introduce 2.6.26-RT1:
|
||||||
|
---------------------
|
||||||
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
||||||
Linux-RT 2.6.26-RT
|
Linux-RT 2.6.26-RT
|
||||||
radix-tree: gang slot lookups.
|
radix-tree: gang slot lookups.
|
||||||
|
24010
kernel-syms.spec
24010
kernel-syms.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,171 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- kernel-source-rt must not provide a kernel-source symbol: this
|
||||||
|
would break dependencies.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- update patches.suse/ppc-no-LDFLAGS_MODULE.patch
|
||||||
|
use suggested patch from kernel.org bugzilla
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch
|
||||||
|
fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- supported.conf: mark efivars.ko as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- enable yealink driver (bnc#432841)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/ehci_sched.diff: fix hang in disable_periodic
|
||||||
|
(bnc#403346).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix
|
||||||
|
section mismatch in fujitsu_laptop driver (none).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/sd-needs-updating: Driver 'sd' needs updating
|
||||||
|
(bnc#406656).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/post.sh: Catch mkinitrd error code indicating missing
|
||||||
|
required modules. Only add a bootloader entry if an initrd
|
||||||
|
could be created, but re-add the bootloader entry even if
|
||||||
|
the initrd already existed before (bnc#431703).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4
|
||||||
|
(bnc#420767).
|
||||||
|
- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes
|
||||||
|
for SLES11 (bnc#432976).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark legacy iseries storage as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as
|
||||||
|
unsupported.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985
|
||||||
|
on ia64, these are motherboard-specific drivers for x86_64
|
||||||
|
motherboards.
|
||||||
|
- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver
|
||||||
|
for x86 hardware.
|
||||||
|
- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there
|
||||||
|
is no Simtec hardware based on these architectures.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols
|
||||||
|
defined in vmlinux by subsystem. (Actually, per directory, under
|
||||||
|
the assumption that there is enough of a correlation).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de
|
||||||
|
|
||||||
|
- supported.conf: add ohci-hcd to base. Fix up other USB drivers
|
||||||
|
(USB network drivers had moved, others were missing)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/atl2-add-atl2-network-driver.patch: atl2:
|
||||||
|
add atl2 network driver.
|
||||||
|
- Update config files (even the rt ones).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de
|
||||||
|
|
||||||
|
- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus
|
||||||
|
WARN_ON() condition, as per upstream commit 95b866d5a
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- compile windfarm_pm121 into the kernel
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
|
- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh,
|
||||||
|
scripts/run_oldconfig.sh,
|
||||||
|
scripts/sequence-patch.sh: Eliminated defconfig.$flavor
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark Cell drivers as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Update config files
|
||||||
|
rt configs not updated for per-module-dynamic-debug-messages.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- change patches.suse/supported-flag to show which modules are
|
||||||
|
unsupported and externally supported in oops messages. Also change
|
||||||
|
the taint values as the documentation was totally wrong.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Reenable RT debug builds, compile tested only
|
||||||
|
- Update config files
|
||||||
|
- Fix tracer issues
|
||||||
|
patches.rt/event-trace-hrtimer-trace.patch
|
||||||
|
patches.rt/trace-events-handle-syscalls.patch
|
||||||
|
patches.rt/trace-ktime-scalar.patch
|
||||||
|
patches.rt/tracer-event-trace.patch
|
||||||
|
- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb
|
||||||
|
- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT
|
||||||
|
- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch:
|
||||||
|
driver core: basic infrastructure for per-module dynamic
|
||||||
|
debug messages.
|
||||||
|
- refresh patches.trace/tracepoints.patch: Kernel Tracepoints.
|
||||||
|
- Update config files.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
@ -32,16 +200,16 @@ Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com
|
|||||||
proper place in series.conf.
|
proper place in series.conf.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
- enable msi on ppc64 (bnc#430937)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Oct 1 12:19:54 CEST 2008 - jeffm@suse.de
|
|
||||||
|
|
||||||
- scripts/sequence-patch.sh
|
- scripts/sequence-patch.sh
|
||||||
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- enable msi on ppc64 (bnc#430937)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
||||||
|
|
||||||
@ -2443,6 +2611,7 @@ Update to 2.6.26-rt1:
|
|||||||
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
||||||
|
|
||||||
Remove obsolete patches:
|
Remove obsolete patches:
|
||||||
|
------------------------
|
||||||
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
||||||
- patches.rt/arm-cmpxchg.patch: Delete.
|
- patches.rt/arm-cmpxchg.patch: Delete.
|
||||||
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
||||||
@ -2550,6 +2719,7 @@ Remove obsolete patches:
|
|||||||
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
||||||
|
|
||||||
Introduce 2.6.26-RT1:
|
Introduce 2.6.26-RT1:
|
||||||
|
---------------------
|
||||||
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
||||||
Linux-RT 2.6.26-RT
|
Linux-RT 2.6.26-RT
|
||||||
radix-tree: gang slot lookups.
|
radix-tree: gang slot lookups.
|
||||||
|
24204
kernel-trace.spec
24204
kernel-trace.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,171 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- kernel-source-rt must not provide a kernel-source symbol: this
|
||||||
|
would break dependencies.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- update patches.suse/ppc-no-LDFLAGS_MODULE.patch
|
||||||
|
use suggested patch from kernel.org bugzilla
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch
|
||||||
|
fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- supported.conf: mark efivars.ko as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- enable yealink driver (bnc#432841)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/ehci_sched.diff: fix hang in disable_periodic
|
||||||
|
(bnc#403346).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix
|
||||||
|
section mismatch in fujitsu_laptop driver (none).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/sd-needs-updating: Driver 'sd' needs updating
|
||||||
|
(bnc#406656).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/post.sh: Catch mkinitrd error code indicating missing
|
||||||
|
required modules. Only add a bootloader entry if an initrd
|
||||||
|
could be created, but re-add the bootloader entry even if
|
||||||
|
the initrd already existed before (bnc#431703).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4
|
||||||
|
(bnc#420767).
|
||||||
|
- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes
|
||||||
|
for SLES11 (bnc#432976).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark legacy iseries storage as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as
|
||||||
|
unsupported.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985
|
||||||
|
on ia64, these are motherboard-specific drivers for x86_64
|
||||||
|
motherboards.
|
||||||
|
- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver
|
||||||
|
for x86 hardware.
|
||||||
|
- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there
|
||||||
|
is no Simtec hardware based on these architectures.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols
|
||||||
|
defined in vmlinux by subsystem. (Actually, per directory, under
|
||||||
|
the assumption that there is enough of a correlation).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de
|
||||||
|
|
||||||
|
- supported.conf: add ohci-hcd to base. Fix up other USB drivers
|
||||||
|
(USB network drivers had moved, others were missing)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/atl2-add-atl2-network-driver.patch: atl2:
|
||||||
|
add atl2 network driver.
|
||||||
|
- Update config files (even the rt ones).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de
|
||||||
|
|
||||||
|
- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus
|
||||||
|
WARN_ON() condition, as per upstream commit 95b866d5a
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- compile windfarm_pm121 into the kernel
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
|
- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh,
|
||||||
|
scripts/run_oldconfig.sh,
|
||||||
|
scripts/sequence-patch.sh: Eliminated defconfig.$flavor
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark Cell drivers as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Update config files
|
||||||
|
rt configs not updated for per-module-dynamic-debug-messages.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- change patches.suse/supported-flag to show which modules are
|
||||||
|
unsupported and externally supported in oops messages. Also change
|
||||||
|
the taint values as the documentation was totally wrong.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Reenable RT debug builds, compile tested only
|
||||||
|
- Update config files
|
||||||
|
- Fix tracer issues
|
||||||
|
patches.rt/event-trace-hrtimer-trace.patch
|
||||||
|
patches.rt/trace-events-handle-syscalls.patch
|
||||||
|
patches.rt/trace-ktime-scalar.patch
|
||||||
|
patches.rt/tracer-event-trace.patch
|
||||||
|
- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb
|
||||||
|
- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT
|
||||||
|
- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch:
|
||||||
|
driver core: basic infrastructure for per-module dynamic
|
||||||
|
debug messages.
|
||||||
|
- refresh patches.trace/tracepoints.patch: Kernel Tracepoints.
|
||||||
|
- Update config files.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
@ -32,16 +200,16 @@ Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com
|
|||||||
proper place in series.conf.
|
proper place in series.conf.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
- enable msi on ppc64 (bnc#430937)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Oct 1 12:19:54 CEST 2008 - jeffm@suse.de
|
|
||||||
|
|
||||||
- scripts/sequence-patch.sh
|
- scripts/sequence-patch.sh
|
||||||
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- enable msi on ppc64 (bnc#430937)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
||||||
|
|
||||||
@ -2443,6 +2611,7 @@ Update to 2.6.26-rt1:
|
|||||||
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
||||||
|
|
||||||
Remove obsolete patches:
|
Remove obsolete patches:
|
||||||
|
------------------------
|
||||||
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
||||||
- patches.rt/arm-cmpxchg.patch: Delete.
|
- patches.rt/arm-cmpxchg.patch: Delete.
|
||||||
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
||||||
@ -2550,6 +2719,7 @@ Remove obsolete patches:
|
|||||||
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
||||||
|
|
||||||
Introduce 2.6.26-RT1:
|
Introduce 2.6.26-RT1:
|
||||||
|
---------------------
|
||||||
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
||||||
Linux-RT 2.6.26-RT
|
Linux-RT 2.6.26-RT
|
||||||
radix-tree: gang slot lookups.
|
radix-tree: gang slot lookups.
|
||||||
|
24195
kernel-vanilla.spec
24195
kernel-vanilla.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,171 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 10:30:12 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- kernel-source-rt must not provide a kernel-source symbol: this
|
||||||
|
would break dependencies.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:57:54 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- update patches.suse/ppc-no-LDFLAGS_MODULE.patch
|
||||||
|
use suggested patch from kernel.org bugzilla
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 08:51:19 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- add patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch
|
||||||
|
fix oops in pseries_remove_lmb with 64k PAGE_SIZE (bnc#431380)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:34:05 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- supported.conf: mark efivars.ko as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 8 06:32:42 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- enable yealink driver (bnc#432841)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:58:20 CEST 2008 - oneukum@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/ehci_sched.diff: fix hang in disable_periodic
|
||||||
|
(bnc#403346).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:45:09 CEST 2008 - trenn@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/fujisu_laptop_fix_section_mismatch.patch: Fix
|
||||||
|
section mismatch in fujitsu_laptop driver (none).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 16:20:12 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.fixes/sd-needs-updating: Driver 'sd' needs updating
|
||||||
|
(bnc#406656).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 15:29:23 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/post.sh: Catch mkinitrd error code indicating missing
|
||||||
|
required modules. Only add a bootloader entry if an initrd
|
||||||
|
could be created, but re-add the bootloader entry even if
|
||||||
|
the initrd already existed before (bnc#431703).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 14:02:57 CEST 2008 - hare@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/lpfc-8.2.8.4-update: Update lpfc to 8.2.8.4
|
||||||
|
(bnc#420767).
|
||||||
|
- patches.drivers/qla4xxx-sles11-update: qla4xxx driver fixes
|
||||||
|
for SLES11 (bnc#432976).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 7 11:55:56 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark legacy iseries storage as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:58:37 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- supported.conf: Add the ad7414, adcxx and ibmaem hwmon drivers as
|
||||||
|
unsupported.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 6 21:30:39 CEST 2008 - jdelvare@suse.de
|
||||||
|
|
||||||
|
- config/ia64/*: Don't built i2c-amd756-s4882 and i2c-nforce2-s4985
|
||||||
|
on ia64, these are motherboard-specific drivers for x86_64
|
||||||
|
motherboards.
|
||||||
|
- config/powerpc/*: Don't built i2c-isch on powerpc, it is a driver
|
||||||
|
for x86 hardware.
|
||||||
|
- config/*: Don't built i2c-simtec on i386, x86_64 and ia64, there
|
||||||
|
is no Simtec hardware based on these architectures.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 11:15:44 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
|
- rpm/kernel-binary.spec.in: Fix the logic splitting up the symbols
|
||||||
|
defined in vmlinux by subsystem. (Actually, per directory, under
|
||||||
|
the assumption that there is enough of a correlation).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:41:47 CEST 2008 - greg@suse.de
|
||||||
|
|
||||||
|
- supported.conf: add ohci-hcd to base. Fix up other USB drivers
|
||||||
|
(USB network drivers had moved, others were missing)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 5 05:24:17 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/atl2-add-atl2-network-driver.patch: atl2:
|
||||||
|
add atl2 network driver.
|
||||||
|
- Update config files (even the rt ones).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 21:22:32 CEST 2008 - jkosina@suse.de
|
||||||
|
|
||||||
|
- patches.suse/e1000e_debug_contention_on_NVM_SWFLAG: fix bogus
|
||||||
|
WARN_ON() condition, as per upstream commit 95b866d5a
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:19:33 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark ibmvfc as supported (bnc#417555 - fate#304178 - LTC46935)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:15:34 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- compile windfarm_pm121 into the kernel
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 20:13:35 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
|
- doc/README.SUSE, scripts/tar-up_and_run_mbuild.sh,
|
||||||
|
scripts/run_oldconfig.sh,
|
||||||
|
scripts/sequence-patch.sh: Eliminated defconfig.$flavor
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 19:58:32 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- mark Cell drivers as supported
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:15:51 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Update config files
|
||||||
|
rt configs not updated for per-module-dynamic-debug-messages.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 06:09:25 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- change patches.suse/supported-flag to show which modules are
|
||||||
|
unsupported and externally supported in oops messages. Also change
|
||||||
|
the taint values as the documentation was totally wrong.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:29:47 CEST 2008 - tonyj@suse.de
|
||||||
|
|
||||||
|
- Reenable RT debug builds, compile tested only
|
||||||
|
- Update config files
|
||||||
|
- Fix tracer issues
|
||||||
|
patches.rt/event-trace-hrtimer-trace.patch
|
||||||
|
patches.rt/trace-events-handle-syscalls.patch
|
||||||
|
patches.rt/trace-ktime-scalar.patch
|
||||||
|
patches.rt/tracer-event-trace.patch
|
||||||
|
- patches.rt/kdb-disable-ist.patch: Disable stackfault and debug stacks for kdb
|
||||||
|
- patches.rt/kdb-rtmisc.patch: Misc KDB fixes for RT
|
||||||
|
- patches.rt/novfs-rtmisc.patch: Misc NOVFS fixes for RT
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 3 05:20:45 CEST 2008 - gregkh@suse.de
|
||||||
|
|
||||||
|
- patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch:
|
||||||
|
driver core: basic infrastructure for per-module dynamic
|
||||||
|
debug messages.
|
||||||
|
- refresh patches.trace/tracepoints.patch: Kernel Tracepoints.
|
||||||
|
- Update config files.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
Thu Oct 2 20:05:27 CEST 2008 - agruen@suse.de
|
||||||
|
|
||||||
@ -32,16 +200,16 @@ Thu Oct 2 09:56:40 CEST 2008 - jbeulich@novell.com
|
|||||||
proper place in series.conf.
|
proper place in series.conf.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
Wed Oct 1 16:20:17 CEST 2008 - jeffm@suse.de
|
||||||
|
|
||||||
- enable msi on ppc64 (bnc#430937)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Oct 1 12:19:54 CEST 2008 - jeffm@suse.de
|
|
||||||
|
|
||||||
- scripts/sequence-patch.sh
|
- scripts/sequence-patch.sh
|
||||||
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
- scripts/run_oldconfig.sh: x86 defconfigs go under arch/x86.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 1 14:33:28 CEST 2008 - olh@suse.de
|
||||||
|
|
||||||
|
- enable msi on ppc64 (bnc#430937)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
Wed Oct 1 09:44:11 CEST 2008 - tiwai@suse.de
|
||||||
|
|
||||||
@ -2443,6 +2611,7 @@ Update to 2.6.26-rt1:
|
|||||||
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
- QLogic InfiniPath Driver (INFINIBAND_IPATH)
|
||||||
|
|
||||||
Remove obsolete patches:
|
Remove obsolete patches:
|
||||||
|
------------------------
|
||||||
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
- patches.rt/arm-cmpxchg-support-armv6.patch: Delete.
|
||||||
- patches.rt/arm-cmpxchg.patch: Delete.
|
- patches.rt/arm-cmpxchg.patch: Delete.
|
||||||
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
- patches.rt/arm-fix-atomic-cmpxchg.patch: Delete.
|
||||||
@ -2550,6 +2719,7 @@ Remove obsolete patches:
|
|||||||
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
- patches.rt/x86-delay-enable-preempt-tglx.patch: Delete.
|
||||||
|
|
||||||
Introduce 2.6.26-RT1:
|
Introduce 2.6.26-RT1:
|
||||||
|
---------------------
|
||||||
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
- patches.rt/2.6.21-rc6-lockless3-radix-tree-gang-slot-lookups.patch:
|
||||||
Linux-RT 2.6.26-RT
|
Linux-RT 2.6.26-RT
|
||||||
radix-tree: gang slot lookups.
|
radix-tree: gang slot lookups.
|
||||||
|
24199
kernel-xen.spec
24199
kernel-xen.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:07ba26135f8e22df6fc425d6a45171030984b768dd94764790dd1899bd860426
|
oid sha256:2a754305b773d7a2cd8386c72f1fd9c8e0a8c2380783d31ce19a1351ec324088
|
||||||
size 128
|
size 129
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:cd4771eddc0b4c7d734370264cb53aed4880f1714da808828a9451f7322e30e9
|
oid sha256:14e936494a2d27f317df5c5b8a347c76ebbb6754c4eee2b8d98325e89c3962a3
|
||||||
size 80093
|
size 80125
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:da7ad03c9d33095fc6e33ad9e5973be9800f0098377993c28e7afb5cca200f89
|
oid sha256:1f82bcfc4a64da76734b2133812592592c4874b8f56f1d9a4937c6da56e64d52
|
||||||
size 456933
|
size 519137
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:2aba845e099684cd1de920f224edc22535d60edce7486ac6dc493db0dc2534d3
|
oid sha256:499c149037cf5b8c80b9c153ba39e580d9eeffb304f785a175896d800d48a5fc
|
||||||
size 80976
|
size 82363
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:b7bc1bfb29c822fc74f138f4a59db5b461be53aabed545b1dd231c4cf0912e32
|
oid sha256:70ca5df4cc15d14aa07c9db6d085f3585f3054d785636e7bd28de3f38838066d
|
||||||
size 348520
|
size 349930
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:2bc4ea890d4ba719a0d8c1a4bf3fc6ab697cc95f32d02484ae8c8eedf63204ec
|
oid sha256:2726d9ac814e431d6a2bda311ac6b274085a21b58b9c425d98f0c894503bc08b
|
||||||
size 1117197
|
size 1119243
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:f70258dcd17fed864c42c104ea4ddfcb7fb26de9fe1078f8d9197bb36ca338b0
|
oid sha256:88d76e89d9e9181344386ae689b41a64a0a9ec5980e7f83453815d34b7774a16
|
||||||
size 28560
|
size 28495
|
||||||
|
25
post.sh
25
post.sh
@ -57,11 +57,6 @@ message_install_bl () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
run_bootloader () {
|
run_bootloader () {
|
||||||
# Only create the bootloader entry when installing kernel-$flavor-base.
|
|
||||||
if [ @SUBPACKAGE@ != kernel-@FLAVOR@-base ]; then
|
|
||||||
return 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -f /etc/sysconfig/bootloader ] &&
|
if [ -f /etc/sysconfig/bootloader ] &&
|
||||||
[ -f /boot/grub/menu.lst -o \
|
[ -f /boot/grub/menu.lst -o \
|
||||||
-f /etc/lilo.conf -o \
|
-f /etc/lilo.conf -o \
|
||||||
@ -77,21 +72,29 @@ run_bootloader () {
|
|||||||
if [ -f /etc/fstab -a ! -e /.buildenv -a -x /sbin/mkinitrd ] ; then
|
if [ -f /etc/fstab -a ! -e /.buildenv -a -x /sbin/mkinitrd ] ; then
|
||||||
if ! /sbin/mkinitrd -k /boot/@IMAGE@-@KERNELRELEASE@ \
|
if ! /sbin/mkinitrd -k /boot/@IMAGE@-@KERNELRELEASE@ \
|
||||||
-i /boot/initrd-@KERNELRELEASE@; then
|
-i /boot/initrd-@KERNELRELEASE@; then
|
||||||
echo "/sbin/mkinitrd failed" >&2
|
# mkinitrd fails with status 10 if any required kernel modules missing.
|
||||||
exit 1
|
# We expect those modules to be added later (by one of the other
|
||||||
|
# kernel-$flavor packages).
|
||||||
|
if [ $? -ne 10 ]; then
|
||||||
|
echo "/sbin/mkinitrd failed" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# only run the bootloader if the usual bootloader configuration
|
# only run the bootloader if the usual bootloader configuration
|
||||||
# files are there -- this is different on every architecture
|
# files are there -- this is different on every architecture
|
||||||
if run_bootloader ; then
|
initrd=/boot/initrd-@KERNELRELEASE
|
||||||
# handle 10.2 and SLES10 SP1
|
if [ -e $initrd -o ! -e /lib/modules/@KERNELRELEASE@ ] && \
|
||||||
|
run_bootloader ; then
|
||||||
|
[ -e $initrd ] || initrd=
|
||||||
|
# handle 10.2 and SLES10 SP1 or later
|
||||||
if [ -x /usr/lib/bootloader/bootloader_entry ]; then
|
if [ -x /usr/lib/bootloader/bootloader_entry ]; then
|
||||||
/usr/lib/bootloader/bootloader_entry \
|
/usr/lib/bootloader/bootloader_entry \
|
||||||
add \
|
add \
|
||||||
@FLAVOR@ \
|
@FLAVOR@ \
|
||||||
@KERNELRELEASE@ \
|
@KERNELRELEASE@ \
|
||||||
@IMAGE@-@KERNELRELEASE@ \
|
@IMAGE@-@KERNELRELEASE@ \
|
||||||
initrd-@KERNELRELEASE@
|
$initrd
|
||||||
|
|
||||||
# handle 10.1 and SLES10 GA
|
# handle 10.1 and SLES10 GA
|
||||||
elif [ -x /sbin/update-bootloader ]; then
|
elif [ -x /sbin/update-bootloader ]; then
|
||||||
@ -111,7 +114,7 @@ if [ -f /etc/fstab -a ! -e /.buildenv -a -x /sbin/mkinitrd ] ; then
|
|||||||
echo "bootloader_entry script unavailable, updating /boot/@IMAGE@"
|
echo "bootloader_entry script unavailable, updating /boot/@IMAGE@"
|
||||||
/sbin/update-bootloader \
|
/sbin/update-bootloader \
|
||||||
--image /boot/@IMAGE@ \
|
--image /boot/@IMAGE@ \
|
||||||
--initrd /boot/initrd \
|
${initrd:+--initrd /boot/initrd} \
|
||||||
--add \
|
--add \
|
||||||
--force $opt_xen_kernel
|
--force $opt_xen_kernel
|
||||||
|
|
||||||
|
23
series.conf
23
series.conf
@ -136,8 +136,8 @@
|
|||||||
########################################################
|
########################################################
|
||||||
# powerpc/generic
|
# powerpc/generic
|
||||||
########################################################
|
########################################################
|
||||||
|
patches.arch/ppc-pseries_remove_lmb-PAGE_SHIFTT.patch
|
||||||
patches.suse/ppc-no-LDFLAGS_MODULE.patch
|
patches.suse/ppc-no-LDFLAGS_MODULE.patch
|
||||||
+olh patches.arch/ppc-efika-slowdown.patch
|
|
||||||
patches.arch/ppc-vio-modalias.patch
|
patches.arch/ppc-vio-modalias.patch
|
||||||
patches.arch/ppc-efika-mpc52xx-ac97.patch
|
patches.arch/ppc-efika-mpc52xx-ac97.patch
|
||||||
patches.arch/ppc-efika-psc-console-autodetection.patch
|
patches.arch/ppc-efika-psc-console-autodetection.patch
|
||||||
@ -263,6 +263,7 @@
|
|||||||
patches.arch/acpi-export-hotplug_execute
|
patches.arch/acpi-export-hotplug_execute
|
||||||
|
|
||||||
patches.fixes/acpi_use_acpi_exception.patch
|
patches.fixes/acpi_use_acpi_exception.patch
|
||||||
|
patches.fixes/fujisu_laptop_fix_section_mismatch.patch
|
||||||
|
|
||||||
########################################################
|
########################################################
|
||||||
# CPUFREQ
|
# CPUFREQ
|
||||||
@ -457,10 +458,6 @@
|
|||||||
patches.suse/nfs4acl-ext3.diff
|
patches.suse/nfs4acl-ext3.diff
|
||||||
patches.suse/nfs4acl-ai.diff
|
patches.suse/nfs4acl-ai.diff
|
||||||
|
|
||||||
########################################################
|
|
||||||
# Networking, IPv6
|
|
||||||
########################################################
|
|
||||||
|
|
||||||
########################################################
|
########################################################
|
||||||
# These patches are from the netfilter team, and
|
# These patches are from the netfilter team, and
|
||||||
# are required to tag IPsec packets for packet
|
# are required to tag IPsec packets for packet
|
||||||
@ -524,6 +521,7 @@
|
|||||||
patches.fixes/scsi-misc-git-update
|
patches.fixes/scsi-misc-git-update
|
||||||
patches.fixes/scsi-enhance-error-codes
|
patches.fixes/scsi-enhance-error-codes
|
||||||
patches.fixes/scsi-terminate-target-reset
|
patches.fixes/scsi-terminate-target-reset
|
||||||
|
patches.fixes/sd-needs-updating
|
||||||
|
|
||||||
# FCoE
|
# FCoE
|
||||||
patches.drivers/open-fcoe-header-files
|
patches.drivers/open-fcoe-header-files
|
||||||
@ -533,8 +531,11 @@
|
|||||||
|
|
||||||
patches.drivers/lpfc-8.2.8-update
|
patches.drivers/lpfc-8.2.8-update
|
||||||
patches.drivers/lpfc-8.2.8.1-update
|
patches.drivers/lpfc-8.2.8.1-update
|
||||||
|
patches.drivers/lpfc-8.2.8.3-update
|
||||||
|
patches.drivers/lpfc-8.2.8.4-update
|
||||||
patches.drivers/qla2xxx-8.02.01-k8-update
|
patches.drivers/qla2xxx-8.02.01-k8-update
|
||||||
patches.drivers/mpt-fusion-4.00.43.00-update
|
patches.drivers/mpt-fusion-4.00.43.00-update
|
||||||
|
patches.drivers/qla4xxx-sles11-update
|
||||||
# patches.fixes/mptbase-vmware-fix
|
# patches.fixes/mptbase-vmware-fix
|
||||||
|
|
||||||
# Remaining SCSI patches (garloff)
|
# Remaining SCSI patches (garloff)
|
||||||
@ -547,6 +548,7 @@
|
|||||||
########################################################
|
########################################################
|
||||||
patches.fixes/tulip-quad-NIC-ifdown
|
patches.fixes/tulip-quad-NIC-ifdown
|
||||||
patches.suse/nameif-track-rename.patch
|
patches.suse/nameif-track-rename.patch
|
||||||
|
patches.drivers/atl2-add-atl2-network-driver.patch
|
||||||
|
|
||||||
########################################################
|
########################################################
|
||||||
# Wireless Networking
|
# Wireless Networking
|
||||||
@ -568,12 +570,15 @@
|
|||||||
########################################################
|
########################################################
|
||||||
# make debugging easier
|
# make debugging easier
|
||||||
patches.drivers/sysfs-crash-debugging.patch
|
patches.drivers/sysfs-crash-debugging.patch
|
||||||
|
patches.drivers/driver-core-basic-infrastructure-for-per-module-dynamic-debug-messages.patch
|
||||||
|
|
||||||
########################################################
|
########################################################
|
||||||
# USB
|
# USB
|
||||||
########################################################
|
########################################################
|
||||||
# make debugging easier
|
# make debugging easier
|
||||||
patches.suse/usb-storage-disable-delay.patch
|
patches.suse/usb-storage-disable-delay.patch
|
||||||
|
#403346
|
||||||
|
patches.fixes/ehci_sched.diff
|
||||||
|
|
||||||
########################################################
|
########################################################
|
||||||
# I2C
|
# I2C
|
||||||
@ -2006,6 +2011,8 @@
|
|||||||
+RT patches.rt/bit-spinlocks-fix-compile.patch
|
+RT patches.rt/bit-spinlocks-fix-compile.patch
|
||||||
+RT patches.rt/nmi-prof-compile.patch
|
+RT patches.rt/nmi-prof-compile.patch
|
||||||
|
|
||||||
# PG: extraversion, append -26rt9 since that was the baseline.
|
# Local SUSE RT patches
|
||||||
# patches.rt/version.patch
|
# Fix various issues with debug builds
|
||||||
|
+RT patches.rt/kdb-disable-ist.patch
|
||||||
|
+RT patches.rt/kdb-rtmisc.patch
|
||||||
|
+RT patches.rt/novfs-rtmisc.patch
|
||||||
|
105
supported.conf
105
supported.conf
@ -23,8 +23,23 @@
|
|||||||
kernel/arch/ia64/sn/kernel/xp
|
kernel/arch/ia64/sn/kernel/xp
|
||||||
kernel/arch/ia64/sn/kernel/xpc
|
kernel/arch/ia64/sn/kernel/xpc
|
||||||
kernel/arch/ia64/sn/kernel/xpnet
|
kernel/arch/ia64/sn/kernel/xpnet
|
||||||
kernel/arch/powerpc/platforms/pseries/hvcserver
|
+external kernel/arch/powerpc/platforms/cell/cbe-cpufreq
|
||||||
kernel/arch/powerpc/platforms/pseries/scanlog
|
+external kernel/arch/powerpc/platforms/cell/cbe_cpufreq_pmi
|
||||||
|
+external kernel/arch/powerpc/platforms/cell/cbe_powerbutton
|
||||||
|
+external kernel/arch/powerpc/platforms/cell/cbe_thermal
|
||||||
|
+external kernel/arch/powerpc/platforms/cell/cpufreq_spudemand
|
||||||
|
+external kernel/arch/powerpc/platforms/cell/spufs/spufs
|
||||||
|
+external kernel/arch/powerpc/platforms/cell/spufs/sputrace
|
||||||
|
+external kernel/arch/powerpc/platforms/pseries/hvcserver
|
||||||
|
+external kernel/arch/powerpc/platforms/pseries/scanlog
|
||||||
|
+external kernel/arch/powerpc/sysdev/axonram
|
||||||
|
+external kernel/arch/powerpc/sysdev/pmi
|
||||||
|
|
||||||
|
# TODO mac@suse.de
|
||||||
|
+external kernel/drivers/char/viotape
|
||||||
|
+external kernel/drivers/cdrom/viocd
|
||||||
|
+external kernel/drivers/block/viodasd
|
||||||
|
|
||||||
kernel/arch/s390/appldata/appldata_mem
|
kernel/arch/s390/appldata/appldata_mem
|
||||||
kernel/arch/s390/appldata/appldata_net_sum
|
kernel/arch/s390/appldata/appldata_net_sum
|
||||||
kernel/arch/s390/appldata/appldata_os
|
kernel/arch/s390/appldata/appldata_os
|
||||||
@ -301,10 +316,14 @@
|
|||||||
kernel/drivers/dump/dump_gzip
|
kernel/drivers/dump/dump_gzip
|
||||||
kernel/drivers/dump/dump_netdev
|
kernel/drivers/dump/dump_netdev
|
||||||
kernel/drivers/dump/dump_rle
|
kernel/drivers/dump/dump_rle
|
||||||
|
+external kernel/drivers/edac/cell_edac
|
||||||
+base kernel/drivers/firmware/edd
|
+base kernel/drivers/firmware/edd
|
||||||
|
kernel/drivers/firmware/efivars # efi sysfs information
|
||||||
- kernel/drivers/hwmon/abituguru # Abit uGuru rev. 1 and 2
|
- kernel/drivers/hwmon/abituguru # Abit uGuru rev. 1 and 2
|
||||||
- kernel/drivers/hwmon/abituguru3 # Abit uGuru rev. 3
|
- kernel/drivers/hwmon/abituguru3 # Abit uGuru rev. 3
|
||||||
|
- kernel/drivers/hwmon/ad7414 # AD7414
|
||||||
- kernel/drivers/hwmon/ad7418 # AD7416, AD7417, AD7418
|
- kernel/drivers/hwmon/ad7418 # AD7416, AD7417, AD7418
|
||||||
|
- kernel/drivers/hwmon/adcxx # Generic ADCxxxSxxx driver
|
||||||
- kernel/drivers/hwmon/adm1021 # adm1021 driver
|
- kernel/drivers/hwmon/adm1021 # adm1021 driver
|
||||||
- kernel/drivers/hwmon/adm1025 # ADM1025 driver
|
- kernel/drivers/hwmon/adm1025 # ADM1025 driver
|
||||||
- kernel/drivers/hwmon/adm1026
|
- kernel/drivers/hwmon/adm1026
|
||||||
@ -333,6 +352,7 @@
|
|||||||
kernel/drivers/hwmon/hwmon
|
kernel/drivers/hwmon/hwmon
|
||||||
kernel/drivers/hwmon/hwmon-vid
|
kernel/drivers/hwmon/hwmon-vid
|
||||||
- kernel/drivers/hwmon/i5k_amb # Intel FB-DIMM AMB
|
- kernel/drivers/hwmon/i5k_amb # Intel FB-DIMM AMB
|
||||||
|
- kernel/drivers/hwmon/ibmaem # IBM System Director Active Energy Manager
|
||||||
- kernel/drivers/hwmon/ibmpex # IBM PowerExecutive power sensors
|
- kernel/drivers/hwmon/ibmpex # IBM PowerExecutive power sensors
|
||||||
- kernel/drivers/hwmon/it87 # IT8705F, IT8712F, Sis950 driver
|
- kernel/drivers/hwmon/it87 # IT8705F, IT8712F, Sis950 driver
|
||||||
- kernel/drivers/hwmon/k8temp # AMD K8 thermal sensors
|
- kernel/drivers/hwmon/k8temp # AMD K8 thermal sensors
|
||||||
@ -978,6 +998,23 @@
|
|||||||
kernel/drivers/net/typhoon # 3Com Typhoon Family (3C990, 3CR990, and variants)
|
kernel/drivers/net/typhoon # 3Com Typhoon Family (3C990, 3CR990, and variants)
|
||||||
kernel/drivers/net/via-rhine # VIA Rhine PCI Fast Ethernet driver
|
kernel/drivers/net/via-rhine # VIA Rhine PCI Fast Ethernet driver
|
||||||
kernel/drivers/net/via-velocity # VIA Networking Velocity Family Gigabit Ethernet Adapter Driver
|
kernel/drivers/net/via-velocity # VIA Networking Velocity Family Gigabit Ethernet Adapter Driver
|
||||||
|
kernel/drivers/net/usb/asix # ASIX AX8817X based USB 2.0 Ethernet Devices
|
||||||
|
kernel/drivers/net/usb/catc # CATC EL1210A NetMate USB Ethernet driver
|
||||||
|
kernel/drivers/net/usb/cdc_ether # CDC Ethernet based networking peripherals
|
||||||
|
kernel/drivers/net/usb/cdc_subset # Simple "CDC Subset" USB Networking Links
|
||||||
|
kernel/drivers/net/usb/dm9601 # Davicom DM9601 usb network device
|
||||||
|
kernel/drivers/net/usb/gl620a # GeneSys GL620USB-A based links
|
||||||
|
kernel/drivers/net/usb/hso # Option High Speed Modem device
|
||||||
|
kernel/drivers/net/usb/kaweth # KL5USB101 USB Ethernet driver
|
||||||
|
kernel/drivers/net/usb/mcs7830 # Moschips MCS7830 based USB 2.0 Ethernet Devices
|
||||||
|
kernel/drivers/net/usb/net1080 # Net1080 based USB host-to-host cables
|
||||||
|
kernel/drivers/net/usb/pegasus # Pegasus/Pegasus II USB Ethernet driver
|
||||||
|
kernel/drivers/net/usb/plusb # PL-2301/2302 USB host-to-host link cables
|
||||||
|
kernel/drivers/net/usb/rndis_host # Host Side support for RNDIS Networking Links
|
||||||
|
kernel/drivers/net/usb/rtl8150 # rtl8150 based usb-ethernet driver
|
||||||
|
kernel/drivers/net/usb/usbnet # USB Host-to-Host Link Drivers (numerous vendors)
|
||||||
|
kernel/drivers/net/usb/zaurus # Zaurus USB link
|
||||||
|
|
||||||
+isa kernel/drivers/net/wan/c101
|
+isa kernel/drivers/net/wan/c101
|
||||||
kernel/drivers/net/wan/cyclomx # Cyclom 2X Sync Card Driver.
|
kernel/drivers/net/wan/cyclomx # Cyclom 2X Sync Card Driver.
|
||||||
kernel/drivers/net/wan/cycx_drv # Cyclom 2x Sync Card Driver
|
kernel/drivers/net/wan/cycx_drv # Cyclom 2x Sync Card Driver
|
||||||
@ -1120,6 +1157,7 @@
|
|||||||
+isa kernel/drivers/scsi/g_NCR5380
|
+isa kernel/drivers/scsi/g_NCR5380
|
||||||
+isa kernel/drivers/scsi/g_NCR5380_mmio
|
+isa kernel/drivers/scsi/g_NCR5380_mmio
|
||||||
kernel/drivers/scsi/gdth
|
kernel/drivers/scsi/gdth
|
||||||
|
+external kernel/drivers/scsi/ibmvscsi/ibmvfc
|
||||||
kernel/drivers/scsi/ibmvscsi/ibmvscsic
|
kernel/drivers/scsi/ibmvscsi/ibmvscsic
|
||||||
kernel/drivers/scsi/ibmvscsi/ibmvscsis
|
kernel/drivers/scsi/ibmvscsi/ibmvscsis
|
||||||
kernel/drivers/scsi/ide-scsi
|
kernel/drivers/scsi/ide-scsi
|
||||||
@ -1209,54 +1247,25 @@
|
|||||||
- kernel/drivers/usb/atm/cxacru # driver for USB ADSL modems based on Conexant AccessRunner chipset
|
- kernel/drivers/usb/atm/cxacru # driver for USB ADSL modems based on Conexant AccessRunner chipset
|
||||||
kernel/drivers/usb/atm/speedtch
|
kernel/drivers/usb/atm/speedtch
|
||||||
- kernel/drivers/usb/atm/ueagle-atm
|
- kernel/drivers/usb/atm/ueagle-atm
|
||||||
- kernel/drivers/usb/atm/usbatm # Generic USB xDSL driver core
|
kernel/drivers/usb/atm/usbatm # Generic USB xDSL driver core
|
||||||
- kernel/drivers/usb/atm/xusbatm # dumb usbatm-based driver for modems initialized in userspace
|
- kernel/drivers/usb/atm/xusbatm # dumb usbatm-based driver for modems initialized in userspace
|
||||||
kernel/drivers/usb/class/cdc-acm # USB Abstract Control Model driver for USB modems and ISDN adapters
|
kernel/drivers/usb/class/cdc-acm # USB Abstract Control Model driver for USB modems and ISDN adapters
|
||||||
|
kernel/drivers/usb/class/cdc-wdm
|
||||||
kernel/drivers/usb/class/usblp # USB Printer Device Class driver
|
kernel/drivers/usb/class/usblp # USB Printer Device Class driver
|
||||||
+base kernel/drivers/usb/core/usbcore
|
+base kernel/drivers/usb/core/usbcore
|
||||||
+base kernel/drivers/usb/host/ehci-hcd # 2003-Dec-29 USB 2.0 'Enhanced' Host Controller (EHCI) Driver
|
+base kernel/drivers/usb/host/ehci-hcd # 2003-Dec-29 USB 2.0 'Enhanced' Host Controller (EHCI) Driver
|
||||||
- kernel/drivers/usb/host/isp116x-hcd # ISP116x HCD (Host Controller Driver) for USB
|
- kernel/drivers/usb/host/isp116x-hcd # ISP116x HCD (Host Controller Driver) for USB
|
||||||
kernel/drivers/usb/host/ohci-hcd # 2004 Feb 02 USB 1.1 'Open' Host Controller (OHCI) Driver
|
+base kernel/drivers/usb/host/ohci-hcd # 2004 Feb 02 USB 1.1 'Open' Host Controller (OHCI) Driver
|
||||||
kernel/drivers/usb/host/sl811-hcd
|
- kernel/drivers/usb/host/sl811-hcd
|
||||||
- kernel/drivers/usb/host/sl811_cs # PCMCIA driver for SL811HS (as found in REX-CFU1U)
|
- kernel/drivers/usb/host/sl811_cs # PCMCIA driver for SL811HS (as found in REX-CFU1U)
|
||||||
+base kernel/drivers/usb/host/uhci-hcd # USB Universal Host Controller Interface driver
|
+base kernel/drivers/usb/host/uhci-hcd # USB Universal Host Controller Interface driver
|
||||||
kernel/drivers/usb/image/mdc800 # USB Driver for Mustek MDC800 Digital Camera
|
kernel/drivers/usb/image/mdc800 # USB Driver for Mustek MDC800 Digital Camera
|
||||||
kernel/drivers/usb/image/microtek # Microtek Scanmaker X6 USB scanner driver
|
kernel/drivers/usb/image/microtek # Microtek Scanmaker X6 USB scanner driver
|
||||||
- kernel/drivers/usb/input/acecad # USB Acecad "Acecad Flair" tablet support
|
|
||||||
kernel/drivers/usb/input/aiptek # USB Aiptek 6000U/8000U tablet driver (Linux 2.5.x)
|
|
||||||
kernel/drivers/usb/input/appletouch # Apple USB Touchpad (for post-February 2005 PowerBooks) driver
|
|
||||||
kernel/drivers/usb/input/ati_remote # ATI/X10 RF USB Remote Control
|
|
||||||
kernel/drivers/usb/input/ati_remote2 # TI/Philips USB RF remote driver
|
|
||||||
- kernel/drivers/usb/input/itmtouch # Driver for ITM touchscreen panel
|
|
||||||
kernel/drivers/usb/input/kbtab # USB KB Gear JamStudio Tablet driver
|
|
||||||
- kernel/drivers/usb/input/keyspan_remote # USB driver for the Keyspan DMR
|
|
||||||
kernel/drivers/usb/input/mtouchusb # Microtouch USB HID Touchscreen Driver
|
|
||||||
kernel/drivers/usb/input/powermate # Griffin Technology, Inc PowerMate driver
|
|
||||||
kernel/drivers/usb/input/touchkitusb # eGalax TouchKit USB HID Touchscreen Driver
|
|
||||||
kernel/drivers/usb/input/usbhid
|
|
||||||
kernel/drivers/usb/input/wacom # USB Wacom Graphire and Wacom Intuos tablet driver
|
|
||||||
kernel/drivers/usb/input/xpad # X-Box pad driver
|
|
||||||
- kernel/drivers/usb/input/yealink # Driver for the USB-P1K voip usb phone
|
|
||||||
kernel/drivers/usb/media/dabusb # DAB-USB Interface Driver for Linux (c)1999
|
|
||||||
kernel/drivers/usb/media/dsbr100 # D-Link DSB-R100 USB FM radio driver
|
|
||||||
- kernel/drivers/usb/media/et61x251
|
|
||||||
kernel/drivers/usb/media/ibmcam # IBM/Xirlink C-it USB Camera Driver for Linux (c) 2000
|
|
||||||
kernel/drivers/usb/media/konicawc # Konica Webcam driver
|
|
||||||
kernel/drivers/usb/media/ov511 # ov511 USB Camera Driver
|
|
||||||
kernel/drivers/usb/media/pwc/pwc # Philips webcam driver
|
|
||||||
kernel/drivers/usb/media/se401 # SE401 USB Camera Driver
|
|
||||||
kernel/drivers/usb/media/sn9c102 # V4L2 driver for SN9C10[12] PC Camera Controllers
|
|
||||||
kernel/drivers/usb/media/stv680 # STV0680 USB Camera Driver
|
|
||||||
kernel/drivers/usb/media/ultracam
|
|
||||||
kernel/drivers/usb/media/usbvideo
|
|
||||||
kernel/drivers/usb/media/vicam # ViCam WebCam Driver
|
|
||||||
kernel/drivers/usb/media/w9968cf # V4L driver for W996[87]CF JPEG USB Dual Mode Camera Chip v1.25-basic
|
|
||||||
kernel/drivers/usb/misc/auerswald # Auerswald PBX/System Telephone usb driver
|
|
||||||
kernel/drivers/usb/misc/cytherm
|
kernel/drivers/usb/misc/cytherm
|
||||||
kernel/drivers/usb/misc/emi26 # Emagic EMI 2|6 firmware loader.
|
kernel/drivers/usb/misc/emi26 # Emagic EMI 2|6 firmware loader.
|
||||||
kernel/drivers/usb/misc/emi62 # Emagic EMI 6|2m firmware loader.
|
kernel/drivers/usb/misc/emi62 # Emagic EMI 6|2m firmware loader.
|
||||||
kernel/drivers/usb/misc/idmouse
|
kernel/drivers/usb/misc/idmouse
|
||||||
- kernel/drivers/usb/misc/ldusb # Generic USB driver for report based interrupt in/out devices
|
kernel/drivers/usb/misc/ldusb # Generic USB driver for report based interrupt in/out devices
|
||||||
kernel/drivers/usb/misc/legousbtower # LEGO USB Tower Driver
|
kernel/drivers/usb/misc/legousbtower # LEGO USB Tower Driver
|
||||||
kernel/drivers/usb/misc/phidgetkit
|
kernel/drivers/usb/misc/phidgetkit
|
||||||
kernel/drivers/usb/misc/phidgetservo # USB PhidgetServo Driver
|
kernel/drivers/usb/misc/phidgetservo # USB PhidgetServo Driver
|
||||||
@ -1265,23 +1274,9 @@
|
|||||||
kernel/drivers/usb/misc/usblcd # USBLCD Driver Version 1.04
|
kernel/drivers/usb/misc/usblcd # USBLCD Driver Version 1.04
|
||||||
kernel/drivers/usb/misc/usbled # USB LED Driver
|
kernel/drivers/usb/misc/usbled # USB LED Driver
|
||||||
kernel/drivers/usb/misc/uss720 # USB Parport Cable driver for Cables using the Lucent Technologies USS720 Chip
|
kernel/drivers/usb/misc/uss720 # USB Parport Cable driver for Cables using the Lucent Technologies USS720 Chip
|
||||||
|
kernel/drivers/usb/misc/phidget
|
||||||
- kernel/drivers/usb/mon/usbmon # The USB Monitor
|
- kernel/drivers/usb/mon/usbmon # The USB Monitor
|
||||||
kernel/drivers/usb/net/asix # ASIX AX8817X based USB 2.0 Ethernet Devices
|
kernel/drivers/usb/serial/aircable
|
||||||
kernel/drivers/usb/net/catc # CATC EL1210A NetMate USB Ethernet driver
|
|
||||||
kernel/drivers/usb/net/cdc_ether # CDC Ethernet based networking peripherals
|
|
||||||
kernel/drivers/usb/net/cdc_subset # Simple "CDC Subset" USB Networking Links
|
|
||||||
kernel/drivers/usb/net/gl620a # GeneSys GL620USB-A based links
|
|
||||||
kernel/drivers/usb/net/kaweth # KL5USB101 USB Ethernet driver
|
|
||||||
kernel/drivers/usb/net/net1080 # Net1080 based USB host-to-host cables
|
|
||||||
kernel/drivers/usb/net/pegasus # Pegasus/Pegasus II USB Ethernet driver
|
|
||||||
kernel/drivers/usb/net/plusb # PL-2301/2302 USB host-to-host link cables
|
|
||||||
kernel/drivers/usb/net/rndis_host # Host Side support for RNDIS Networking Links
|
|
||||||
kernel/drivers/usb/net/rtl8150 # rtl8150 based usb-ethernet driver
|
|
||||||
kernel/drivers/usb/net/usbnet # USB Host-to-Host Link Drivers (numerous vendors)
|
|
||||||
kernel/drivers/usb/net/zaurus # Zaurus USB link
|
|
||||||
kernel/drivers/usb/net/zd1201 # Driver for ZyDAS ZD1201 based USB Wireless adapters
|
|
||||||
kernel/drivers/usb/serial/airprime # AirPrime CDMA Wireless Serial USB driver
|
|
||||||
kernel/drivers/usb/serial/anydata # AnyData CDMA Serial USB driver
|
|
||||||
kernel/drivers/usb/serial/belkin_sa # USB Belkin Serial converter driver
|
kernel/drivers/usb/serial/belkin_sa # USB Belkin Serial converter driver
|
||||||
kernel/drivers/usb/serial/cp2101 # Silicon Laboratories CP2101/CP2102 USB to RS232 serial adaptor driver
|
kernel/drivers/usb/serial/cp2101 # Silicon Laboratories CP2101/CP2102 USB to RS232 serial adaptor driver
|
||||||
kernel/drivers/usb/serial/cyberjack # REINER SCT cyberJack pinpad/e-com USB Chipcard Reader Driver
|
kernel/drivers/usb/serial/cyberjack # REINER SCT cyberJack pinpad/e-com USB Chipcard Reader Driver
|
||||||
@ -1304,9 +1299,10 @@
|
|||||||
kernel/drivers/usb/serial/mct_u232 # Magic Control Technology USB-RS232 converter driver
|
kernel/drivers/usb/serial/mct_u232 # Magic Control Technology USB-RS232 converter driver
|
||||||
kernel/drivers/usb/serial/navman # USB Navman GPS device
|
kernel/drivers/usb/serial/navman # USB Navman GPS device
|
||||||
kernel/drivers/usb/serial/omninet # USB ZyXEL omni.net LCD PLUS Driver
|
kernel/drivers/usb/serial/omninet # USB ZyXEL omni.net LCD PLUS Driver
|
||||||
kernel/drivers/usb/serial/option # Option Card (PCMCIA to) USB to Serial Driver
|
kernel/drivers/usb/serial/option # USB Wireless modems
|
||||||
kernel/drivers/usb/serial/pl2303 # Prolific PL2303 USB to serial adaptor driver
|
kernel/drivers/usb/serial/pl2303 # Prolific PL2303 USB to serial adaptor driver
|
||||||
kernel/drivers/usb/serial/safe_serial # USB Safe Encapsulated Serial
|
kernel/drivers/usb/serial/safe_serial # USB Safe Encapsulated Serial
|
||||||
|
kernel/drivers/usb/serial/sierra # USB Sierra Wireless Modems
|
||||||
kernel/drivers/usb/serial/ti_usb_3410_5052
|
kernel/drivers/usb/serial/ti_usb_3410_5052
|
||||||
kernel/drivers/usb/serial/usbserial # USB Serial Driver core
|
kernel/drivers/usb/serial/usbserial # USB Serial Driver core
|
||||||
kernel/drivers/usb/serial/visor # USB HandSpring Visor / Palm OS driver
|
kernel/drivers/usb/serial/visor # USB HandSpring Visor / Palm OS driver
|
||||||
@ -1476,6 +1472,7 @@
|
|||||||
kernel/fs/xfs/quota/xfs_quota # SGI XFS quota management subsystem
|
kernel/fs/xfs/quota/xfs_quota # SGI XFS quota management subsystem
|
||||||
kernel/fs/xfs/xfs # SGI-XFS CVS-2004-03-08_06:00_UTC with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled, supportable?
|
kernel/fs/xfs/xfs # SGI-XFS CVS-2004-03-08_06:00_UTC with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled, supportable?
|
||||||
kernel/fs/xfs/xfsidbg
|
kernel/fs/xfs/xfsidbg
|
||||||
|
kernel/kdb/modules/kdbm_debugtypes
|
||||||
kernel/kdb/modules/kdbm_pg
|
kernel/kdb/modules/kdbm_pg
|
||||||
kernel/kdb/modules/kdbm_sched
|
kernel/kdb/modules/kdbm_sched
|
||||||
kernel/kdb/modules/kdbm_task
|
kernel/kdb/modules/kdbm_task
|
||||||
@ -2009,8 +2006,6 @@
|
|||||||
kernel/drivers/net/wan/hdlc
|
kernel/drivers/net/wan/hdlc
|
||||||
kernel/drivers/scsi/device_handler/scsi_dh
|
kernel/drivers/scsi/device_handler/scsi_dh
|
||||||
kernel/drivers/ssb/ssb
|
kernel/drivers/ssb/ssb
|
||||||
kernel/drivers/usb/atm/usbatm
|
|
||||||
kernel/drivers/usb/misc/phidget
|
|
||||||
kernel/drivers/video/fb_ddc
|
kernel/drivers/video/fb_ddc
|
||||||
kernel/drivers/video/fb_sys_fops
|
kernel/drivers/video/fb_sys_fops
|
||||||
kernel/drivers/video/output
|
kernel/drivers/video/output
|
||||||
|
Loading…
Reference in New Issue
Block a user