forked from pool/kernel-source
This commit is contained in:
parent
cb91dbc2cd
commit
bbd63e3cb2
@ -1 +1 @@
|
||||
2008-10-24 17:40:47 +0200
|
||||
2008-10-27 19:53:11 +0100
|
||||
|
@ -1,5 +1,7 @@
|
||||
#! /bin/bash
|
||||
|
||||
sourcedir=${0%/*}
|
||||
|
||||
# A lot of symbols are exported by the main kernel image. Find out
|
||||
# more precisely which built-in.o file defines them, and fill in
|
||||
# that information in Module.symvers. (The built-in.o files are
|
||||
@ -11,22 +13,44 @@
|
||||
unset LANG ${!LC_*}
|
||||
|
||||
# Create a table of all symbol export in a built-in.o file, e.g.,
|
||||
# mtrr_add arch/i386/kernel/cpu/mtrr/built-in
|
||||
# 0xc87c1f84 ktime_get kernel/built-in EXPORT_SYMBOL_GPL
|
||||
built_in_exports() {
|
||||
for obj in $(find -name built-in.o -printf '%P\n'); do
|
||||
nm $obj \
|
||||
| sed -nre 's:(00000000)?([0-9a-f]+) A __crc_(.*):\3\t'"${obj%.o}:p"
|
||||
# a/b/c/built-in.o gets linked into a/b/built-in.o, so ensure
|
||||
# that we visit sub-directories first to split up symbols as
|
||||
# much as possible.
|
||||
for obj in $(find -name built-in.o -printf '%d %P\n' \
|
||||
| sort -r \
|
||||
| awk '{ print $2 }'); do
|
||||
$sourcedir/list-exported-symbols -n ${obj%.o} $obj
|
||||
done
|
||||
|
||||
# We could go through the libraries as well, but those functions
|
||||
# are so unlikely to change that this wouldn't help.
|
||||
# (All remaining symbols will end up in the vmlinux set.)
|
||||
#for archive in $(find -name '*.a'); do
|
||||
# $sourcedir/list-exported-symbols -n ${archive%.a} $archive
|
||||
#done
|
||||
}
|
||||
|
||||
# Filter out duplicates from a Module.symvers dump
|
||||
unique_symbols() {
|
||||
awk '
|
||||
{ if ($2 in seen)
|
||||
next
|
||||
seen[$2] = 1
|
||||
print
|
||||
}
|
||||
'
|
||||
}
|
||||
|
||||
# Join together the two tables, including all lines from the first
|
||||
# file that don't have a match in the second. Finally remove the
|
||||
# duplicate column.
|
||||
join -t $'\t' -1 2 -2 1 -a 1 \
|
||||
<(cut -f1,2,3 | sort -k2) \
|
||||
<(built_in_exports | sort -k1) \
|
||||
# file that don't have a match in the second.
|
||||
# Finally, remove the duplicate columns.
|
||||
join -t $'\t' -j 2 -a 1 \
|
||||
<(sort -k2) \
|
||||
<(built_in_exports | unique_symbols | sort -k2) \
|
||||
| awk '
|
||||
BEGIN { FS = "\t" ; OFS = "\t" }
|
||||
NF == 3 { print $2, $1, $3 }
|
||||
NF == 4 { print $2, $1, $4 }
|
||||
NF == 7 { print $2, $1, $6, $4 }
|
||||
NF == 4 { print $2, $1, $3, $4 }
|
||||
'
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8d9520b8aa0140a38ff2808dc0fdbee34eefde1db2410379385b50ba1b2c5ef7
|
||||
size 135658
|
||||
oid sha256:d790880c4ee8d0990da9ebf78540883563d597b9738e055fad21d22001838738
|
||||
size 135588
|
||||
|
@ -5,15 +5,27 @@ filelist=($(cat))
|
||||
|
||||
printf "%s\n" "${filelist[@]}" | /usr/lib/rpm/find-provides "$@"
|
||||
|
||||
sourcedir=${0%/*}
|
||||
flavor=${1##*-}
|
||||
|
||||
tmpdir=$(mktemp -dt ${0##*/}.XXXXXXXXXX)
|
||||
trap "rm -rf $tmpdir" EXIT
|
||||
|
||||
for file in "${filelist[@]}"; do
|
||||
case "$file" in
|
||||
*/symsets-*.tar.gz)
|
||||
flavor=${file%.tar.gz}
|
||||
flavor=${flavor##*-}
|
||||
for symset in $(tar tfz "$file" | grep -v '/$'); do
|
||||
class=${symset##*/} ; class=${class%.*}
|
||||
echo "kernel($flavor:$class) = ${symset##*.}"
|
||||
done
|
||||
case "$file" in
|
||||
*/boot/symvers-*.gz)
|
||||
zcat "$file" \
|
||||
| awk '$3 == "vmlinux" || $3 ~ /\/built-in$/ { print }'
|
||||
;;
|
||||
esac
|
||||
*.ko)
|
||||
$sourcedir/list-exported-symbols $file
|
||||
;;
|
||||
esac
|
||||
done \
|
||||
| $sourcedir/split-into-symsets $tmpdir
|
||||
|
||||
shopt -s nullglob
|
||||
for symset in $tmpdir/*; do
|
||||
class=${symset##*/} ; class=${class%.*}
|
||||
echo "kernel($flavor:$class) = ${symset##*.}"
|
||||
done
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f1ed544d35336321c457eb9cf956206a163fdff8db6beddc19502ce38f9c844a
|
||||
size 2265
|
||||
oid sha256:e42c4d109b2a8f57b5e2e616a6212b1efe26bd6b8c5628d3249d0017c6a214e3
|
||||
size 2272
|
||||
|
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_uv_early_detect.patch: Delete hacks that were
|
||||
necessary while waiting for x2apic code. (bnc#429984).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 11:46:43 CET 2008 - tj@suse.de
|
||||
|
||||
Refresh the govault patch.
|
||||
|
||||
- patches.drivers/libata-add-waits-for-govault: libata: add
|
||||
waits for GoVault (bnc#246451).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de
|
||||
|
||||
- patches.fixes/kdb-oops-panic.diff:
|
||||
Fix NULL pointer dereference when regs == NULL (bnc#439007).
|
||||
- patches.fixes/hpwdt-kdump.diff:
|
||||
Fix kdump when using hpwdt (bnc#436786).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly and properly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de
|
||||
|
||||
- Fix the dependencies between the split kernel packages and KMPs
|
||||
(FATE 303631).
|
||||
- Fix for kernel paclages which are not split.
|
||||
- rpm/kernel-source.spec.in: Update list of scripts to include.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class
|
||||
file creation (bnc#434333)
|
||||
- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have
|
||||
been found (bnc#434333)
|
||||
- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware
|
||||
MAC-address for layer2 hsi-devices (bnc#434333)
|
||||
- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery
|
||||
fails (bnc#434333)
|
||||
- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error
|
||||
in non prealloc header path (bnc#434333,LTC#48840)
|
||||
- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove
|
||||
unnecessary support ckeck in sysfs route6 (bnc#434333)
|
||||
- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid
|
||||
skb_under_panic for malformatted inbound data (bnc#434333)
|
||||
- patches.arch/s390-02-09-tape-lock.patch: tape device driver:
|
||||
improve locking (bnc#434333)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de
|
||||
|
||||
- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch:
|
||||
touch_mnt_namespace when the mount flags change (FATE#304218).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to 2.6.27.4-rc3:
|
||||
- fixed ath5k suspend/resume regression
|
||||
- fixed pvrusb2 so it actually works
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz
|
||||
|
||||
@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com
|
||||
- patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com
|
||||
Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com
|
||||
|
||||
- ocfs2 fixes / updates from 2.6.28 merge window
|
||||
- patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_uv_early_detect.patch: Delete hacks that were
|
||||
necessary while waiting for x2apic code. (bnc#429984).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 11:46:43 CET 2008 - tj@suse.de
|
||||
|
||||
Refresh the govault patch.
|
||||
|
||||
- patches.drivers/libata-add-waits-for-govault: libata: add
|
||||
waits for GoVault (bnc#246451).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de
|
||||
|
||||
- patches.fixes/kdb-oops-panic.diff:
|
||||
Fix NULL pointer dereference when regs == NULL (bnc#439007).
|
||||
- patches.fixes/hpwdt-kdump.diff:
|
||||
Fix kdump when using hpwdt (bnc#436786).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly and properly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de
|
||||
|
||||
- Fix the dependencies between the split kernel packages and KMPs
|
||||
(FATE 303631).
|
||||
- Fix for kernel paclages which are not split.
|
||||
- rpm/kernel-source.spec.in: Update list of scripts to include.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class
|
||||
file creation (bnc#434333)
|
||||
- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have
|
||||
been found (bnc#434333)
|
||||
- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware
|
||||
MAC-address for layer2 hsi-devices (bnc#434333)
|
||||
- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery
|
||||
fails (bnc#434333)
|
||||
- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error
|
||||
in non prealloc header path (bnc#434333,LTC#48840)
|
||||
- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove
|
||||
unnecessary support ckeck in sysfs route6 (bnc#434333)
|
||||
- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid
|
||||
skb_under_panic for malformatted inbound data (bnc#434333)
|
||||
- patches.arch/s390-02-09-tape-lock.patch: tape device driver:
|
||||
improve locking (bnc#434333)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de
|
||||
|
||||
- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch:
|
||||
touch_mnt_namespace when the mount flags change (FATE#304218).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to 2.6.27.4-rc3:
|
||||
- fixed ath5k suspend/resume regression
|
||||
- fixed pvrusb2 so it actually works
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz
|
||||
|
||||
@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com
|
||||
- patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com
|
||||
Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com
|
||||
|
||||
- ocfs2 fixes / updates from 2.6.28 merge window
|
||||
- patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_uv_early_detect.patch: Delete hacks that were
|
||||
necessary while waiting for x2apic code. (bnc#429984).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 11:46:43 CET 2008 - tj@suse.de
|
||||
|
||||
Refresh the govault patch.
|
||||
|
||||
- patches.drivers/libata-add-waits-for-govault: libata: add
|
||||
waits for GoVault (bnc#246451).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de
|
||||
|
||||
- patches.fixes/kdb-oops-panic.diff:
|
||||
Fix NULL pointer dereference when regs == NULL (bnc#439007).
|
||||
- patches.fixes/hpwdt-kdump.diff:
|
||||
Fix kdump when using hpwdt (bnc#436786).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly and properly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de
|
||||
|
||||
- Fix the dependencies between the split kernel packages and KMPs
|
||||
(FATE 303631).
|
||||
- Fix for kernel paclages which are not split.
|
||||
- rpm/kernel-source.spec.in: Update list of scripts to include.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class
|
||||
file creation (bnc#434333)
|
||||
- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have
|
||||
been found (bnc#434333)
|
||||
- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware
|
||||
MAC-address for layer2 hsi-devices (bnc#434333)
|
||||
- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery
|
||||
fails (bnc#434333)
|
||||
- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error
|
||||
in non prealloc header path (bnc#434333,LTC#48840)
|
||||
- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove
|
||||
unnecessary support ckeck in sysfs route6 (bnc#434333)
|
||||
- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid
|
||||
skb_under_panic for malformatted inbound data (bnc#434333)
|
||||
- patches.arch/s390-02-09-tape-lock.patch: tape device driver:
|
||||
improve locking (bnc#434333)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de
|
||||
|
||||
- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch:
|
||||
touch_mnt_namespace when the mount flags change (FATE#304218).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to 2.6.27.4-rc3:
|
||||
- fixed ath5k suspend/resume regression
|
||||
- fixed pvrusb2 so it actually works
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz
|
||||
|
||||
@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com
|
||||
- patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com
|
||||
Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com
|
||||
|
||||
- ocfs2 fixes / updates from 2.6.28 merge window
|
||||
- patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_uv_early_detect.patch: Delete hacks that were
|
||||
necessary while waiting for x2apic code. (bnc#429984).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 11:46:43 CET 2008 - tj@suse.de
|
||||
|
||||
Refresh the govault patch.
|
||||
|
||||
- patches.drivers/libata-add-waits-for-govault: libata: add
|
||||
waits for GoVault (bnc#246451).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de
|
||||
|
||||
- patches.fixes/kdb-oops-panic.diff:
|
||||
Fix NULL pointer dereference when regs == NULL (bnc#439007).
|
||||
- patches.fixes/hpwdt-kdump.diff:
|
||||
Fix kdump when using hpwdt (bnc#436786).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly and properly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de
|
||||
|
||||
- Fix the dependencies between the split kernel packages and KMPs
|
||||
(FATE 303631).
|
||||
- Fix for kernel paclages which are not split.
|
||||
- rpm/kernel-source.spec.in: Update list of scripts to include.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class
|
||||
file creation (bnc#434333)
|
||||
- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have
|
||||
been found (bnc#434333)
|
||||
- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware
|
||||
MAC-address for layer2 hsi-devices (bnc#434333)
|
||||
- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery
|
||||
fails (bnc#434333)
|
||||
- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error
|
||||
in non prealloc header path (bnc#434333,LTC#48840)
|
||||
- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove
|
||||
unnecessary support ckeck in sysfs route6 (bnc#434333)
|
||||
- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid
|
||||
skb_under_panic for malformatted inbound data (bnc#434333)
|
||||
- patches.arch/s390-02-09-tape-lock.patch: tape device driver:
|
||||
improve locking (bnc#434333)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de
|
||||
|
||||
- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch:
|
||||
touch_mnt_namespace when the mount flags change (FATE#304218).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to 2.6.27.4-rc3:
|
||||
- fixed ath5k suspend/resume regression
|
||||
- fixed pvrusb2 so it actually works
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz
|
||||
|
||||
@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com
|
||||
- patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com
|
||||
Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com
|
||||
|
||||
- ocfs2 fixes / updates from 2.6.28 merge window
|
||||
- patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_uv_early_detect.patch: Delete hacks that were
|
||||
necessary while waiting for x2apic code. (bnc#429984).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 11:46:43 CET 2008 - tj@suse.de
|
||||
|
||||
Refresh the govault patch.
|
||||
|
||||
- patches.drivers/libata-add-waits-for-govault: libata: add
|
||||
waits for GoVault (bnc#246451).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de
|
||||
|
||||
- patches.fixes/kdb-oops-panic.diff:
|
||||
Fix NULL pointer dereference when regs == NULL (bnc#439007).
|
||||
- patches.fixes/hpwdt-kdump.diff:
|
||||
Fix kdump when using hpwdt (bnc#436786).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly and properly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de
|
||||
|
||||
- Fix the dependencies between the split kernel packages and KMPs
|
||||
(FATE 303631).
|
||||
- Fix for kernel paclages which are not split.
|
||||
- rpm/kernel-source.spec.in: Update list of scripts to include.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class
|
||||
file creation (bnc#434333)
|
||||
- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have
|
||||
been found (bnc#434333)
|
||||
- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware
|
||||
MAC-address for layer2 hsi-devices (bnc#434333)
|
||||
- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery
|
||||
fails (bnc#434333)
|
||||
- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error
|
||||
in non prealloc header path (bnc#434333,LTC#48840)
|
||||
- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove
|
||||
unnecessary support ckeck in sysfs route6 (bnc#434333)
|
||||
- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid
|
||||
skb_under_panic for malformatted inbound data (bnc#434333)
|
||||
- patches.arch/s390-02-09-tape-lock.patch: tape device driver:
|
||||
improve locking (bnc#434333)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de
|
||||
|
||||
- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch:
|
||||
touch_mnt_namespace when the mount flags change (FATE#304218).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to 2.6.27.4-rc3:
|
||||
- fixed ath5k suspend/resume regression
|
||||
- fixed pvrusb2 so it actually works
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz
|
||||
|
||||
@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com
|
||||
- patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com
|
||||
Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com
|
||||
|
||||
- ocfs2 fixes / updates from 2.6.28 merge window
|
||||
- patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch
|
||||
|
661
kernel-pae.spec
661
kernel-pae.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_uv_early_detect.patch: Delete hacks that were
|
||||
necessary while waiting for x2apic code. (bnc#429984).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 11:46:43 CET 2008 - tj@suse.de
|
||||
|
||||
Refresh the govault patch.
|
||||
|
||||
- patches.drivers/libata-add-waits-for-govault: libata: add
|
||||
waits for GoVault (bnc#246451).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de
|
||||
|
||||
- patches.fixes/kdb-oops-panic.diff:
|
||||
Fix NULL pointer dereference when regs == NULL (bnc#439007).
|
||||
- patches.fixes/hpwdt-kdump.diff:
|
||||
Fix kdump when using hpwdt (bnc#436786).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly and properly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de
|
||||
|
||||
- Fix the dependencies between the split kernel packages and KMPs
|
||||
(FATE 303631).
|
||||
- Fix for kernel paclages which are not split.
|
||||
- rpm/kernel-source.spec.in: Update list of scripts to include.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class
|
||||
file creation (bnc#434333)
|
||||
- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have
|
||||
been found (bnc#434333)
|
||||
- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware
|
||||
MAC-address for layer2 hsi-devices (bnc#434333)
|
||||
- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery
|
||||
fails (bnc#434333)
|
||||
- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error
|
||||
in non prealloc header path (bnc#434333,LTC#48840)
|
||||
- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove
|
||||
unnecessary support ckeck in sysfs route6 (bnc#434333)
|
||||
- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid
|
||||
skb_under_panic for malformatted inbound data (bnc#434333)
|
||||
- patches.arch/s390-02-09-tape-lock.patch: tape device driver:
|
||||
improve locking (bnc#434333)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de
|
||||
|
||||
- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch:
|
||||
touch_mnt_namespace when the mount flags change (FATE#304218).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to 2.6.27.4-rc3:
|
||||
- fixed ath5k suspend/resume regression
|
||||
- fixed pvrusb2 so it actually works
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz
|
||||
|
||||
@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com
|
||||
- patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com
|
||||
Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com
|
||||
|
||||
- ocfs2 fixes / updates from 2.6.28 merge window
|
||||
- patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_uv_early_detect.patch: Delete hacks that were
|
||||
necessary while waiting for x2apic code. (bnc#429984).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 11:46:43 CET 2008 - tj@suse.de
|
||||
|
||||
Refresh the govault patch.
|
||||
|
||||
- patches.drivers/libata-add-waits-for-govault: libata: add
|
||||
waits for GoVault (bnc#246451).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de
|
||||
|
||||
- patches.fixes/kdb-oops-panic.diff:
|
||||
Fix NULL pointer dereference when regs == NULL (bnc#439007).
|
||||
- patches.fixes/hpwdt-kdump.diff:
|
||||
Fix kdump when using hpwdt (bnc#436786).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly and properly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de
|
||||
|
||||
- Fix the dependencies between the split kernel packages and KMPs
|
||||
(FATE 303631).
|
||||
- Fix for kernel paclages which are not split.
|
||||
- rpm/kernel-source.spec.in: Update list of scripts to include.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class
|
||||
file creation (bnc#434333)
|
||||
- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have
|
||||
been found (bnc#434333)
|
||||
- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware
|
||||
MAC-address for layer2 hsi-devices (bnc#434333)
|
||||
- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery
|
||||
fails (bnc#434333)
|
||||
- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error
|
||||
in non prealloc header path (bnc#434333,LTC#48840)
|
||||
- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove
|
||||
unnecessary support ckeck in sysfs route6 (bnc#434333)
|
||||
- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid
|
||||
skb_under_panic for malformatted inbound data (bnc#434333)
|
||||
- patches.arch/s390-02-09-tape-lock.patch: tape device driver:
|
||||
improve locking (bnc#434333)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de
|
||||
|
||||
- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch:
|
||||
touch_mnt_namespace when the mount flags change (FATE#304218).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to 2.6.27.4-rc3:
|
||||
- fixed ath5k suspend/resume regression
|
||||
- fixed pvrusb2 so it actually works
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz
|
||||
|
||||
@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com
|
||||
- patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com
|
||||
Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com
|
||||
|
||||
- ocfs2 fixes / updates from 2.6.28 merge window
|
||||
- patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch
|
||||
|
661
kernel-ps3.spec
661
kernel-ps3.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_uv_early_detect.patch: Delete hacks that were
|
||||
necessary while waiting for x2apic code. (bnc#429984).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 11:46:43 CET 2008 - tj@suse.de
|
||||
|
||||
Refresh the govault patch.
|
||||
|
||||
- patches.drivers/libata-add-waits-for-govault: libata: add
|
||||
waits for GoVault (bnc#246451).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de
|
||||
|
||||
- patches.fixes/kdb-oops-panic.diff:
|
||||
Fix NULL pointer dereference when regs == NULL (bnc#439007).
|
||||
- patches.fixes/hpwdt-kdump.diff:
|
||||
Fix kdump when using hpwdt (bnc#436786).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly and properly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de
|
||||
|
||||
- Fix the dependencies between the split kernel packages and KMPs
|
||||
(FATE 303631).
|
||||
- Fix for kernel paclages which are not split.
|
||||
- rpm/kernel-source.spec.in: Update list of scripts to include.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class
|
||||
file creation (bnc#434333)
|
||||
- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have
|
||||
been found (bnc#434333)
|
||||
- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware
|
||||
MAC-address for layer2 hsi-devices (bnc#434333)
|
||||
- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery
|
||||
fails (bnc#434333)
|
||||
- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error
|
||||
in non prealloc header path (bnc#434333,LTC#48840)
|
||||
- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove
|
||||
unnecessary support ckeck in sysfs route6 (bnc#434333)
|
||||
- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid
|
||||
skb_under_panic for malformatted inbound data (bnc#434333)
|
||||
- patches.arch/s390-02-09-tape-lock.patch: tape device driver:
|
||||
improve locking (bnc#434333)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de
|
||||
|
||||
- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch:
|
||||
touch_mnt_namespace when the mount flags change (FATE#304218).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to 2.6.27.4-rc3:
|
||||
- fixed ath5k suspend/resume regression
|
||||
- fixed pvrusb2 so it actually works
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz
|
||||
|
||||
@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com
|
||||
- patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com
|
||||
Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com
|
||||
|
||||
- ocfs2 fixes / updates from 2.6.28 merge window
|
||||
- patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch
|
||||
|
661
kernel-rt.spec
661
kernel-rt.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_uv_early_detect.patch: Delete hacks that were
|
||||
necessary while waiting for x2apic code. (bnc#429984).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 11:46:43 CET 2008 - tj@suse.de
|
||||
|
||||
Refresh the govault patch.
|
||||
|
||||
- patches.drivers/libata-add-waits-for-govault: libata: add
|
||||
waits for GoVault (bnc#246451).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de
|
||||
|
||||
- patches.fixes/kdb-oops-panic.diff:
|
||||
Fix NULL pointer dereference when regs == NULL (bnc#439007).
|
||||
- patches.fixes/hpwdt-kdump.diff:
|
||||
Fix kdump when using hpwdt (bnc#436786).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly and properly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de
|
||||
|
||||
- Fix the dependencies between the split kernel packages and KMPs
|
||||
(FATE 303631).
|
||||
- Fix for kernel paclages which are not split.
|
||||
- rpm/kernel-source.spec.in: Update list of scripts to include.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class
|
||||
file creation (bnc#434333)
|
||||
- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have
|
||||
been found (bnc#434333)
|
||||
- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware
|
||||
MAC-address for layer2 hsi-devices (bnc#434333)
|
||||
- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery
|
||||
fails (bnc#434333)
|
||||
- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error
|
||||
in non prealloc header path (bnc#434333,LTC#48840)
|
||||
- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove
|
||||
unnecessary support ckeck in sysfs route6 (bnc#434333)
|
||||
- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid
|
||||
skb_under_panic for malformatted inbound data (bnc#434333)
|
||||
- patches.arch/s390-02-09-tape-lock.patch: tape device driver:
|
||||
improve locking (bnc#434333)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de
|
||||
|
||||
- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch:
|
||||
touch_mnt_namespace when the mount flags change (FATE#304218).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to 2.6.27.4-rc3:
|
||||
- fixed ath5k suspend/resume regression
|
||||
- fixed pvrusb2 so it actually works
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz
|
||||
|
||||
@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com
|
||||
- patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com
|
||||
Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com
|
||||
|
||||
- ocfs2 fixes / updates from 2.6.28 merge window
|
||||
- patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_uv_early_detect.patch: Delete hacks that were
|
||||
necessary while waiting for x2apic code. (bnc#429984).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 11:46:43 CET 2008 - tj@suse.de
|
||||
|
||||
Refresh the govault patch.
|
||||
|
||||
- patches.drivers/libata-add-waits-for-govault: libata: add
|
||||
waits for GoVault (bnc#246451).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de
|
||||
|
||||
- patches.fixes/kdb-oops-panic.diff:
|
||||
Fix NULL pointer dereference when regs == NULL (bnc#439007).
|
||||
- patches.fixes/hpwdt-kdump.diff:
|
||||
Fix kdump when using hpwdt (bnc#436786).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly and properly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de
|
||||
|
||||
- Fix the dependencies between the split kernel packages and KMPs
|
||||
(FATE 303631).
|
||||
- Fix for kernel paclages which are not split.
|
||||
- rpm/kernel-source.spec.in: Update list of scripts to include.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class
|
||||
file creation (bnc#434333)
|
||||
- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have
|
||||
been found (bnc#434333)
|
||||
- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware
|
||||
MAC-address for layer2 hsi-devices (bnc#434333)
|
||||
- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery
|
||||
fails (bnc#434333)
|
||||
- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error
|
||||
in non prealloc header path (bnc#434333,LTC#48840)
|
||||
- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove
|
||||
unnecessary support ckeck in sysfs route6 (bnc#434333)
|
||||
- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid
|
||||
skb_under_panic for malformatted inbound data (bnc#434333)
|
||||
- patches.arch/s390-02-09-tape-lock.patch: tape device driver:
|
||||
improve locking (bnc#434333)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de
|
||||
|
||||
- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch:
|
||||
touch_mnt_namespace when the mount flags change (FATE#304218).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to 2.6.27.4-rc3:
|
||||
- fixed ath5k suspend/resume regression
|
||||
- fixed pvrusb2 so it actually works
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz
|
||||
|
||||
@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com
|
||||
- patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com
|
||||
Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com
|
||||
|
||||
- ocfs2 fixes / updates from 2.6.28 merge window
|
||||
- patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch
|
||||
|
661
kernel-s390.spec
661
kernel-s390.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_uv_early_detect.patch: Delete hacks that were
|
||||
necessary while waiting for x2apic code. (bnc#429984).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 11:46:43 CET 2008 - tj@suse.de
|
||||
|
||||
Refresh the govault patch.
|
||||
|
||||
- patches.drivers/libata-add-waits-for-govault: libata: add
|
||||
waits for GoVault (bnc#246451).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de
|
||||
|
||||
- patches.fixes/kdb-oops-panic.diff:
|
||||
Fix NULL pointer dereference when regs == NULL (bnc#439007).
|
||||
- patches.fixes/hpwdt-kdump.diff:
|
||||
Fix kdump when using hpwdt (bnc#436786).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly and properly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de
|
||||
|
||||
- Fix the dependencies between the split kernel packages and KMPs
|
||||
(FATE 303631).
|
||||
- Fix for kernel paclages which are not split.
|
||||
- rpm/kernel-source.spec.in: Update list of scripts to include.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class
|
||||
file creation (bnc#434333)
|
||||
- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have
|
||||
been found (bnc#434333)
|
||||
- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware
|
||||
MAC-address for layer2 hsi-devices (bnc#434333)
|
||||
- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery
|
||||
fails (bnc#434333)
|
||||
- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error
|
||||
in non prealloc header path (bnc#434333,LTC#48840)
|
||||
- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove
|
||||
unnecessary support ckeck in sysfs route6 (bnc#434333)
|
||||
- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid
|
||||
skb_under_panic for malformatted inbound data (bnc#434333)
|
||||
- patches.arch/s390-02-09-tape-lock.patch: tape device driver:
|
||||
improve locking (bnc#434333)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de
|
||||
|
||||
- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch:
|
||||
touch_mnt_namespace when the mount flags change (FATE#304218).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to 2.6.27.4-rc3:
|
||||
- fixed ath5k suspend/resume regression
|
||||
- fixed pvrusb2 so it actually works
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz
|
||||
|
||||
@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com
|
||||
- patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com
|
||||
Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com
|
||||
|
||||
- ocfs2 fixes / updates from 2.6.28 merge window
|
||||
- patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_uv_early_detect.patch: Delete hacks that were
|
||||
necessary while waiting for x2apic code. (bnc#429984).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 11:46:43 CET 2008 - tj@suse.de
|
||||
|
||||
Refresh the govault patch.
|
||||
|
||||
- patches.drivers/libata-add-waits-for-govault: libata: add
|
||||
waits for GoVault (bnc#246451).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de
|
||||
|
||||
- patches.fixes/kdb-oops-panic.diff:
|
||||
Fix NULL pointer dereference when regs == NULL (bnc#439007).
|
||||
- patches.fixes/hpwdt-kdump.diff:
|
||||
Fix kdump when using hpwdt (bnc#436786).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly and properly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de
|
||||
|
||||
- Fix the dependencies between the split kernel packages and KMPs
|
||||
(FATE 303631).
|
||||
- Fix for kernel paclages which are not split.
|
||||
- rpm/kernel-source.spec.in: Update list of scripts to include.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class
|
||||
file creation (bnc#434333)
|
||||
- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have
|
||||
been found (bnc#434333)
|
||||
- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware
|
||||
MAC-address for layer2 hsi-devices (bnc#434333)
|
||||
- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery
|
||||
fails (bnc#434333)
|
||||
- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error
|
||||
in non prealloc header path (bnc#434333,LTC#48840)
|
||||
- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove
|
||||
unnecessary support ckeck in sysfs route6 (bnc#434333)
|
||||
- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid
|
||||
skb_under_panic for malformatted inbound data (bnc#434333)
|
||||
- patches.arch/s390-02-09-tape-lock.patch: tape device driver:
|
||||
improve locking (bnc#434333)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de
|
||||
|
||||
- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch:
|
||||
touch_mnt_namespace when the mount flags change (FATE#304218).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to 2.6.27.4-rc3:
|
||||
- fixed ath5k suspend/resume regression
|
||||
- fixed pvrusb2 so it actually works
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz
|
||||
|
||||
@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com
|
||||
- patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com
|
||||
Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com
|
||||
|
||||
- ocfs2 fixes / updates from 2.6.28 merge window
|
||||
- patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_uv_early_detect.patch: Delete hacks that were
|
||||
necessary while waiting for x2apic code. (bnc#429984).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 11:46:43 CET 2008 - tj@suse.de
|
||||
|
||||
Refresh the govault patch.
|
||||
|
||||
- patches.drivers/libata-add-waits-for-govault: libata: add
|
||||
waits for GoVault (bnc#246451).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de
|
||||
|
||||
- patches.fixes/kdb-oops-panic.diff:
|
||||
Fix NULL pointer dereference when regs == NULL (bnc#439007).
|
||||
- patches.fixes/hpwdt-kdump.diff:
|
||||
Fix kdump when using hpwdt (bnc#436786).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly and properly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de
|
||||
|
||||
- Fix the dependencies between the split kernel packages and KMPs
|
||||
(FATE 303631).
|
||||
- Fix for kernel paclages which are not split.
|
||||
- rpm/kernel-source.spec.in: Update list of scripts to include.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class
|
||||
file creation (bnc#434333)
|
||||
- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have
|
||||
been found (bnc#434333)
|
||||
- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware
|
||||
MAC-address for layer2 hsi-devices (bnc#434333)
|
||||
- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery
|
||||
fails (bnc#434333)
|
||||
- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error
|
||||
in non prealloc header path (bnc#434333,LTC#48840)
|
||||
- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove
|
||||
unnecessary support ckeck in sysfs route6 (bnc#434333)
|
||||
- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid
|
||||
skb_under_panic for malformatted inbound data (bnc#434333)
|
||||
- patches.arch/s390-02-09-tape-lock.patch: tape device driver:
|
||||
improve locking (bnc#434333)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de
|
||||
|
||||
- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch:
|
||||
touch_mnt_namespace when the mount flags change (FATE#304218).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to 2.6.27.4-rc3:
|
||||
- fixed ath5k suspend/resume regression
|
||||
- fixed pvrusb2 so it actually works
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz
|
||||
|
||||
@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com
|
||||
- patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com
|
||||
Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com
|
||||
|
||||
- ocfs2 fixes / updates from 2.6.28 merge window
|
||||
- patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_uv_early_detect.patch: Delete hacks that were
|
||||
necessary while waiting for x2apic code. (bnc#429984).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 11:46:43 CET 2008 - tj@suse.de
|
||||
|
||||
Refresh the govault patch.
|
||||
|
||||
- patches.drivers/libata-add-waits-for-govault: libata: add
|
||||
waits for GoVault (bnc#246451).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de
|
||||
|
||||
- patches.fixes/kdb-oops-panic.diff:
|
||||
Fix NULL pointer dereference when regs == NULL (bnc#439007).
|
||||
- patches.fixes/hpwdt-kdump.diff:
|
||||
Fix kdump when using hpwdt (bnc#436786).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly and properly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de
|
||||
|
||||
- Fix the dependencies between the split kernel packages and KMPs
|
||||
(FATE 303631).
|
||||
- Fix for kernel paclages which are not split.
|
||||
- rpm/kernel-source.spec.in: Update list of scripts to include.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class
|
||||
file creation (bnc#434333)
|
||||
- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have
|
||||
been found (bnc#434333)
|
||||
- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware
|
||||
MAC-address for layer2 hsi-devices (bnc#434333)
|
||||
- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery
|
||||
fails (bnc#434333)
|
||||
- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error
|
||||
in non prealloc header path (bnc#434333,LTC#48840)
|
||||
- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove
|
||||
unnecessary support ckeck in sysfs route6 (bnc#434333)
|
||||
- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid
|
||||
skb_under_panic for malformatted inbound data (bnc#434333)
|
||||
- patches.arch/s390-02-09-tape-lock.patch: tape device driver:
|
||||
improve locking (bnc#434333)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de
|
||||
|
||||
- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch:
|
||||
touch_mnt_namespace when the mount flags change (FATE#304218).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to 2.6.27.4-rc3:
|
||||
- fixed ath5k suspend/resume regression
|
||||
- fixed pvrusb2 so it actually works
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz
|
||||
|
||||
@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com
|
||||
- patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com
|
||||
Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com
|
||||
|
||||
- ocfs2 fixes / updates from 2.6.28 merge window
|
||||
- patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch
|
||||
|
587
kernel-syms.spec
587
kernel-syms.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_uv_early_detect.patch: Delete hacks that were
|
||||
necessary while waiting for x2apic code. (bnc#429984).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 11:46:43 CET 2008 - tj@suse.de
|
||||
|
||||
Refresh the govault patch.
|
||||
|
||||
- patches.drivers/libata-add-waits-for-govault: libata: add
|
||||
waits for GoVault (bnc#246451).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de
|
||||
|
||||
- patches.fixes/kdb-oops-panic.diff:
|
||||
Fix NULL pointer dereference when regs == NULL (bnc#439007).
|
||||
- patches.fixes/hpwdt-kdump.diff:
|
||||
Fix kdump when using hpwdt (bnc#436786).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly and properly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de
|
||||
|
||||
- Fix the dependencies between the split kernel packages and KMPs
|
||||
(FATE 303631).
|
||||
- Fix for kernel paclages which are not split.
|
||||
- rpm/kernel-source.spec.in: Update list of scripts to include.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class
|
||||
file creation (bnc#434333)
|
||||
- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have
|
||||
been found (bnc#434333)
|
||||
- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware
|
||||
MAC-address for layer2 hsi-devices (bnc#434333)
|
||||
- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery
|
||||
fails (bnc#434333)
|
||||
- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error
|
||||
in non prealloc header path (bnc#434333,LTC#48840)
|
||||
- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove
|
||||
unnecessary support ckeck in sysfs route6 (bnc#434333)
|
||||
- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid
|
||||
skb_under_panic for malformatted inbound data (bnc#434333)
|
||||
- patches.arch/s390-02-09-tape-lock.patch: tape device driver:
|
||||
improve locking (bnc#434333)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de
|
||||
|
||||
- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch:
|
||||
touch_mnt_namespace when the mount flags change (FATE#304218).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to 2.6.27.4-rc3:
|
||||
- fixed ath5k suspend/resume regression
|
||||
- fixed pvrusb2 so it actually works
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz
|
||||
|
||||
@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com
|
||||
- patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com
|
||||
Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com
|
||||
|
||||
- ocfs2 fixes / updates from 2.6.28 merge window
|
||||
- patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_uv_early_detect.patch: Delete hacks that were
|
||||
necessary while waiting for x2apic code. (bnc#429984).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 11:46:43 CET 2008 - tj@suse.de
|
||||
|
||||
Refresh the govault patch.
|
||||
|
||||
- patches.drivers/libata-add-waits-for-govault: libata: add
|
||||
waits for GoVault (bnc#246451).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de
|
||||
|
||||
- patches.fixes/kdb-oops-panic.diff:
|
||||
Fix NULL pointer dereference when regs == NULL (bnc#439007).
|
||||
- patches.fixes/hpwdt-kdump.diff:
|
||||
Fix kdump when using hpwdt (bnc#436786).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly and properly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de
|
||||
|
||||
- Fix the dependencies between the split kernel packages and KMPs
|
||||
(FATE 303631).
|
||||
- Fix for kernel paclages which are not split.
|
||||
- rpm/kernel-source.spec.in: Update list of scripts to include.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class
|
||||
file creation (bnc#434333)
|
||||
- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have
|
||||
been found (bnc#434333)
|
||||
- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware
|
||||
MAC-address for layer2 hsi-devices (bnc#434333)
|
||||
- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery
|
||||
fails (bnc#434333)
|
||||
- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error
|
||||
in non prealloc header path (bnc#434333,LTC#48840)
|
||||
- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove
|
||||
unnecessary support ckeck in sysfs route6 (bnc#434333)
|
||||
- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid
|
||||
skb_under_panic for malformatted inbound data (bnc#434333)
|
||||
- patches.arch/s390-02-09-tape-lock.patch: tape device driver:
|
||||
improve locking (bnc#434333)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de
|
||||
|
||||
- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch:
|
||||
touch_mnt_namespace when the mount flags change (FATE#304218).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to 2.6.27.4-rc3:
|
||||
- fixed ath5k suspend/resume regression
|
||||
- fixed pvrusb2 so it actually works
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz
|
||||
|
||||
@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com
|
||||
- patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com
|
||||
Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com
|
||||
|
||||
- ocfs2 fixes / updates from 2.6.28 merge window
|
||||
- patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de
|
||||
|
||||
- patches.arch/x86_uv_early_detect.patch: Delete hacks that were
|
||||
necessary while waiting for x2apic code. (bnc#429984).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 11:46:43 CET 2008 - tj@suse.de
|
||||
|
||||
Refresh the govault patch.
|
||||
|
||||
- patches.drivers/libata-add-waits-for-govault: libata: add
|
||||
waits for GoVault (bnc#246451).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de
|
||||
|
||||
- patches.fixes/kdb-oops-panic.diff:
|
||||
Fix NULL pointer dereference when regs == NULL (bnc#439007).
|
||||
- patches.fixes/hpwdt-kdump.diff:
|
||||
Fix kdump when using hpwdt (bnc#436786).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de
|
||||
|
||||
- refresh patches to apply cleanly and properly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de
|
||||
|
||||
- Update to 2.6.27.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de
|
||||
|
||||
- Fix the dependencies between the split kernel packages and KMPs
|
||||
(FATE 303631).
|
||||
- Fix for kernel paclages which are not split.
|
||||
- rpm/kernel-source.spec.in: Update list of scripts to include.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de
|
||||
|
||||
- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class
|
||||
file creation (bnc#434333)
|
||||
- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have
|
||||
been found (bnc#434333)
|
||||
- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware
|
||||
MAC-address for layer2 hsi-devices (bnc#434333)
|
||||
- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery
|
||||
fails (bnc#434333)
|
||||
- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error
|
||||
in non prealloc header path (bnc#434333,LTC#48840)
|
||||
- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove
|
||||
unnecessary support ckeck in sysfs route6 (bnc#434333)
|
||||
- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid
|
||||
skb_under_panic for malformatted inbound data (bnc#434333)
|
||||
- patches.arch/s390-02-09-tape-lock.patch: tape device driver:
|
||||
improve locking (bnc#434333)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de
|
||||
|
||||
- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch:
|
||||
touch_mnt_namespace when the mount flags change (FATE#304218).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de
|
||||
|
||||
- Updated to 2.6.27.4-rc3:
|
||||
- fixed ath5k suspend/resume regression
|
||||
- fixed pvrusb2 so it actually works
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz
|
||||
|
||||
@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com
|
||||
- patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com
|
||||
Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com
|
||||
|
||||
- ocfs2 fixes / updates from 2.6.28 merge window
|
||||
- patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch
|
||||
|
661
kernel-xen.spec
661
kernel-xen.spec
File diff suppressed because it is too large
Load Diff
57
list-exported-symbols
Normal file
57
list-exported-symbols
Normal file
@ -0,0 +1,57 @@
|
||||
#! /bin/sh
|
||||
|
||||
# Generate a Module.symvers-like list of symbols a module exports.
|
||||
|
||||
usage() {
|
||||
echo "USAGE: ${0##*/} [-n name] objfile" >&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
options=`getopt -o n: -- "$@"`
|
||||
[ $? -eq 0 ] || usage
|
||||
|
||||
eval set -- "$options"
|
||||
while :; do
|
||||
case "$1" in
|
||||
-n)
|
||||
opt_n=$2
|
||||
shift
|
||||
;;
|
||||
--)
|
||||
shift
|
||||
break
|
||||
;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
[ $# -eq 1 ] || usage
|
||||
|
||||
if [ -z "$opt_n" ]; then
|
||||
opt_n=${1%.ko}
|
||||
opt_n=${opt_n#*/kernel/}
|
||||
fi
|
||||
|
||||
objdump -t "$1" | awk '
|
||||
BEGIN { known_types["__ksymtab"] = "EXPORT_SYMBOL"
|
||||
known_types["__ksymtab_unused"] = "EXPORT_UNUSED_SYMBOL"
|
||||
known_types["__ksymtab_gpl"] = "EXPORT_SYMBOL_GPL"
|
||||
known_types["__ksymtab_unused_gpl"] = "EXPORT_UNUSED_SYMBOL_GPL"
|
||||
known_types["__ksymtab_gpl_future"] = "EXPORT_SYMBOL_GPL_FUTURE"
|
||||
}
|
||||
{ if (NF < 3)
|
||||
next
|
||||
if (substr($0, index($0, " ") + 6, 1) == "d")
|
||||
next # debug symbol
|
||||
if (gsub(/^__crc_/, "", $NF))
|
||||
crcs[$NF] = gensub(/^00000000(.+)/, "\\1", "", $1)
|
||||
else if (gsub(/^__ksymtab_/, "", $NF) &&
|
||||
($(NF-2) in known_types))
|
||||
types[$NF] = known_types[$(NF-2)]
|
||||
}
|
||||
END { for (sym in types) {
|
||||
crc = (sym in crcs ? crcs[sym] : "00000000")
|
||||
print "0x" crc "\t" sym "\t" module "\t" types[sym]
|
||||
}
|
||||
}
|
||||
' module="$opt_n"
|
111
make-symsets
111
make-symsets
@ -1,111 +0,0 @@
|
||||
#! /bin/bash
|
||||
|
||||
unset LANG ${!LC_*}
|
||||
|
||||
# Usage: make-symsets symsets.tar.gz [old-symsets.tar.gz]
|
||||
# < symvers.gz
|
||||
#
|
||||
# symsets.tar.gz
|
||||
# Create this symbol set tarball.
|
||||
#
|
||||
# old-symsets.tar.gz
|
||||
# Reuse all possible symbol sets from this tarball.
|
||||
|
||||
tarball=$1
|
||||
old_tarball=$2
|
||||
|
||||
# Classify all the symbols by the directory they live in
|
||||
unset ${!class_*}
|
||||
while read class ignore line; do
|
||||
class=class_${class//[^a-zA-Z0-9_]/_}
|
||||
eval "$class[\${#$class[@]}]=\"$line\""
|
||||
if [ $ignore -gt 0 ]; then
|
||||
eval "ignore_$class=1"
|
||||
fi
|
||||
done < <(
|
||||
awk '
|
||||
BEGIN { FS="\t" ; OFS="\t" }
|
||||
{ class=$3
|
||||
sub(/\/[^/]+$/, "", class)
|
||||
ignore=sub(/.*=>/, "", $1)
|
||||
print class, ignore, $0
|
||||
}
|
||||
'
|
||||
)
|
||||
|
||||
tmpdir=$(mktemp -t -d ${0##*/}.XXXXXX)
|
||||
trap "rm -rf $tmpdir" EXIT
|
||||
|
||||
basename=$(basename ${tarball:-.} .tar.gz)
|
||||
|
||||
# Save all the new sets, computer and output their hashes
|
||||
newdir=$tmpdir/new/$basename
|
||||
mkdir -p $newdir
|
||||
for class in ${!class_*} ; do
|
||||
class=${class#class_}
|
||||
eval "printf \"%s\\n\" \"\${class_$class[@]}\"" \
|
||||
| sort -k2 \
|
||||
> $newdir/tmp
|
||||
set -- $(md5sum $newdir/tmp) ; set -- ${1:0:16}
|
||||
mv $newdir/tmp $newdir/$class.$1
|
||||
#echo "Provides: kernel($class) = $1"
|
||||
done
|
||||
|
||||
shopt -s nullglob
|
||||
|
||||
if [ -n "$old_tarball" ]; then
|
||||
# Reuse all sets of symbols from the old tarball that are
|
||||
# still the same.
|
||||
old_basename=$(basename $old_tarball .tar.gz)
|
||||
|
||||
mkdir -p $tmpdir/old
|
||||
zcat $old_tarball \
|
||||
| tar xf - -C $tmpdir/old
|
||||
set -- $tmpdir/old/*
|
||||
olddir=$1
|
||||
if [ ! -d $olddir ]; then
|
||||
echo "$old_tarball does not contain directory $old_basename"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
for oldset in $olddir/* ; do
|
||||
[ -e $newdir/${oldset#$olddir/} ] && continue
|
||||
class=${oldset##*/} ; class=${class%.*}
|
||||
set -- $newdir/$class.*
|
||||
[ $# -eq 1 ] || continue
|
||||
newset=$1
|
||||
# '*' doesn't occur in either file.
|
||||
missing="$(join -t '*' -j 1 -v 1 <(sort "$oldset") <(sort "$newset"))"
|
||||
if [ -z "$missing" ]; then
|
||||
keep_oldset[${#keep_oldset[@]}]=$oldset
|
||||
#echo "Provides: kernel($class) = ${oldset##*.} (old)"
|
||||
else
|
||||
set -- $(echo "$missing" | awk '{ print $2 "(" $1 ")" }')
|
||||
ignore=ignore_class_$class
|
||||
if [ -n "${!ignore}" ]; then
|
||||
ignore="; ignoring"
|
||||
else
|
||||
ignore=
|
||||
status=1
|
||||
fi
|
||||
echo "No longer provided: kernel($class) = ${oldset##*.} (missing/changed: $@$ignore)" >&2
|
||||
fi
|
||||
done
|
||||
|
||||
if [ ${#keep_oldset[@]} -gt 0 ]; then
|
||||
mv "${keep_oldset[@]}" $newdir/
|
||||
fi
|
||||
else
|
||||
echo "No longer provided: previous kernel(...) symbols that may still be" \
|
||||
"compatible" >&2
|
||||
fi
|
||||
|
||||
# Store the generated sets in $tarball
|
||||
tar cf - -C $tmpdir/new $basename \
|
||||
| gzip -9 \
|
||||
> $tarball \
|
||||
|| exit 1
|
||||
|
||||
exit $status
|
||||
|
||||
# vim:shiftwidth=4 softtabstop=4
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fcf2a5f061a1e08547bdb3d87d1fc6fe4239ddd8b80cf60fa589705feadd1b6d
|
||||
size 128
|
||||
oid sha256:776773079e2384550a47de4f3290bf9214902c0713840dbc66f278ef3f0e538b
|
||||
size 124
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:00b6af96e337832dd1ea734ce577cd29648d35100b0f9c7d9d029cad79c031f2
|
||||
size 59076
|
||||
oid sha256:1f842e9b1c002ad3b85598d3ff196a2b13da3fbfdcc798af4696884448883306
|
||||
size 58871
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:005223e6fb3828cf93650a351bc43269dea00a52b40ea086bf090fcd032b5f76
|
||||
size 201935
|
||||
oid sha256:1792daf9d2421f04dea17b3d989c5cfa6f6f295ae457f6440dec197e6a019960
|
||||
size 206168
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d932c1d8141dfd3fafecd224bf1ff2995d9709c3390fa0407afba65ea11560c6
|
||||
size 1391875
|
||||
oid sha256:b21435e9db98990079d476428a39b1a81177b48e8e0da5085b2d57edfca62192
|
||||
size 1394707
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8f0a308fabf4dec22f07d2b23bdbbb1e450ceac3573cb20117b4e9b56f14e344
|
||||
size 104245
|
||||
oid sha256:a4a69fe23edcff95f1a379ead1926146483c2254a0b51f6559a799f9a983d4a3
|
||||
size 104402
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:62cd10cb0dc6282742c2fd530d5615e1d9b303fe8471cc36677b45a0a6f90482
|
||||
size 27792
|
||||
oid sha256:a5d652f32cf9b812ffba06564f265cdaaec0b57983b4756c14505710f4e0983d
|
||||
size 27939
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:28e0397870af76280f57d3218a465df2f4bd5dc310548390eabbdc7d5248252b
|
||||
size 1616
|
||||
oid sha256:2f41a715f97942579ffbe54175c368a86eee764b2ce2a88370d2bc6cb8dc55ca
|
||||
size 1613
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f6a7876303336ac0a49b9cc933ee727f941b69542a5655349742bb8bf9a53cb6
|
||||
size 371717
|
||||
oid sha256:04d2bfc6b9c339e53727661c417aff04066deea2037fb50c834a9f706dafbc35
|
||||
size 370821
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8e0f64fdb0c632b33a05472aebc8ab5a443fbd1d3e51c0fb32c07cfd521ef584
|
||||
size 1273633
|
||||
oid sha256:57792a56cd07a9c60b199e4c4a32fbbedc27b6b0641c0a2e13e3958ae2e6ff02
|
||||
size 1272838
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2b46c749be31cd9be0d9ae9bd20ea084a836a8c5917847c836ee6dab51dc4430
|
||||
size 57800
|
||||
oid sha256:7049430063bedb4344f8fa7007b40e0a4db7939b0e1bbf3763e4fd5f6699a8ad
|
||||
size 57840
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3cac1f98a8aa39f4f41d55e9cc551053c71be28f80a4c04c94104f7d17217035
|
||||
size 11055
|
||||
oid sha256:f06a71eabfc02bbdb249f64b53d4c91851b7287c759c40a88cfd64cd3d17cf12
|
||||
size 11029
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6ef647cc27f8881969ce18e8607a3149c0508f3b5308e29b8687b58b78ce89e1
|
||||
size 1468390
|
||||
oid sha256:15852f4a2bb03e01740ab998cf2d245358ce73d625fa905ce3fe430423dc7cd4
|
||||
size 1467563
|
||||
|
26
series.conf
26
series.conf
@ -30,7 +30,7 @@
|
||||
patches.kernel.org/patch-2.6.27.1
|
||||
patches.kernel.org/patch-2.6.27.1-2
|
||||
patches.kernel.org/patch-2.6.27.2-3
|
||||
patches.kernel.org/patch-2.6.27.4-rc2
|
||||
patches.kernel.org/patch-2.6.27.3-4
|
||||
|
||||
########################################################
|
||||
# Build fixes that apply to the vanilla kernel too.
|
||||
@ -247,6 +247,14 @@
|
||||
patches.arch/s390-01-06-zfcp-cleanup-v2.patch
|
||||
|
||||
patches.arch/s390-02-01-xpram.patch
|
||||
patches.arch/s390-02-02-smp-sysdev.patch
|
||||
patches.arch/s390-02-03-zfcp.patch
|
||||
patches.arch/s390-02-04-qeth-mac.patch
|
||||
patches.arch/s390-02-05-qeth-recovery.patch
|
||||
patches.arch/s390-02-06-qeth-offset.patch
|
||||
patches.arch/s390-02-07-qeth-ipv6check.patch
|
||||
patches.arch/s390-02-08-qeth-panic.patch
|
||||
patches.arch/s390-02-09-tape-lock.patch
|
||||
|
||||
########################################################
|
||||
# VM/FS patches
|
||||
@ -632,6 +640,10 @@
|
||||
patches.drivers/sgi-uv-led
|
||||
patches.drivers/sgi-ioc4-request-submodules
|
||||
|
||||
# This one is more related to x2APIC patches, but adjusted by SGI to cleanly
|
||||
# patch on-top of sgi-uv-led -> I don't do the extra work and keep it here
|
||||
patches.arch/x86_uv_early_detect.patch
|
||||
|
||||
patches.fixes/cxgb3_fix_race_in_EEH
|
||||
|
||||
# Add support for Montevina hardware; series mainlined 2.6.26
|
||||
@ -645,7 +657,7 @@
|
||||
########################################################
|
||||
# Storage
|
||||
########################################################
|
||||
+2.6.26-teheo patches.drivers/libata-add-waits-for-govault
|
||||
patches.drivers/libata-add-waits-for-govault
|
||||
patches.drivers/libata-unlock-hpa-by-default
|
||||
patches.drivers/libata-prefer-over-ide
|
||||
|
||||
@ -787,6 +799,7 @@
|
||||
########################################################
|
||||
patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch
|
||||
patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch
|
||||
patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch
|
||||
|
||||
|
||||
##########################################################
|
||||
@ -863,7 +876,6 @@
|
||||
patches.suse/kdb-x86
|
||||
patches.suse/kdb-ia64
|
||||
patches.suse/kdb-serial-8250
|
||||
patches.fixes/kdb-kdump.diff
|
||||
|
||||
########################################################
|
||||
# Other patches for debugging
|
||||
@ -873,9 +885,13 @@
|
||||
patches.suse/no-frame-pointer-select
|
||||
patches.arch/x86_64-unwind-annotations
|
||||
|
||||
# dump_after_notifier_table sysctl for Teradata
|
||||
# and others (bnc#436678)
|
||||
########################################################
|
||||
# Kdump
|
||||
########################################################
|
||||
patches.fixes/kdb-kdump.diff
|
||||
patches.fixes/kdb-oops-panic.diff
|
||||
patches.suse/kdump-dump_after_notifier.patch
|
||||
patches.fixes/hpwdt-kdump.diff
|
||||
|
||||
########################################################
|
||||
# cgroups
|
||||
|
40
split-into-symsets
Normal file
40
split-into-symsets
Normal file
@ -0,0 +1,40 @@
|
||||
#! /bin/bash
|
||||
|
||||
usage() {
|
||||
echo "Usage: ${0##*/} {dir} < Module.symvers"
|
||||
exit $1
|
||||
}
|
||||
|
||||
[ $# -eq 1 ] || usage 1
|
||||
dir=$1
|
||||
|
||||
tmpdir=$(mktemp -dt ${0##*/}.XXXXXXXXXX)
|
||||
trap "rm -rf $tmpdir" EXIT
|
||||
|
||||
split_into_sets() {
|
||||
local dir=$1
|
||||
|
||||
awk '
|
||||
{ set = gensub(/\/[^\/]+$/, "", "", $3)
|
||||
sets[set] = sets[set] $0 "\n"
|
||||
}
|
||||
END {
|
||||
for (set in sets) {
|
||||
filename = gensub(/\//, "_", "g", set)
|
||||
printf "%s", sets[set] > dir "/" filename
|
||||
}
|
||||
}
|
||||
' dir="$dir"
|
||||
}
|
||||
|
||||
sort -k2 \
|
||||
| split_into_sets "$tmpdir"
|
||||
|
||||
shopt -s nullglob
|
||||
set -- $tmpdir/*
|
||||
if [ $# -ne 0 ]; then
|
||||
md5sum "$@" \
|
||||
| while read md5sum set; do
|
||||
cp $set $dir/${set##*/}.${md5sum:0:16}
|
||||
done
|
||||
fi
|
Loading…
Reference in New Issue
Block a user