Accepting request 62459 from Kernel:openSUSE-11.4
Accepted submit request 62459 from user michal-m OBS-URL: https://build.opensuse.org/request/show/62459 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kernel-source?expand=0&rev=130
This commit is contained in:
parent
cc632ad172
commit
8e58bbcb26
@ -1,10 +0,0 @@
|
||||
#!/bin/bash
|
||||
# Copyright (c) 2005 SUSE Linux Products GmbH, Germany. All rights reserved.
|
||||
|
||||
if grep -q "Linux version 2\.[0-5]\." /proc/version; then
|
||||
echo "FATAL: kernel too old, need kernel >= 2.6 for this package"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:41d04496c478e8d3d29763372c6c7049cc1248270eaf5d5e3393f772dec1f00e
|
||||
size 224678
|
||||
oid sha256:1fa63861931f798dada5989586424f50c61ca04f9b2c6c5b060b6b2560f86415
|
||||
size 224632
|
||||
|
@ -1,165 +0,0 @@
|
||||
#! /bin/bash
|
||||
|
||||
LC_ALL=POSIX
|
||||
|
||||
usage() {
|
||||
cat <<EOF
|
||||
Usage: ${0##*/} [-i module] [-x module] [-Nv] {module|rpm} ...
|
||||
|
||||
-i Include the specified modules (glob expression).
|
||||
|
||||
-x Exclude the specified modules (glob expression).
|
||||
|
||||
-N Don't try to combine modalias tags that only differ in one character.
|
||||
|
||||
-v Verbose: report which modules define which aliases.
|
||||
EOF
|
||||
exit $1
|
||||
}
|
||||
|
||||
ARGS=("$@")
|
||||
|
||||
options=`getopt -o i:x:vNh -- "$@"`
|
||||
|
||||
if [ $? -ne 0 ]
|
||||
then
|
||||
usage 2
|
||||
fi
|
||||
|
||||
eval set -- "$options"
|
||||
|
||||
opt_combine=1
|
||||
while :; do
|
||||
case "$1" in
|
||||
-i)
|
||||
include="$include ${2%.ko}"
|
||||
shift 2
|
||||
;;
|
||||
-x)
|
||||
exclude="$exclude ${2%.ko}"
|
||||
shift 2
|
||||
;;
|
||||
-v)
|
||||
opt_verbose=1
|
||||
shift ;;
|
||||
-N)
|
||||
opt_combine=
|
||||
shift ;;
|
||||
-h)
|
||||
usage 0
|
||||
;;
|
||||
--)
|
||||
shift
|
||||
break
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
process_module() {
|
||||
declare module=$1 base=${1##*/} aliases
|
||||
|
||||
if [ -n "$include" ]; then
|
||||
included=
|
||||
for x in $include; do
|
||||
eval "case \"\${base%.ko}\" in (${x%.ko}) included=1;; esac"
|
||||
done
|
||||
else
|
||||
included=1
|
||||
fi
|
||||
for x in $exclude; do
|
||||
eval "case \"\${base%.ko}\" in (${x%.ko}) included=;; esac"
|
||||
done
|
||||
[ -n "$included" ] || return
|
||||
|
||||
aliases="$(/sbin/modinfo -F alias "$module" \
|
||||
| sed -nre 's@^.+:.+$@Supplements: modalias(&)@p')"
|
||||
if [ -n "$aliases" ]; then
|
||||
eval "processed_module_${base//[^a-zA-Z0-9_]/_}=$base"
|
||||
echo "$aliases" \
|
||||
| if [ -n "$opt_verbose" ]; then
|
||||
sed -e "s@\$@ # $base@"
|
||||
else
|
||||
cat
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
print_modaliases() {
|
||||
declare class=$1 variants=$2 pos=$3
|
||||
if [ -n "$variants" ]; then
|
||||
echo "${class:0:pos}[$variants]${class:pos+1}"
|
||||
else
|
||||
[ -z "$class" ] || echo "$class"
|
||||
fi
|
||||
}
|
||||
|
||||
combine_modaliases() {
|
||||
declare tag class variants pos n
|
||||
read class
|
||||
while read tag; do
|
||||
for ((n=0; n<${#class}; n++)); do
|
||||
if [ "*" != "${class:n:1}" -a \
|
||||
"${class:0:n}" = "${tag:0:n}" -a \
|
||||
"${class:n+1}" = "${tag:n+1}" ] &&
|
||||
( [ -z "$pos" ] || [ $n = $pos ] ); then
|
||||
variants="${variants:-${class:n:1}}${tag:n:1}"
|
||||
pos=$n
|
||||
break
|
||||
fi
|
||||
done
|
||||
if [ $n -eq ${#class} ]; then
|
||||
print_modaliases "$class" "$variants" "$pos"
|
||||
variants=
|
||||
pos=
|
||||
class=$tag
|
||||
fi
|
||||
done
|
||||
print_modaliases "$class" "$variants" "$pos"
|
||||
}
|
||||
|
||||
tmp=$(mktemp -t ${0##*/}.XXXXXX)
|
||||
trap "rm -f $tmp" EXIT
|
||||
|
||||
for file in "$@"; do
|
||||
case "$(file -b "$file")" in
|
||||
RPM*)
|
||||
tmpdir=$(mktemp -td ${0##*/}.XXXXXX)
|
||||
rpm2cpio "$file" | ( cd $tmpdir && cpio -dim --quiet )
|
||||
for module in $(find $tmpdir -type f -name '*.ko'); do
|
||||
process_module "$module" >> $tmp
|
||||
done
|
||||
rm -rf $tmpdir
|
||||
;;
|
||||
ELF*)
|
||||
process_module "$file" >> $tmp
|
||||
;;
|
||||
*)
|
||||
if [ -e "$file" ]; then
|
||||
echo "File type of $file not supported" >&2
|
||||
exit 1
|
||||
fi
|
||||
file2=$(/sbin/modinfo -F filename "${file%.ko}")
|
||||
if ! [ -e "$file2" ]; then
|
||||
echo "No module $file found" >&2
|
||||
exit 1
|
||||
fi
|
||||
process_module "$file2" >> $tmp
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
if [ -n "${!processed_module_*}" ]; then
|
||||
echo "# Modules:" $(for m in ${!processed_module_*}; do echo ${!m}; done \
|
||||
| sort -u)
|
||||
|
||||
sort -u $tmp \
|
||||
| if [ -n "$opt_combine" ]; then
|
||||
combine_modaliases
|
||||
else
|
||||
cat
|
||||
fi
|
||||
|
||||
echo "# Generated with: ${0##*/} ${ARGS[*]}"
|
||||
fi
|
||||
|
||||
# vim:softtabstop=4 shiftwidth=4
|
@ -1,3 +1,148 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 21 10:34:10 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499,
|
||||
CVE-2011-0712).
|
||||
- commit f6a72cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 20 11:36:45 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "tpm_tis: Use timeouts returned from TPM" (bnc#673619).
|
||||
- commit d991856
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 22:57:09 CET 2011 - rjw@suse.de
|
||||
|
||||
- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095).
|
||||
- commit da9d3a8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 11:32:28 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Update to 2.6.37.1:
|
||||
- obsoletes:
|
||||
- patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch
|
||||
- patches.drivers/alsa-hda-0001-Fix-memory-leaks-in-conexant-jack-arrays
|
||||
- patches.drivers/alsa-hda-0002-Fix-missing-CA-initialization-for-HDMI-DP
|
||||
- patches.fixes/calibrate-jiffy-overflow
|
||||
- patches.fixes/fix-ata-panic-with-ata_id
|
||||
- patches.fixes/fix-prlimit64-for-suid-sgid-processes.patch
|
||||
- patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch
|
||||
- patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash
|
||||
- patches.fixes/staging-rt2860-Fix-incorrect-netif_stop_queue-usage.patch
|
||||
- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch.
|
||||
- Refresh patches.suse/SoN-16-netvm-reserve-inet.patch.
|
||||
- Refresh patches.suse/dm-mpath-accept-failed-paths.
|
||||
- Refresh patches.suse/sched-automated-per-session-task-groups.
|
||||
- Refresh patches.xen/xen3-auto-common.diff.
|
||||
- Refresh patches.xen/xen3-fixup-common.
|
||||
- Refresh patches.xen/xen3-patch-2.6.37.
|
||||
- commit a638bb4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 07:44:54 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate
|
||||
an upstream change.
|
||||
- commit a4e281e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 11:58:18 CET 2011 - rjw@suse.de
|
||||
|
||||
- PNP / ACPI: Use DEVICE_ACPI_HANDLE() for device ACPI handle access (bnc#434742).
|
||||
- commit a73834f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 01:15:14 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
disable CONFIG_DRM_VMWGFX. (bnc#606458)
|
||||
- commit 409d54e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 16:25:24 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_64-unwind-annotations: Re-add change lost during
|
||||
initial 2.6.37 merge.
|
||||
- commit 7a5313d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 14:31:03 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: HDA: Add Lenovo vendor quirk for Conexant 205xx
|
||||
(bnc#670946).
|
||||
- commit b3bc287
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 22:50:02 CET 2011 - jeffm@suse.com
|
||||
|
||||
- tty: add 'active' sysfs attribute to tty0 and console device.
|
||||
- commit 7ae6e9a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 17:14:14 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "ath9k: Fix a DMA latency issue for Intel Pinetrail
|
||||
platforms." (bnc#667793).
|
||||
- Revert "ath9k: Remove pm_qos request after hw
|
||||
unregister." (bnc#667793).
|
||||
- Revert "ath9k: use per-device struct for pm_qos_* operations"
|
||||
(bnc#667793).
|
||||
- commit b2849f6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 10:59:55 CET 2011 - jack@suse.cz
|
||||
|
||||
- bridge: Replace mp->mglist hlist with a bool (bnc#653547).
|
||||
- bridge: Fix timer typo that may render snooping less effective
|
||||
(bnc#653547).
|
||||
- bridge: Fix mglist corruption that leads to memory corruption
|
||||
(bnc#653547).
|
||||
- commit a70e5ca
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Move spec file templates and helper scripts to a separate branch, to
|
||||
ease synchronizing these files among master, vanilla and linux-next.
|
||||
- commit 411abb8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Delete a couple of obsolete kabi and other scripts from misc/:
|
||||
- Delete misc/checkmod.
|
||||
- Delete misc/collect_ksyms.
|
||||
- Delete misc/diff-the-xfs-cvs.
|
||||
- Delete misc/ksyms.py.
|
||||
- Delete misc/mangle-ifdef.py.
|
||||
- Delete misc/obsolete-module-aliases.
|
||||
- Delete misc/testmodule.
|
||||
- commit 3dd255b
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
|
||||
was merged into rpm's find-supplements script.
|
||||
- Delete rpm/check-build.sh, not needed anymore.
|
||||
- commit bd6fa48
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
|
||||
|
||||
- flexcop: fix registering braindead stupid names (brc#575873
|
||||
bnc#661429).
|
||||
- commit 2e98bfc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Staging: samsung-laptop: add support for lots of laptops
|
||||
(bnc#661682).
|
||||
- commit c6d0dc9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -95,6 +240,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
|
||||
overflow.
|
||||
- commit 4a69163
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
|
||||
|
||||
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
|
||||
during failed mount (bnc#668878)
|
||||
- commit de24d15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
|
||||
|
||||
|
14493
kernel-debug.spec
14493
kernel-debug.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,148 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 21 10:34:10 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499,
|
||||
CVE-2011-0712).
|
||||
- commit f6a72cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 20 11:36:45 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "tpm_tis: Use timeouts returned from TPM" (bnc#673619).
|
||||
- commit d991856
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 22:57:09 CET 2011 - rjw@suse.de
|
||||
|
||||
- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095).
|
||||
- commit da9d3a8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 11:32:28 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Update to 2.6.37.1:
|
||||
- obsoletes:
|
||||
- patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch
|
||||
- patches.drivers/alsa-hda-0001-Fix-memory-leaks-in-conexant-jack-arrays
|
||||
- patches.drivers/alsa-hda-0002-Fix-missing-CA-initialization-for-HDMI-DP
|
||||
- patches.fixes/calibrate-jiffy-overflow
|
||||
- patches.fixes/fix-ata-panic-with-ata_id
|
||||
- patches.fixes/fix-prlimit64-for-suid-sgid-processes.patch
|
||||
- patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch
|
||||
- patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash
|
||||
- patches.fixes/staging-rt2860-Fix-incorrect-netif_stop_queue-usage.patch
|
||||
- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch.
|
||||
- Refresh patches.suse/SoN-16-netvm-reserve-inet.patch.
|
||||
- Refresh patches.suse/dm-mpath-accept-failed-paths.
|
||||
- Refresh patches.suse/sched-automated-per-session-task-groups.
|
||||
- Refresh patches.xen/xen3-auto-common.diff.
|
||||
- Refresh patches.xen/xen3-fixup-common.
|
||||
- Refresh patches.xen/xen3-patch-2.6.37.
|
||||
- commit a638bb4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 07:44:54 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate
|
||||
an upstream change.
|
||||
- commit a4e281e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 11:58:18 CET 2011 - rjw@suse.de
|
||||
|
||||
- PNP / ACPI: Use DEVICE_ACPI_HANDLE() for device ACPI handle access (bnc#434742).
|
||||
- commit a73834f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 01:15:14 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
disable CONFIG_DRM_VMWGFX. (bnc#606458)
|
||||
- commit 409d54e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 16:25:24 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_64-unwind-annotations: Re-add change lost during
|
||||
initial 2.6.37 merge.
|
||||
- commit 7a5313d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 14:31:03 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: HDA: Add Lenovo vendor quirk for Conexant 205xx
|
||||
(bnc#670946).
|
||||
- commit b3bc287
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 22:50:02 CET 2011 - jeffm@suse.com
|
||||
|
||||
- tty: add 'active' sysfs attribute to tty0 and console device.
|
||||
- commit 7ae6e9a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 17:14:14 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "ath9k: Fix a DMA latency issue for Intel Pinetrail
|
||||
platforms." (bnc#667793).
|
||||
- Revert "ath9k: Remove pm_qos request after hw
|
||||
unregister." (bnc#667793).
|
||||
- Revert "ath9k: use per-device struct for pm_qos_* operations"
|
||||
(bnc#667793).
|
||||
- commit b2849f6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 10:59:55 CET 2011 - jack@suse.cz
|
||||
|
||||
- bridge: Replace mp->mglist hlist with a bool (bnc#653547).
|
||||
- bridge: Fix timer typo that may render snooping less effective
|
||||
(bnc#653547).
|
||||
- bridge: Fix mglist corruption that leads to memory corruption
|
||||
(bnc#653547).
|
||||
- commit a70e5ca
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Move spec file templates and helper scripts to a separate branch, to
|
||||
ease synchronizing these files among master, vanilla and linux-next.
|
||||
- commit 411abb8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Delete a couple of obsolete kabi and other scripts from misc/:
|
||||
- Delete misc/checkmod.
|
||||
- Delete misc/collect_ksyms.
|
||||
- Delete misc/diff-the-xfs-cvs.
|
||||
- Delete misc/ksyms.py.
|
||||
- Delete misc/mangle-ifdef.py.
|
||||
- Delete misc/obsolete-module-aliases.
|
||||
- Delete misc/testmodule.
|
||||
- commit 3dd255b
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
|
||||
was merged into rpm's find-supplements script.
|
||||
- Delete rpm/check-build.sh, not needed anymore.
|
||||
- commit bd6fa48
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
|
||||
|
||||
- flexcop: fix registering braindead stupid names (brc#575873
|
||||
bnc#661429).
|
||||
- commit 2e98bfc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Staging: samsung-laptop: add support for lots of laptops
|
||||
(bnc#661682).
|
||||
- commit c6d0dc9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -95,6 +240,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
|
||||
overflow.
|
||||
- commit 4a69163
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
|
||||
|
||||
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
|
||||
during failed mount (bnc#668878)
|
||||
- commit de24d15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
|
||||
|
||||
|
14493
kernel-default.spec
14493
kernel-default.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,148 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 21 10:34:10 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499,
|
||||
CVE-2011-0712).
|
||||
- commit f6a72cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 20 11:36:45 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "tpm_tis: Use timeouts returned from TPM" (bnc#673619).
|
||||
- commit d991856
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 22:57:09 CET 2011 - rjw@suse.de
|
||||
|
||||
- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095).
|
||||
- commit da9d3a8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 11:32:28 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Update to 2.6.37.1:
|
||||
- obsoletes:
|
||||
- patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch
|
||||
- patches.drivers/alsa-hda-0001-Fix-memory-leaks-in-conexant-jack-arrays
|
||||
- patches.drivers/alsa-hda-0002-Fix-missing-CA-initialization-for-HDMI-DP
|
||||
- patches.fixes/calibrate-jiffy-overflow
|
||||
- patches.fixes/fix-ata-panic-with-ata_id
|
||||
- patches.fixes/fix-prlimit64-for-suid-sgid-processes.patch
|
||||
- patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch
|
||||
- patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash
|
||||
- patches.fixes/staging-rt2860-Fix-incorrect-netif_stop_queue-usage.patch
|
||||
- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch.
|
||||
- Refresh patches.suse/SoN-16-netvm-reserve-inet.patch.
|
||||
- Refresh patches.suse/dm-mpath-accept-failed-paths.
|
||||
- Refresh patches.suse/sched-automated-per-session-task-groups.
|
||||
- Refresh patches.xen/xen3-auto-common.diff.
|
||||
- Refresh patches.xen/xen3-fixup-common.
|
||||
- Refresh patches.xen/xen3-patch-2.6.37.
|
||||
- commit a638bb4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 07:44:54 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate
|
||||
an upstream change.
|
||||
- commit a4e281e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 11:58:18 CET 2011 - rjw@suse.de
|
||||
|
||||
- PNP / ACPI: Use DEVICE_ACPI_HANDLE() for device ACPI handle access (bnc#434742).
|
||||
- commit a73834f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 01:15:14 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
disable CONFIG_DRM_VMWGFX. (bnc#606458)
|
||||
- commit 409d54e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 16:25:24 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_64-unwind-annotations: Re-add change lost during
|
||||
initial 2.6.37 merge.
|
||||
- commit 7a5313d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 14:31:03 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: HDA: Add Lenovo vendor quirk for Conexant 205xx
|
||||
(bnc#670946).
|
||||
- commit b3bc287
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 22:50:02 CET 2011 - jeffm@suse.com
|
||||
|
||||
- tty: add 'active' sysfs attribute to tty0 and console device.
|
||||
- commit 7ae6e9a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 17:14:14 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "ath9k: Fix a DMA latency issue for Intel Pinetrail
|
||||
platforms." (bnc#667793).
|
||||
- Revert "ath9k: Remove pm_qos request after hw
|
||||
unregister." (bnc#667793).
|
||||
- Revert "ath9k: use per-device struct for pm_qos_* operations"
|
||||
(bnc#667793).
|
||||
- commit b2849f6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 10:59:55 CET 2011 - jack@suse.cz
|
||||
|
||||
- bridge: Replace mp->mglist hlist with a bool (bnc#653547).
|
||||
- bridge: Fix timer typo that may render snooping less effective
|
||||
(bnc#653547).
|
||||
- bridge: Fix mglist corruption that leads to memory corruption
|
||||
(bnc#653547).
|
||||
- commit a70e5ca
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Move spec file templates and helper scripts to a separate branch, to
|
||||
ease synchronizing these files among master, vanilla and linux-next.
|
||||
- commit 411abb8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Delete a couple of obsolete kabi and other scripts from misc/:
|
||||
- Delete misc/checkmod.
|
||||
- Delete misc/collect_ksyms.
|
||||
- Delete misc/diff-the-xfs-cvs.
|
||||
- Delete misc/ksyms.py.
|
||||
- Delete misc/mangle-ifdef.py.
|
||||
- Delete misc/obsolete-module-aliases.
|
||||
- Delete misc/testmodule.
|
||||
- commit 3dd255b
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
|
||||
was merged into rpm's find-supplements script.
|
||||
- Delete rpm/check-build.sh, not needed anymore.
|
||||
- commit bd6fa48
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
|
||||
|
||||
- flexcop: fix registering braindead stupid names (brc#575873
|
||||
bnc#661429).
|
||||
- commit 2e98bfc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Staging: samsung-laptop: add support for lots of laptops
|
||||
(bnc#661682).
|
||||
- commit c6d0dc9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -95,6 +240,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
|
||||
overflow.
|
||||
- commit 4a69163
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
|
||||
|
||||
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
|
||||
during failed mount (bnc#668878)
|
||||
- commit de24d15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
|
||||
|
||||
|
14488
kernel-desktop.spec
14488
kernel-desktop.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,148 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 21 10:34:10 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499,
|
||||
CVE-2011-0712).
|
||||
- commit f6a72cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 20 11:36:45 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "tpm_tis: Use timeouts returned from TPM" (bnc#673619).
|
||||
- commit d991856
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 22:57:09 CET 2011 - rjw@suse.de
|
||||
|
||||
- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095).
|
||||
- commit da9d3a8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 11:32:28 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Update to 2.6.37.1:
|
||||
- obsoletes:
|
||||
- patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch
|
||||
- patches.drivers/alsa-hda-0001-Fix-memory-leaks-in-conexant-jack-arrays
|
||||
- patches.drivers/alsa-hda-0002-Fix-missing-CA-initialization-for-HDMI-DP
|
||||
- patches.fixes/calibrate-jiffy-overflow
|
||||
- patches.fixes/fix-ata-panic-with-ata_id
|
||||
- patches.fixes/fix-prlimit64-for-suid-sgid-processes.patch
|
||||
- patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch
|
||||
- patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash
|
||||
- patches.fixes/staging-rt2860-Fix-incorrect-netif_stop_queue-usage.patch
|
||||
- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch.
|
||||
- Refresh patches.suse/SoN-16-netvm-reserve-inet.patch.
|
||||
- Refresh patches.suse/dm-mpath-accept-failed-paths.
|
||||
- Refresh patches.suse/sched-automated-per-session-task-groups.
|
||||
- Refresh patches.xen/xen3-auto-common.diff.
|
||||
- Refresh patches.xen/xen3-fixup-common.
|
||||
- Refresh patches.xen/xen3-patch-2.6.37.
|
||||
- commit a638bb4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 07:44:54 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate
|
||||
an upstream change.
|
||||
- commit a4e281e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 11:58:18 CET 2011 - rjw@suse.de
|
||||
|
||||
- PNP / ACPI: Use DEVICE_ACPI_HANDLE() for device ACPI handle access (bnc#434742).
|
||||
- commit a73834f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 01:15:14 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
disable CONFIG_DRM_VMWGFX. (bnc#606458)
|
||||
- commit 409d54e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 16:25:24 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_64-unwind-annotations: Re-add change lost during
|
||||
initial 2.6.37 merge.
|
||||
- commit 7a5313d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 14:31:03 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: HDA: Add Lenovo vendor quirk for Conexant 205xx
|
||||
(bnc#670946).
|
||||
- commit b3bc287
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 22:50:02 CET 2011 - jeffm@suse.com
|
||||
|
||||
- tty: add 'active' sysfs attribute to tty0 and console device.
|
||||
- commit 7ae6e9a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 17:14:14 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "ath9k: Fix a DMA latency issue for Intel Pinetrail
|
||||
platforms." (bnc#667793).
|
||||
- Revert "ath9k: Remove pm_qos request after hw
|
||||
unregister." (bnc#667793).
|
||||
- Revert "ath9k: use per-device struct for pm_qos_* operations"
|
||||
(bnc#667793).
|
||||
- commit b2849f6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 10:59:55 CET 2011 - jack@suse.cz
|
||||
|
||||
- bridge: Replace mp->mglist hlist with a bool (bnc#653547).
|
||||
- bridge: Fix timer typo that may render snooping less effective
|
||||
(bnc#653547).
|
||||
- bridge: Fix mglist corruption that leads to memory corruption
|
||||
(bnc#653547).
|
||||
- commit a70e5ca
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Move spec file templates and helper scripts to a separate branch, to
|
||||
ease synchronizing these files among master, vanilla and linux-next.
|
||||
- commit 411abb8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Delete a couple of obsolete kabi and other scripts from misc/:
|
||||
- Delete misc/checkmod.
|
||||
- Delete misc/collect_ksyms.
|
||||
- Delete misc/diff-the-xfs-cvs.
|
||||
- Delete misc/ksyms.py.
|
||||
- Delete misc/mangle-ifdef.py.
|
||||
- Delete misc/obsolete-module-aliases.
|
||||
- Delete misc/testmodule.
|
||||
- commit 3dd255b
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
|
||||
was merged into rpm's find-supplements script.
|
||||
- Delete rpm/check-build.sh, not needed anymore.
|
||||
- commit bd6fa48
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
|
||||
|
||||
- flexcop: fix registering braindead stupid names (brc#575873
|
||||
bnc#661429).
|
||||
- commit 2e98bfc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Staging: samsung-laptop: add support for lots of laptops
|
||||
(bnc#661682).
|
||||
- commit c6d0dc9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -95,6 +240,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
|
||||
overflow.
|
||||
- commit 4a69163
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
|
||||
|
||||
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
|
||||
during failed mount (bnc#668878)
|
||||
- commit de24d15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
|
||||
|
||||
|
14448
kernel-docs.spec
14448
kernel-docs.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,148 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 21 10:34:10 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499,
|
||||
CVE-2011-0712).
|
||||
- commit f6a72cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 20 11:36:45 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "tpm_tis: Use timeouts returned from TPM" (bnc#673619).
|
||||
- commit d991856
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 22:57:09 CET 2011 - rjw@suse.de
|
||||
|
||||
- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095).
|
||||
- commit da9d3a8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 11:32:28 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Update to 2.6.37.1:
|
||||
- obsoletes:
|
||||
- patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch
|
||||
- patches.drivers/alsa-hda-0001-Fix-memory-leaks-in-conexant-jack-arrays
|
||||
- patches.drivers/alsa-hda-0002-Fix-missing-CA-initialization-for-HDMI-DP
|
||||
- patches.fixes/calibrate-jiffy-overflow
|
||||
- patches.fixes/fix-ata-panic-with-ata_id
|
||||
- patches.fixes/fix-prlimit64-for-suid-sgid-processes.patch
|
||||
- patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch
|
||||
- patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash
|
||||
- patches.fixes/staging-rt2860-Fix-incorrect-netif_stop_queue-usage.patch
|
||||
- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch.
|
||||
- Refresh patches.suse/SoN-16-netvm-reserve-inet.patch.
|
||||
- Refresh patches.suse/dm-mpath-accept-failed-paths.
|
||||
- Refresh patches.suse/sched-automated-per-session-task-groups.
|
||||
- Refresh patches.xen/xen3-auto-common.diff.
|
||||
- Refresh patches.xen/xen3-fixup-common.
|
||||
- Refresh patches.xen/xen3-patch-2.6.37.
|
||||
- commit a638bb4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 07:44:54 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate
|
||||
an upstream change.
|
||||
- commit a4e281e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 11:58:18 CET 2011 - rjw@suse.de
|
||||
|
||||
- PNP / ACPI: Use DEVICE_ACPI_HANDLE() for device ACPI handle access (bnc#434742).
|
||||
- commit a73834f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 01:15:14 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
disable CONFIG_DRM_VMWGFX. (bnc#606458)
|
||||
- commit 409d54e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 16:25:24 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_64-unwind-annotations: Re-add change lost during
|
||||
initial 2.6.37 merge.
|
||||
- commit 7a5313d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 14:31:03 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: HDA: Add Lenovo vendor quirk for Conexant 205xx
|
||||
(bnc#670946).
|
||||
- commit b3bc287
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 22:50:02 CET 2011 - jeffm@suse.com
|
||||
|
||||
- tty: add 'active' sysfs attribute to tty0 and console device.
|
||||
- commit 7ae6e9a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 17:14:14 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "ath9k: Fix a DMA latency issue for Intel Pinetrail
|
||||
platforms." (bnc#667793).
|
||||
- Revert "ath9k: Remove pm_qos request after hw
|
||||
unregister." (bnc#667793).
|
||||
- Revert "ath9k: use per-device struct for pm_qos_* operations"
|
||||
(bnc#667793).
|
||||
- commit b2849f6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 10:59:55 CET 2011 - jack@suse.cz
|
||||
|
||||
- bridge: Replace mp->mglist hlist with a bool (bnc#653547).
|
||||
- bridge: Fix timer typo that may render snooping less effective
|
||||
(bnc#653547).
|
||||
- bridge: Fix mglist corruption that leads to memory corruption
|
||||
(bnc#653547).
|
||||
- commit a70e5ca
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Move spec file templates and helper scripts to a separate branch, to
|
||||
ease synchronizing these files among master, vanilla and linux-next.
|
||||
- commit 411abb8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Delete a couple of obsolete kabi and other scripts from misc/:
|
||||
- Delete misc/checkmod.
|
||||
- Delete misc/collect_ksyms.
|
||||
- Delete misc/diff-the-xfs-cvs.
|
||||
- Delete misc/ksyms.py.
|
||||
- Delete misc/mangle-ifdef.py.
|
||||
- Delete misc/obsolete-module-aliases.
|
||||
- Delete misc/testmodule.
|
||||
- commit 3dd255b
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
|
||||
was merged into rpm's find-supplements script.
|
||||
- Delete rpm/check-build.sh, not needed anymore.
|
||||
- commit bd6fa48
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
|
||||
|
||||
- flexcop: fix registering braindead stupid names (brc#575873
|
||||
bnc#661429).
|
||||
- commit 2e98bfc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Staging: samsung-laptop: add support for lots of laptops
|
||||
(bnc#661682).
|
||||
- commit c6d0dc9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -95,6 +240,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
|
||||
overflow.
|
||||
- commit 4a69163
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
|
||||
|
||||
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
|
||||
during failed mount (bnc#668878)
|
||||
- commit de24d15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
|
||||
|
||||
|
14494
kernel-ec2.spec
14494
kernel-ec2.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,148 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 21 10:34:10 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499,
|
||||
CVE-2011-0712).
|
||||
- commit f6a72cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 20 11:36:45 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "tpm_tis: Use timeouts returned from TPM" (bnc#673619).
|
||||
- commit d991856
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 22:57:09 CET 2011 - rjw@suse.de
|
||||
|
||||
- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095).
|
||||
- commit da9d3a8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 11:32:28 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Update to 2.6.37.1:
|
||||
- obsoletes:
|
||||
- patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch
|
||||
- patches.drivers/alsa-hda-0001-Fix-memory-leaks-in-conexant-jack-arrays
|
||||
- patches.drivers/alsa-hda-0002-Fix-missing-CA-initialization-for-HDMI-DP
|
||||
- patches.fixes/calibrate-jiffy-overflow
|
||||
- patches.fixes/fix-ata-panic-with-ata_id
|
||||
- patches.fixes/fix-prlimit64-for-suid-sgid-processes.patch
|
||||
- patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch
|
||||
- patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash
|
||||
- patches.fixes/staging-rt2860-Fix-incorrect-netif_stop_queue-usage.patch
|
||||
- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch.
|
||||
- Refresh patches.suse/SoN-16-netvm-reserve-inet.patch.
|
||||
- Refresh patches.suse/dm-mpath-accept-failed-paths.
|
||||
- Refresh patches.suse/sched-automated-per-session-task-groups.
|
||||
- Refresh patches.xen/xen3-auto-common.diff.
|
||||
- Refresh patches.xen/xen3-fixup-common.
|
||||
- Refresh patches.xen/xen3-patch-2.6.37.
|
||||
- commit a638bb4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 07:44:54 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate
|
||||
an upstream change.
|
||||
- commit a4e281e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 11:58:18 CET 2011 - rjw@suse.de
|
||||
|
||||
- PNP / ACPI: Use DEVICE_ACPI_HANDLE() for device ACPI handle access (bnc#434742).
|
||||
- commit a73834f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 01:15:14 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
disable CONFIG_DRM_VMWGFX. (bnc#606458)
|
||||
- commit 409d54e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 16:25:24 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_64-unwind-annotations: Re-add change lost during
|
||||
initial 2.6.37 merge.
|
||||
- commit 7a5313d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 14:31:03 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: HDA: Add Lenovo vendor quirk for Conexant 205xx
|
||||
(bnc#670946).
|
||||
- commit b3bc287
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 22:50:02 CET 2011 - jeffm@suse.com
|
||||
|
||||
- tty: add 'active' sysfs attribute to tty0 and console device.
|
||||
- commit 7ae6e9a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 17:14:14 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "ath9k: Fix a DMA latency issue for Intel Pinetrail
|
||||
platforms." (bnc#667793).
|
||||
- Revert "ath9k: Remove pm_qos request after hw
|
||||
unregister." (bnc#667793).
|
||||
- Revert "ath9k: use per-device struct for pm_qos_* operations"
|
||||
(bnc#667793).
|
||||
- commit b2849f6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 10:59:55 CET 2011 - jack@suse.cz
|
||||
|
||||
- bridge: Replace mp->mglist hlist with a bool (bnc#653547).
|
||||
- bridge: Fix timer typo that may render snooping less effective
|
||||
(bnc#653547).
|
||||
- bridge: Fix mglist corruption that leads to memory corruption
|
||||
(bnc#653547).
|
||||
- commit a70e5ca
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Move spec file templates and helper scripts to a separate branch, to
|
||||
ease synchronizing these files among master, vanilla and linux-next.
|
||||
- commit 411abb8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Delete a couple of obsolete kabi and other scripts from misc/:
|
||||
- Delete misc/checkmod.
|
||||
- Delete misc/collect_ksyms.
|
||||
- Delete misc/diff-the-xfs-cvs.
|
||||
- Delete misc/ksyms.py.
|
||||
- Delete misc/mangle-ifdef.py.
|
||||
- Delete misc/obsolete-module-aliases.
|
||||
- Delete misc/testmodule.
|
||||
- commit 3dd255b
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
|
||||
was merged into rpm's find-supplements script.
|
||||
- Delete rpm/check-build.sh, not needed anymore.
|
||||
- commit bd6fa48
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
|
||||
|
||||
- flexcop: fix registering braindead stupid names (brc#575873
|
||||
bnc#661429).
|
||||
- commit 2e98bfc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Staging: samsung-laptop: add support for lots of laptops
|
||||
(bnc#661682).
|
||||
- commit c6d0dc9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -95,6 +240,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
|
||||
overflow.
|
||||
- commit 4a69163
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
|
||||
|
||||
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
|
||||
during failed mount (bnc#668878)
|
||||
- commit de24d15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
|
||||
|
||||
|
14494
kernel-net.spec
14494
kernel-net.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,148 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 21 10:34:10 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499,
|
||||
CVE-2011-0712).
|
||||
- commit f6a72cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 20 11:36:45 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "tpm_tis: Use timeouts returned from TPM" (bnc#673619).
|
||||
- commit d991856
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 22:57:09 CET 2011 - rjw@suse.de
|
||||
|
||||
- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095).
|
||||
- commit da9d3a8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 11:32:28 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Update to 2.6.37.1:
|
||||
- obsoletes:
|
||||
- patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch
|
||||
- patches.drivers/alsa-hda-0001-Fix-memory-leaks-in-conexant-jack-arrays
|
||||
- patches.drivers/alsa-hda-0002-Fix-missing-CA-initialization-for-HDMI-DP
|
||||
- patches.fixes/calibrate-jiffy-overflow
|
||||
- patches.fixes/fix-ata-panic-with-ata_id
|
||||
- patches.fixes/fix-prlimit64-for-suid-sgid-processes.patch
|
||||
- patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch
|
||||
- patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash
|
||||
- patches.fixes/staging-rt2860-Fix-incorrect-netif_stop_queue-usage.patch
|
||||
- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch.
|
||||
- Refresh patches.suse/SoN-16-netvm-reserve-inet.patch.
|
||||
- Refresh patches.suse/dm-mpath-accept-failed-paths.
|
||||
- Refresh patches.suse/sched-automated-per-session-task-groups.
|
||||
- Refresh patches.xen/xen3-auto-common.diff.
|
||||
- Refresh patches.xen/xen3-fixup-common.
|
||||
- Refresh patches.xen/xen3-patch-2.6.37.
|
||||
- commit a638bb4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 07:44:54 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate
|
||||
an upstream change.
|
||||
- commit a4e281e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 11:58:18 CET 2011 - rjw@suse.de
|
||||
|
||||
- PNP / ACPI: Use DEVICE_ACPI_HANDLE() for device ACPI handle access (bnc#434742).
|
||||
- commit a73834f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 01:15:14 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
disable CONFIG_DRM_VMWGFX. (bnc#606458)
|
||||
- commit 409d54e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 16:25:24 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_64-unwind-annotations: Re-add change lost during
|
||||
initial 2.6.37 merge.
|
||||
- commit 7a5313d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 14:31:03 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: HDA: Add Lenovo vendor quirk for Conexant 205xx
|
||||
(bnc#670946).
|
||||
- commit b3bc287
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 22:50:02 CET 2011 - jeffm@suse.com
|
||||
|
||||
- tty: add 'active' sysfs attribute to tty0 and console device.
|
||||
- commit 7ae6e9a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 17:14:14 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "ath9k: Fix a DMA latency issue for Intel Pinetrail
|
||||
platforms." (bnc#667793).
|
||||
- Revert "ath9k: Remove pm_qos request after hw
|
||||
unregister." (bnc#667793).
|
||||
- Revert "ath9k: use per-device struct for pm_qos_* operations"
|
||||
(bnc#667793).
|
||||
- commit b2849f6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 10:59:55 CET 2011 - jack@suse.cz
|
||||
|
||||
- bridge: Replace mp->mglist hlist with a bool (bnc#653547).
|
||||
- bridge: Fix timer typo that may render snooping less effective
|
||||
(bnc#653547).
|
||||
- bridge: Fix mglist corruption that leads to memory corruption
|
||||
(bnc#653547).
|
||||
- commit a70e5ca
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Move spec file templates and helper scripts to a separate branch, to
|
||||
ease synchronizing these files among master, vanilla and linux-next.
|
||||
- commit 411abb8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Delete a couple of obsolete kabi and other scripts from misc/:
|
||||
- Delete misc/checkmod.
|
||||
- Delete misc/collect_ksyms.
|
||||
- Delete misc/diff-the-xfs-cvs.
|
||||
- Delete misc/ksyms.py.
|
||||
- Delete misc/mangle-ifdef.py.
|
||||
- Delete misc/obsolete-module-aliases.
|
||||
- Delete misc/testmodule.
|
||||
- commit 3dd255b
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
|
||||
was merged into rpm's find-supplements script.
|
||||
- Delete rpm/check-build.sh, not needed anymore.
|
||||
- commit bd6fa48
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
|
||||
|
||||
- flexcop: fix registering braindead stupid names (brc#575873
|
||||
bnc#661429).
|
||||
- commit 2e98bfc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Staging: samsung-laptop: add support for lots of laptops
|
||||
(bnc#661682).
|
||||
- commit c6d0dc9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -95,6 +240,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
|
||||
overflow.
|
||||
- commit 4a69163
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
|
||||
|
||||
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
|
||||
during failed mount (bnc#668878)
|
||||
- commit de24d15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
|
||||
|
||||
|
14493
kernel-pae.spec
14493
kernel-pae.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,148 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 21 10:34:10 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499,
|
||||
CVE-2011-0712).
|
||||
- commit f6a72cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 20 11:36:45 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "tpm_tis: Use timeouts returned from TPM" (bnc#673619).
|
||||
- commit d991856
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 22:57:09 CET 2011 - rjw@suse.de
|
||||
|
||||
- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095).
|
||||
- commit da9d3a8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 11:32:28 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Update to 2.6.37.1:
|
||||
- obsoletes:
|
||||
- patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch
|
||||
- patches.drivers/alsa-hda-0001-Fix-memory-leaks-in-conexant-jack-arrays
|
||||
- patches.drivers/alsa-hda-0002-Fix-missing-CA-initialization-for-HDMI-DP
|
||||
- patches.fixes/calibrate-jiffy-overflow
|
||||
- patches.fixes/fix-ata-panic-with-ata_id
|
||||
- patches.fixes/fix-prlimit64-for-suid-sgid-processes.patch
|
||||
- patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch
|
||||
- patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash
|
||||
- patches.fixes/staging-rt2860-Fix-incorrect-netif_stop_queue-usage.patch
|
||||
- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch.
|
||||
- Refresh patches.suse/SoN-16-netvm-reserve-inet.patch.
|
||||
- Refresh patches.suse/dm-mpath-accept-failed-paths.
|
||||
- Refresh patches.suse/sched-automated-per-session-task-groups.
|
||||
- Refresh patches.xen/xen3-auto-common.diff.
|
||||
- Refresh patches.xen/xen3-fixup-common.
|
||||
- Refresh patches.xen/xen3-patch-2.6.37.
|
||||
- commit a638bb4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 07:44:54 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate
|
||||
an upstream change.
|
||||
- commit a4e281e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 11:58:18 CET 2011 - rjw@suse.de
|
||||
|
||||
- PNP / ACPI: Use DEVICE_ACPI_HANDLE() for device ACPI handle access (bnc#434742).
|
||||
- commit a73834f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 01:15:14 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
disable CONFIG_DRM_VMWGFX. (bnc#606458)
|
||||
- commit 409d54e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 16:25:24 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_64-unwind-annotations: Re-add change lost during
|
||||
initial 2.6.37 merge.
|
||||
- commit 7a5313d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 14:31:03 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: HDA: Add Lenovo vendor quirk for Conexant 205xx
|
||||
(bnc#670946).
|
||||
- commit b3bc287
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 22:50:02 CET 2011 - jeffm@suse.com
|
||||
|
||||
- tty: add 'active' sysfs attribute to tty0 and console device.
|
||||
- commit 7ae6e9a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 17:14:14 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "ath9k: Fix a DMA latency issue for Intel Pinetrail
|
||||
platforms." (bnc#667793).
|
||||
- Revert "ath9k: Remove pm_qos request after hw
|
||||
unregister." (bnc#667793).
|
||||
- Revert "ath9k: use per-device struct for pm_qos_* operations"
|
||||
(bnc#667793).
|
||||
- commit b2849f6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 10:59:55 CET 2011 - jack@suse.cz
|
||||
|
||||
- bridge: Replace mp->mglist hlist with a bool (bnc#653547).
|
||||
- bridge: Fix timer typo that may render snooping less effective
|
||||
(bnc#653547).
|
||||
- bridge: Fix mglist corruption that leads to memory corruption
|
||||
(bnc#653547).
|
||||
- commit a70e5ca
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Move spec file templates and helper scripts to a separate branch, to
|
||||
ease synchronizing these files among master, vanilla and linux-next.
|
||||
- commit 411abb8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Delete a couple of obsolete kabi and other scripts from misc/:
|
||||
- Delete misc/checkmod.
|
||||
- Delete misc/collect_ksyms.
|
||||
- Delete misc/diff-the-xfs-cvs.
|
||||
- Delete misc/ksyms.py.
|
||||
- Delete misc/mangle-ifdef.py.
|
||||
- Delete misc/obsolete-module-aliases.
|
||||
- Delete misc/testmodule.
|
||||
- commit 3dd255b
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
|
||||
was merged into rpm's find-supplements script.
|
||||
- Delete rpm/check-build.sh, not needed anymore.
|
||||
- commit bd6fa48
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
|
||||
|
||||
- flexcop: fix registering braindead stupid names (brc#575873
|
||||
bnc#661429).
|
||||
- commit 2e98bfc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Staging: samsung-laptop: add support for lots of laptops
|
||||
(bnc#661682).
|
||||
- commit c6d0dc9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -95,6 +240,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
|
||||
overflow.
|
||||
- commit 4a69163
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
|
||||
|
||||
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
|
||||
during failed mount (bnc#668878)
|
||||
- commit de24d15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
|
||||
|
||||
|
14493
kernel-ppc64.spec
14493
kernel-ppc64.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,148 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 21 10:34:10 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499,
|
||||
CVE-2011-0712).
|
||||
- commit f6a72cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 20 11:36:45 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "tpm_tis: Use timeouts returned from TPM" (bnc#673619).
|
||||
- commit d991856
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 22:57:09 CET 2011 - rjw@suse.de
|
||||
|
||||
- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095).
|
||||
- commit da9d3a8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 11:32:28 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Update to 2.6.37.1:
|
||||
- obsoletes:
|
||||
- patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch
|
||||
- patches.drivers/alsa-hda-0001-Fix-memory-leaks-in-conexant-jack-arrays
|
||||
- patches.drivers/alsa-hda-0002-Fix-missing-CA-initialization-for-HDMI-DP
|
||||
- patches.fixes/calibrate-jiffy-overflow
|
||||
- patches.fixes/fix-ata-panic-with-ata_id
|
||||
- patches.fixes/fix-prlimit64-for-suid-sgid-processes.patch
|
||||
- patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch
|
||||
- patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash
|
||||
- patches.fixes/staging-rt2860-Fix-incorrect-netif_stop_queue-usage.patch
|
||||
- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch.
|
||||
- Refresh patches.suse/SoN-16-netvm-reserve-inet.patch.
|
||||
- Refresh patches.suse/dm-mpath-accept-failed-paths.
|
||||
- Refresh patches.suse/sched-automated-per-session-task-groups.
|
||||
- Refresh patches.xen/xen3-auto-common.diff.
|
||||
- Refresh patches.xen/xen3-fixup-common.
|
||||
- Refresh patches.xen/xen3-patch-2.6.37.
|
||||
- commit a638bb4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 07:44:54 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate
|
||||
an upstream change.
|
||||
- commit a4e281e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 11:58:18 CET 2011 - rjw@suse.de
|
||||
|
||||
- PNP / ACPI: Use DEVICE_ACPI_HANDLE() for device ACPI handle access (bnc#434742).
|
||||
- commit a73834f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 01:15:14 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
disable CONFIG_DRM_VMWGFX. (bnc#606458)
|
||||
- commit 409d54e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 16:25:24 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_64-unwind-annotations: Re-add change lost during
|
||||
initial 2.6.37 merge.
|
||||
- commit 7a5313d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 14:31:03 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: HDA: Add Lenovo vendor quirk for Conexant 205xx
|
||||
(bnc#670946).
|
||||
- commit b3bc287
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 22:50:02 CET 2011 - jeffm@suse.com
|
||||
|
||||
- tty: add 'active' sysfs attribute to tty0 and console device.
|
||||
- commit 7ae6e9a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 17:14:14 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "ath9k: Fix a DMA latency issue for Intel Pinetrail
|
||||
platforms." (bnc#667793).
|
||||
- Revert "ath9k: Remove pm_qos request after hw
|
||||
unregister." (bnc#667793).
|
||||
- Revert "ath9k: use per-device struct for pm_qos_* operations"
|
||||
(bnc#667793).
|
||||
- commit b2849f6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 10:59:55 CET 2011 - jack@suse.cz
|
||||
|
||||
- bridge: Replace mp->mglist hlist with a bool (bnc#653547).
|
||||
- bridge: Fix timer typo that may render snooping less effective
|
||||
(bnc#653547).
|
||||
- bridge: Fix mglist corruption that leads to memory corruption
|
||||
(bnc#653547).
|
||||
- commit a70e5ca
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Move spec file templates and helper scripts to a separate branch, to
|
||||
ease synchronizing these files among master, vanilla and linux-next.
|
||||
- commit 411abb8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Delete a couple of obsolete kabi and other scripts from misc/:
|
||||
- Delete misc/checkmod.
|
||||
- Delete misc/collect_ksyms.
|
||||
- Delete misc/diff-the-xfs-cvs.
|
||||
- Delete misc/ksyms.py.
|
||||
- Delete misc/mangle-ifdef.py.
|
||||
- Delete misc/obsolete-module-aliases.
|
||||
- Delete misc/testmodule.
|
||||
- commit 3dd255b
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
|
||||
was merged into rpm's find-supplements script.
|
||||
- Delete rpm/check-build.sh, not needed anymore.
|
||||
- commit bd6fa48
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
|
||||
|
||||
- flexcop: fix registering braindead stupid names (brc#575873
|
||||
bnc#661429).
|
||||
- commit 2e98bfc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Staging: samsung-laptop: add support for lots of laptops
|
||||
(bnc#661682).
|
||||
- commit c6d0dc9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -95,6 +240,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
|
||||
overflow.
|
||||
- commit 4a69163
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
|
||||
|
||||
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
|
||||
during failed mount (bnc#668878)
|
||||
- commit de24d15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
|
||||
|
||||
|
14494
kernel-ps3.spec
14494
kernel-ps3.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,148 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 21 10:34:10 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499,
|
||||
CVE-2011-0712).
|
||||
- commit f6a72cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 20 11:36:45 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "tpm_tis: Use timeouts returned from TPM" (bnc#673619).
|
||||
- commit d991856
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 22:57:09 CET 2011 - rjw@suse.de
|
||||
|
||||
- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095).
|
||||
- commit da9d3a8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 11:32:28 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Update to 2.6.37.1:
|
||||
- obsoletes:
|
||||
- patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch
|
||||
- patches.drivers/alsa-hda-0001-Fix-memory-leaks-in-conexant-jack-arrays
|
||||
- patches.drivers/alsa-hda-0002-Fix-missing-CA-initialization-for-HDMI-DP
|
||||
- patches.fixes/calibrate-jiffy-overflow
|
||||
- patches.fixes/fix-ata-panic-with-ata_id
|
||||
- patches.fixes/fix-prlimit64-for-suid-sgid-processes.patch
|
||||
- patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch
|
||||
- patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash
|
||||
- patches.fixes/staging-rt2860-Fix-incorrect-netif_stop_queue-usage.patch
|
||||
- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch.
|
||||
- Refresh patches.suse/SoN-16-netvm-reserve-inet.patch.
|
||||
- Refresh patches.suse/dm-mpath-accept-failed-paths.
|
||||
- Refresh patches.suse/sched-automated-per-session-task-groups.
|
||||
- Refresh patches.xen/xen3-auto-common.diff.
|
||||
- Refresh patches.xen/xen3-fixup-common.
|
||||
- Refresh patches.xen/xen3-patch-2.6.37.
|
||||
- commit a638bb4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 07:44:54 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate
|
||||
an upstream change.
|
||||
- commit a4e281e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 11:58:18 CET 2011 - rjw@suse.de
|
||||
|
||||
- PNP / ACPI: Use DEVICE_ACPI_HANDLE() for device ACPI handle access (bnc#434742).
|
||||
- commit a73834f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 01:15:14 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
disable CONFIG_DRM_VMWGFX. (bnc#606458)
|
||||
- commit 409d54e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 16:25:24 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_64-unwind-annotations: Re-add change lost during
|
||||
initial 2.6.37 merge.
|
||||
- commit 7a5313d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 14:31:03 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: HDA: Add Lenovo vendor quirk for Conexant 205xx
|
||||
(bnc#670946).
|
||||
- commit b3bc287
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 22:50:02 CET 2011 - jeffm@suse.com
|
||||
|
||||
- tty: add 'active' sysfs attribute to tty0 and console device.
|
||||
- commit 7ae6e9a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 17:14:14 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "ath9k: Fix a DMA latency issue for Intel Pinetrail
|
||||
platforms." (bnc#667793).
|
||||
- Revert "ath9k: Remove pm_qos request after hw
|
||||
unregister." (bnc#667793).
|
||||
- Revert "ath9k: use per-device struct for pm_qos_* operations"
|
||||
(bnc#667793).
|
||||
- commit b2849f6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 10:59:55 CET 2011 - jack@suse.cz
|
||||
|
||||
- bridge: Replace mp->mglist hlist with a bool (bnc#653547).
|
||||
- bridge: Fix timer typo that may render snooping less effective
|
||||
(bnc#653547).
|
||||
- bridge: Fix mglist corruption that leads to memory corruption
|
||||
(bnc#653547).
|
||||
- commit a70e5ca
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Move spec file templates and helper scripts to a separate branch, to
|
||||
ease synchronizing these files among master, vanilla and linux-next.
|
||||
- commit 411abb8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Delete a couple of obsolete kabi and other scripts from misc/:
|
||||
- Delete misc/checkmod.
|
||||
- Delete misc/collect_ksyms.
|
||||
- Delete misc/diff-the-xfs-cvs.
|
||||
- Delete misc/ksyms.py.
|
||||
- Delete misc/mangle-ifdef.py.
|
||||
- Delete misc/obsolete-module-aliases.
|
||||
- Delete misc/testmodule.
|
||||
- commit 3dd255b
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
|
||||
was merged into rpm's find-supplements script.
|
||||
- Delete rpm/check-build.sh, not needed anymore.
|
||||
- commit bd6fa48
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
|
||||
|
||||
- flexcop: fix registering braindead stupid names (brc#575873
|
||||
bnc#661429).
|
||||
- commit 2e98bfc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Staging: samsung-laptop: add support for lots of laptops
|
||||
(bnc#661682).
|
||||
- commit c6d0dc9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -95,6 +240,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
|
||||
overflow.
|
||||
- commit 4a69163
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
|
||||
|
||||
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
|
||||
during failed mount (bnc#668878)
|
||||
- commit de24d15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
|
||||
|
||||
|
14493
kernel-s390.spec
14493
kernel-s390.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,148 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 21 10:34:10 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499,
|
||||
CVE-2011-0712).
|
||||
- commit f6a72cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 20 11:36:45 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "tpm_tis: Use timeouts returned from TPM" (bnc#673619).
|
||||
- commit d991856
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 22:57:09 CET 2011 - rjw@suse.de
|
||||
|
||||
- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095).
|
||||
- commit da9d3a8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 11:32:28 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Update to 2.6.37.1:
|
||||
- obsoletes:
|
||||
- patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch
|
||||
- patches.drivers/alsa-hda-0001-Fix-memory-leaks-in-conexant-jack-arrays
|
||||
- patches.drivers/alsa-hda-0002-Fix-missing-CA-initialization-for-HDMI-DP
|
||||
- patches.fixes/calibrate-jiffy-overflow
|
||||
- patches.fixes/fix-ata-panic-with-ata_id
|
||||
- patches.fixes/fix-prlimit64-for-suid-sgid-processes.patch
|
||||
- patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch
|
||||
- patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash
|
||||
- patches.fixes/staging-rt2860-Fix-incorrect-netif_stop_queue-usage.patch
|
||||
- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch.
|
||||
- Refresh patches.suse/SoN-16-netvm-reserve-inet.patch.
|
||||
- Refresh patches.suse/dm-mpath-accept-failed-paths.
|
||||
- Refresh patches.suse/sched-automated-per-session-task-groups.
|
||||
- Refresh patches.xen/xen3-auto-common.diff.
|
||||
- Refresh patches.xen/xen3-fixup-common.
|
||||
- Refresh patches.xen/xen3-patch-2.6.37.
|
||||
- commit a638bb4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 07:44:54 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate
|
||||
an upstream change.
|
||||
- commit a4e281e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 11:58:18 CET 2011 - rjw@suse.de
|
||||
|
||||
- PNP / ACPI: Use DEVICE_ACPI_HANDLE() for device ACPI handle access (bnc#434742).
|
||||
- commit a73834f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 01:15:14 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
disable CONFIG_DRM_VMWGFX. (bnc#606458)
|
||||
- commit 409d54e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 16:25:24 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_64-unwind-annotations: Re-add change lost during
|
||||
initial 2.6.37 merge.
|
||||
- commit 7a5313d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 14:31:03 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: HDA: Add Lenovo vendor quirk for Conexant 205xx
|
||||
(bnc#670946).
|
||||
- commit b3bc287
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 22:50:02 CET 2011 - jeffm@suse.com
|
||||
|
||||
- tty: add 'active' sysfs attribute to tty0 and console device.
|
||||
- commit 7ae6e9a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 17:14:14 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "ath9k: Fix a DMA latency issue for Intel Pinetrail
|
||||
platforms." (bnc#667793).
|
||||
- Revert "ath9k: Remove pm_qos request after hw
|
||||
unregister." (bnc#667793).
|
||||
- Revert "ath9k: use per-device struct for pm_qos_* operations"
|
||||
(bnc#667793).
|
||||
- commit b2849f6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 10:59:55 CET 2011 - jack@suse.cz
|
||||
|
||||
- bridge: Replace mp->mglist hlist with a bool (bnc#653547).
|
||||
- bridge: Fix timer typo that may render snooping less effective
|
||||
(bnc#653547).
|
||||
- bridge: Fix mglist corruption that leads to memory corruption
|
||||
(bnc#653547).
|
||||
- commit a70e5ca
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Move spec file templates and helper scripts to a separate branch, to
|
||||
ease synchronizing these files among master, vanilla and linux-next.
|
||||
- commit 411abb8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Delete a couple of obsolete kabi and other scripts from misc/:
|
||||
- Delete misc/checkmod.
|
||||
- Delete misc/collect_ksyms.
|
||||
- Delete misc/diff-the-xfs-cvs.
|
||||
- Delete misc/ksyms.py.
|
||||
- Delete misc/mangle-ifdef.py.
|
||||
- Delete misc/obsolete-module-aliases.
|
||||
- Delete misc/testmodule.
|
||||
- commit 3dd255b
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
|
||||
was merged into rpm's find-supplements script.
|
||||
- Delete rpm/check-build.sh, not needed anymore.
|
||||
- commit bd6fa48
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
|
||||
|
||||
- flexcop: fix registering braindead stupid names (brc#575873
|
||||
bnc#661429).
|
||||
- commit 2e98bfc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Staging: samsung-laptop: add support for lots of laptops
|
||||
(bnc#661682).
|
||||
- commit c6d0dc9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -95,6 +240,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
|
||||
overflow.
|
||||
- commit 4a69163
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
|
||||
|
||||
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
|
||||
during failed mount (bnc#668878)
|
||||
- commit de24d15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
|
||||
|
||||
|
14473
kernel-source.spec
14473
kernel-source.spec
File diff suppressed because it is too large
Load Diff
@ -69,7 +69,6 @@ Source40: source-timestamp
|
||||
Source44: find-provides
|
||||
Source45: split-modules
|
||||
Source46: modversions
|
||||
Source47: extract-modaliases
|
||||
Source48: macros.kernel-source
|
||||
Source49: kernel-module-subpackage
|
||||
Source50: kabi.pl
|
||||
|
@ -1,3 +1,148 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 21 10:34:10 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499,
|
||||
CVE-2011-0712).
|
||||
- commit f6a72cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 20 11:36:45 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "tpm_tis: Use timeouts returned from TPM" (bnc#673619).
|
||||
- commit d991856
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 22:57:09 CET 2011 - rjw@suse.de
|
||||
|
||||
- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095).
|
||||
- commit da9d3a8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 11:32:28 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Update to 2.6.37.1:
|
||||
- obsoletes:
|
||||
- patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch
|
||||
- patches.drivers/alsa-hda-0001-Fix-memory-leaks-in-conexant-jack-arrays
|
||||
- patches.drivers/alsa-hda-0002-Fix-missing-CA-initialization-for-HDMI-DP
|
||||
- patches.fixes/calibrate-jiffy-overflow
|
||||
- patches.fixes/fix-ata-panic-with-ata_id
|
||||
- patches.fixes/fix-prlimit64-for-suid-sgid-processes.patch
|
||||
- patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch
|
||||
- patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash
|
||||
- patches.fixes/staging-rt2860-Fix-incorrect-netif_stop_queue-usage.patch
|
||||
- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch.
|
||||
- Refresh patches.suse/SoN-16-netvm-reserve-inet.patch.
|
||||
- Refresh patches.suse/dm-mpath-accept-failed-paths.
|
||||
- Refresh patches.suse/sched-automated-per-session-task-groups.
|
||||
- Refresh patches.xen/xen3-auto-common.diff.
|
||||
- Refresh patches.xen/xen3-fixup-common.
|
||||
- Refresh patches.xen/xen3-patch-2.6.37.
|
||||
- commit a638bb4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 07:44:54 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate
|
||||
an upstream change.
|
||||
- commit a4e281e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 11:58:18 CET 2011 - rjw@suse.de
|
||||
|
||||
- PNP / ACPI: Use DEVICE_ACPI_HANDLE() for device ACPI handle access (bnc#434742).
|
||||
- commit a73834f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 01:15:14 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
disable CONFIG_DRM_VMWGFX. (bnc#606458)
|
||||
- commit 409d54e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 16:25:24 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_64-unwind-annotations: Re-add change lost during
|
||||
initial 2.6.37 merge.
|
||||
- commit 7a5313d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 14:31:03 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: HDA: Add Lenovo vendor quirk for Conexant 205xx
|
||||
(bnc#670946).
|
||||
- commit b3bc287
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 22:50:02 CET 2011 - jeffm@suse.com
|
||||
|
||||
- tty: add 'active' sysfs attribute to tty0 and console device.
|
||||
- commit 7ae6e9a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 17:14:14 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "ath9k: Fix a DMA latency issue for Intel Pinetrail
|
||||
platforms." (bnc#667793).
|
||||
- Revert "ath9k: Remove pm_qos request after hw
|
||||
unregister." (bnc#667793).
|
||||
- Revert "ath9k: use per-device struct for pm_qos_* operations"
|
||||
(bnc#667793).
|
||||
- commit b2849f6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 10:59:55 CET 2011 - jack@suse.cz
|
||||
|
||||
- bridge: Replace mp->mglist hlist with a bool (bnc#653547).
|
||||
- bridge: Fix timer typo that may render snooping less effective
|
||||
(bnc#653547).
|
||||
- bridge: Fix mglist corruption that leads to memory corruption
|
||||
(bnc#653547).
|
||||
- commit a70e5ca
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Move spec file templates and helper scripts to a separate branch, to
|
||||
ease synchronizing these files among master, vanilla and linux-next.
|
||||
- commit 411abb8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Delete a couple of obsolete kabi and other scripts from misc/:
|
||||
- Delete misc/checkmod.
|
||||
- Delete misc/collect_ksyms.
|
||||
- Delete misc/diff-the-xfs-cvs.
|
||||
- Delete misc/ksyms.py.
|
||||
- Delete misc/mangle-ifdef.py.
|
||||
- Delete misc/obsolete-module-aliases.
|
||||
- Delete misc/testmodule.
|
||||
- commit 3dd255b
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
|
||||
was merged into rpm's find-supplements script.
|
||||
- Delete rpm/check-build.sh, not needed anymore.
|
||||
- commit bd6fa48
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
|
||||
|
||||
- flexcop: fix registering braindead stupid names (brc#575873
|
||||
bnc#661429).
|
||||
- commit 2e98bfc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Staging: samsung-laptop: add support for lots of laptops
|
||||
(bnc#661682).
|
||||
- commit c6d0dc9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -95,6 +240,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
|
||||
overflow.
|
||||
- commit 4a69163
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
|
||||
|
||||
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
|
||||
during failed mount (bnc#668878)
|
||||
- commit de24d15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
|
||||
|
||||
|
14447
kernel-syms.spec
14447
kernel-syms.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,148 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 21 10:34:10 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499,
|
||||
CVE-2011-0712).
|
||||
- commit f6a72cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 20 11:36:45 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "tpm_tis: Use timeouts returned from TPM" (bnc#673619).
|
||||
- commit d991856
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 22:57:09 CET 2011 - rjw@suse.de
|
||||
|
||||
- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095).
|
||||
- commit da9d3a8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 11:32:28 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Update to 2.6.37.1:
|
||||
- obsoletes:
|
||||
- patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch
|
||||
- patches.drivers/alsa-hda-0001-Fix-memory-leaks-in-conexant-jack-arrays
|
||||
- patches.drivers/alsa-hda-0002-Fix-missing-CA-initialization-for-HDMI-DP
|
||||
- patches.fixes/calibrate-jiffy-overflow
|
||||
- patches.fixes/fix-ata-panic-with-ata_id
|
||||
- patches.fixes/fix-prlimit64-for-suid-sgid-processes.patch
|
||||
- patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch
|
||||
- patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash
|
||||
- patches.fixes/staging-rt2860-Fix-incorrect-netif_stop_queue-usage.patch
|
||||
- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch.
|
||||
- Refresh patches.suse/SoN-16-netvm-reserve-inet.patch.
|
||||
- Refresh patches.suse/dm-mpath-accept-failed-paths.
|
||||
- Refresh patches.suse/sched-automated-per-session-task-groups.
|
||||
- Refresh patches.xen/xen3-auto-common.diff.
|
||||
- Refresh patches.xen/xen3-fixup-common.
|
||||
- Refresh patches.xen/xen3-patch-2.6.37.
|
||||
- commit a638bb4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 07:44:54 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate
|
||||
an upstream change.
|
||||
- commit a4e281e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 11:58:18 CET 2011 - rjw@suse.de
|
||||
|
||||
- PNP / ACPI: Use DEVICE_ACPI_HANDLE() for device ACPI handle access (bnc#434742).
|
||||
- commit a73834f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 01:15:14 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
disable CONFIG_DRM_VMWGFX. (bnc#606458)
|
||||
- commit 409d54e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 16:25:24 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_64-unwind-annotations: Re-add change lost during
|
||||
initial 2.6.37 merge.
|
||||
- commit 7a5313d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 14:31:03 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: HDA: Add Lenovo vendor quirk for Conexant 205xx
|
||||
(bnc#670946).
|
||||
- commit b3bc287
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 22:50:02 CET 2011 - jeffm@suse.com
|
||||
|
||||
- tty: add 'active' sysfs attribute to tty0 and console device.
|
||||
- commit 7ae6e9a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 17:14:14 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "ath9k: Fix a DMA latency issue for Intel Pinetrail
|
||||
platforms." (bnc#667793).
|
||||
- Revert "ath9k: Remove pm_qos request after hw
|
||||
unregister." (bnc#667793).
|
||||
- Revert "ath9k: use per-device struct for pm_qos_* operations"
|
||||
(bnc#667793).
|
||||
- commit b2849f6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 10:59:55 CET 2011 - jack@suse.cz
|
||||
|
||||
- bridge: Replace mp->mglist hlist with a bool (bnc#653547).
|
||||
- bridge: Fix timer typo that may render snooping less effective
|
||||
(bnc#653547).
|
||||
- bridge: Fix mglist corruption that leads to memory corruption
|
||||
(bnc#653547).
|
||||
- commit a70e5ca
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Move spec file templates and helper scripts to a separate branch, to
|
||||
ease synchronizing these files among master, vanilla and linux-next.
|
||||
- commit 411abb8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Delete a couple of obsolete kabi and other scripts from misc/:
|
||||
- Delete misc/checkmod.
|
||||
- Delete misc/collect_ksyms.
|
||||
- Delete misc/diff-the-xfs-cvs.
|
||||
- Delete misc/ksyms.py.
|
||||
- Delete misc/mangle-ifdef.py.
|
||||
- Delete misc/obsolete-module-aliases.
|
||||
- Delete misc/testmodule.
|
||||
- commit 3dd255b
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
|
||||
was merged into rpm's find-supplements script.
|
||||
- Delete rpm/check-build.sh, not needed anymore.
|
||||
- commit bd6fa48
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
|
||||
|
||||
- flexcop: fix registering braindead stupid names (brc#575873
|
||||
bnc#661429).
|
||||
- commit 2e98bfc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Staging: samsung-laptop: add support for lots of laptops
|
||||
(bnc#661682).
|
||||
- commit c6d0dc9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -95,6 +240,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
|
||||
overflow.
|
||||
- commit 4a69163
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
|
||||
|
||||
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
|
||||
during failed mount (bnc#668878)
|
||||
- commit de24d15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
|
||||
|
||||
|
14493
kernel-trace.spec
14493
kernel-trace.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,148 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 21 10:34:10 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499,
|
||||
CVE-2011-0712).
|
||||
- commit f6a72cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 20 11:36:45 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "tpm_tis: Use timeouts returned from TPM" (bnc#673619).
|
||||
- commit d991856
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 22:57:09 CET 2011 - rjw@suse.de
|
||||
|
||||
- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095).
|
||||
- commit da9d3a8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 11:32:28 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Update to 2.6.37.1:
|
||||
- obsoletes:
|
||||
- patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch
|
||||
- patches.drivers/alsa-hda-0001-Fix-memory-leaks-in-conexant-jack-arrays
|
||||
- patches.drivers/alsa-hda-0002-Fix-missing-CA-initialization-for-HDMI-DP
|
||||
- patches.fixes/calibrate-jiffy-overflow
|
||||
- patches.fixes/fix-ata-panic-with-ata_id
|
||||
- patches.fixes/fix-prlimit64-for-suid-sgid-processes.patch
|
||||
- patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch
|
||||
- patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash
|
||||
- patches.fixes/staging-rt2860-Fix-incorrect-netif_stop_queue-usage.patch
|
||||
- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch.
|
||||
- Refresh patches.suse/SoN-16-netvm-reserve-inet.patch.
|
||||
- Refresh patches.suse/dm-mpath-accept-failed-paths.
|
||||
- Refresh patches.suse/sched-automated-per-session-task-groups.
|
||||
- Refresh patches.xen/xen3-auto-common.diff.
|
||||
- Refresh patches.xen/xen3-fixup-common.
|
||||
- Refresh patches.xen/xen3-patch-2.6.37.
|
||||
- commit a638bb4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 07:44:54 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate
|
||||
an upstream change.
|
||||
- commit a4e281e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 11:58:18 CET 2011 - rjw@suse.de
|
||||
|
||||
- PNP / ACPI: Use DEVICE_ACPI_HANDLE() for device ACPI handle access (bnc#434742).
|
||||
- commit a73834f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 01:15:14 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
disable CONFIG_DRM_VMWGFX. (bnc#606458)
|
||||
- commit 409d54e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 16:25:24 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_64-unwind-annotations: Re-add change lost during
|
||||
initial 2.6.37 merge.
|
||||
- commit 7a5313d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 14:31:03 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: HDA: Add Lenovo vendor quirk for Conexant 205xx
|
||||
(bnc#670946).
|
||||
- commit b3bc287
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 22:50:02 CET 2011 - jeffm@suse.com
|
||||
|
||||
- tty: add 'active' sysfs attribute to tty0 and console device.
|
||||
- commit 7ae6e9a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 17:14:14 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "ath9k: Fix a DMA latency issue for Intel Pinetrail
|
||||
platforms." (bnc#667793).
|
||||
- Revert "ath9k: Remove pm_qos request after hw
|
||||
unregister." (bnc#667793).
|
||||
- Revert "ath9k: use per-device struct for pm_qos_* operations"
|
||||
(bnc#667793).
|
||||
- commit b2849f6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 10:59:55 CET 2011 - jack@suse.cz
|
||||
|
||||
- bridge: Replace mp->mglist hlist with a bool (bnc#653547).
|
||||
- bridge: Fix timer typo that may render snooping less effective
|
||||
(bnc#653547).
|
||||
- bridge: Fix mglist corruption that leads to memory corruption
|
||||
(bnc#653547).
|
||||
- commit a70e5ca
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Move spec file templates and helper scripts to a separate branch, to
|
||||
ease synchronizing these files among master, vanilla and linux-next.
|
||||
- commit 411abb8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Delete a couple of obsolete kabi and other scripts from misc/:
|
||||
- Delete misc/checkmod.
|
||||
- Delete misc/collect_ksyms.
|
||||
- Delete misc/diff-the-xfs-cvs.
|
||||
- Delete misc/ksyms.py.
|
||||
- Delete misc/mangle-ifdef.py.
|
||||
- Delete misc/obsolete-module-aliases.
|
||||
- Delete misc/testmodule.
|
||||
- commit 3dd255b
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
|
||||
was merged into rpm's find-supplements script.
|
||||
- Delete rpm/check-build.sh, not needed anymore.
|
||||
- commit bd6fa48
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
|
||||
|
||||
- flexcop: fix registering braindead stupid names (brc#575873
|
||||
bnc#661429).
|
||||
- commit 2e98bfc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Staging: samsung-laptop: add support for lots of laptops
|
||||
(bnc#661682).
|
||||
- commit c6d0dc9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -95,6 +240,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
|
||||
overflow.
|
||||
- commit 4a69163
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
|
||||
|
||||
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
|
||||
during failed mount (bnc#668878)
|
||||
- commit de24d15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
|
||||
|
||||
|
14493
kernel-vanilla.spec
14493
kernel-vanilla.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,148 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 21 10:34:10 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499,
|
||||
CVE-2011-0712).
|
||||
- commit f6a72cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 20 11:36:45 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "tpm_tis: Use timeouts returned from TPM" (bnc#673619).
|
||||
- commit d991856
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 22:57:09 CET 2011 - rjw@suse.de
|
||||
|
||||
- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095).
|
||||
- commit da9d3a8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 11:32:28 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Update to 2.6.37.1:
|
||||
- obsoletes:
|
||||
- patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch
|
||||
- patches.drivers/alsa-hda-0001-Fix-memory-leaks-in-conexant-jack-arrays
|
||||
- patches.drivers/alsa-hda-0002-Fix-missing-CA-initialization-for-HDMI-DP
|
||||
- patches.fixes/calibrate-jiffy-overflow
|
||||
- patches.fixes/fix-ata-panic-with-ata_id
|
||||
- patches.fixes/fix-prlimit64-for-suid-sgid-processes.patch
|
||||
- patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch
|
||||
- patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash
|
||||
- patches.fixes/staging-rt2860-Fix-incorrect-netif_stop_queue-usage.patch
|
||||
- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch.
|
||||
- Refresh patches.suse/SoN-16-netvm-reserve-inet.patch.
|
||||
- Refresh patches.suse/dm-mpath-accept-failed-paths.
|
||||
- Refresh patches.suse/sched-automated-per-session-task-groups.
|
||||
- Refresh patches.xen/xen3-auto-common.diff.
|
||||
- Refresh patches.xen/xen3-fixup-common.
|
||||
- Refresh patches.xen/xen3-patch-2.6.37.
|
||||
- commit a638bb4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 07:44:54 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate
|
||||
an upstream change.
|
||||
- commit a4e281e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 11:58:18 CET 2011 - rjw@suse.de
|
||||
|
||||
- PNP / ACPI: Use DEVICE_ACPI_HANDLE() for device ACPI handle access (bnc#434742).
|
||||
- commit a73834f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 01:15:14 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
disable CONFIG_DRM_VMWGFX. (bnc#606458)
|
||||
- commit 409d54e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 16:25:24 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_64-unwind-annotations: Re-add change lost during
|
||||
initial 2.6.37 merge.
|
||||
- commit 7a5313d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 14:31:03 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: HDA: Add Lenovo vendor quirk for Conexant 205xx
|
||||
(bnc#670946).
|
||||
- commit b3bc287
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 22:50:02 CET 2011 - jeffm@suse.com
|
||||
|
||||
- tty: add 'active' sysfs attribute to tty0 and console device.
|
||||
- commit 7ae6e9a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 17:14:14 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "ath9k: Fix a DMA latency issue for Intel Pinetrail
|
||||
platforms." (bnc#667793).
|
||||
- Revert "ath9k: Remove pm_qos request after hw
|
||||
unregister." (bnc#667793).
|
||||
- Revert "ath9k: use per-device struct for pm_qos_* operations"
|
||||
(bnc#667793).
|
||||
- commit b2849f6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 10:59:55 CET 2011 - jack@suse.cz
|
||||
|
||||
- bridge: Replace mp->mglist hlist with a bool (bnc#653547).
|
||||
- bridge: Fix timer typo that may render snooping less effective
|
||||
(bnc#653547).
|
||||
- bridge: Fix mglist corruption that leads to memory corruption
|
||||
(bnc#653547).
|
||||
- commit a70e5ca
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Move spec file templates and helper scripts to a separate branch, to
|
||||
ease synchronizing these files among master, vanilla and linux-next.
|
||||
- commit 411abb8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Delete a couple of obsolete kabi and other scripts from misc/:
|
||||
- Delete misc/checkmod.
|
||||
- Delete misc/collect_ksyms.
|
||||
- Delete misc/diff-the-xfs-cvs.
|
||||
- Delete misc/ksyms.py.
|
||||
- Delete misc/mangle-ifdef.py.
|
||||
- Delete misc/obsolete-module-aliases.
|
||||
- Delete misc/testmodule.
|
||||
- commit 3dd255b
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
|
||||
was merged into rpm's find-supplements script.
|
||||
- Delete rpm/check-build.sh, not needed anymore.
|
||||
- commit bd6fa48
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
|
||||
|
||||
- flexcop: fix registering braindead stupid names (brc#575873
|
||||
bnc#661429).
|
||||
- commit 2e98bfc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Staging: samsung-laptop: add support for lots of laptops
|
||||
(bnc#661682).
|
||||
- commit c6d0dc9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -95,6 +240,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
|
||||
overflow.
|
||||
- commit 4a69163
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
|
||||
|
||||
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
|
||||
during failed mount (bnc#668878)
|
||||
- commit de24d15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
|
||||
|
||||
|
14494
kernel-vmi.spec
14494
kernel-vmi.spec
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,148 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 21 10:34:10 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: caiaq - Fix possible string-buffer overflow (bnc#672499,
|
||||
CVE-2011-0712).
|
||||
- commit f6a72cc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 20 11:36:45 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "tpm_tis: Use timeouts returned from TPM" (bnc#673619).
|
||||
- commit d991856
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 22:57:09 CET 2011 - rjw@suse.de
|
||||
|
||||
- ACPI / debugfs: Fix buffer overflows, double free (bnc#666095).
|
||||
- commit da9d3a8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 11:32:28 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Update to 2.6.37.1:
|
||||
- obsoletes:
|
||||
- patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch
|
||||
- patches.drivers/alsa-hda-0001-Fix-memory-leaks-in-conexant-jack-arrays
|
||||
- patches.drivers/alsa-hda-0002-Fix-missing-CA-initialization-for-HDMI-DP
|
||||
- patches.fixes/calibrate-jiffy-overflow
|
||||
- patches.fixes/fix-ata-panic-with-ata_id
|
||||
- patches.fixes/fix-prlimit64-for-suid-sgid-processes.patch
|
||||
- patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch
|
||||
- patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash
|
||||
- patches.fixes/staging-rt2860-Fix-incorrect-netif_stop_queue-usage.patch
|
||||
- Refresh patches.suse/SoN-08-mm-page_alloc-emerg.patch.
|
||||
- Refresh patches.suse/SoN-16-netvm-reserve-inet.patch.
|
||||
- Refresh patches.suse/dm-mpath-accept-failed-paths.
|
||||
- Refresh patches.suse/sched-automated-per-session-task-groups.
|
||||
- Refresh patches.xen/xen3-auto-common.diff.
|
||||
- Refresh patches.xen/xen3-fixup-common.
|
||||
- Refresh patches.xen/xen3-patch-2.6.37.
|
||||
- commit a638bb4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 18 07:44:54 CET 2011 - sjayaraman@suse.de
|
||||
|
||||
- Refresh patches.suse/SoN-06-mm-kmem_estimate_pages.patch to accomodate
|
||||
an upstream change.
|
||||
- commit a4e281e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 11:58:18 CET 2011 - rjw@suse.de
|
||||
|
||||
- PNP / ACPI: Use DEVICE_ACPI_HANDLE() for device ACPI handle access (bnc#434742).
|
||||
- commit a73834f
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 17 01:15:14 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Update config files.
|
||||
disable CONFIG_DRM_VMWGFX. (bnc#606458)
|
||||
- commit 409d54e
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 16:25:24 CET 2011 - jbeulich@novell.com
|
||||
|
||||
- patches.arch/x86_64-unwind-annotations: Re-add change lost during
|
||||
initial 2.6.37 merge.
|
||||
- commit 7a5313d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 16 14:31:03 CET 2011 - tiwai@suse.de
|
||||
|
||||
- ALSA: HDA: Add Lenovo vendor quirk for Conexant 205xx
|
||||
(bnc#670946).
|
||||
- commit b3bc287
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 22:50:02 CET 2011 - jeffm@suse.com
|
||||
|
||||
- tty: add 'active' sysfs attribute to tty0 and console device.
|
||||
- commit 7ae6e9a
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 17:14:14 CET 2011 - jslaby@suse.cz
|
||||
|
||||
- Revert "ath9k: Fix a DMA latency issue for Intel Pinetrail
|
||||
platforms." (bnc#667793).
|
||||
- Revert "ath9k: Remove pm_qos request after hw
|
||||
unregister." (bnc#667793).
|
||||
- Revert "ath9k: use per-device struct for pm_qos_* operations"
|
||||
(bnc#667793).
|
||||
- commit b2849f6
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 15 10:59:55 CET 2011 - jack@suse.cz
|
||||
|
||||
- bridge: Replace mp->mglist hlist with a bool (bnc#653547).
|
||||
- bridge: Fix timer typo that may render snooping less effective
|
||||
(bnc#653547).
|
||||
- bridge: Fix mglist corruption that leads to memory corruption
|
||||
(bnc#653547).
|
||||
- commit a70e5ca
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:42:21 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Move spec file templates and helper scripts to a separate branch, to
|
||||
ease synchronizing these files among master, vanilla and linux-next.
|
||||
- commit 411abb8
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:20:47 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- Delete a couple of obsolete kabi and other scripts from misc/:
|
||||
- Delete misc/checkmod.
|
||||
- Delete misc/collect_ksyms.
|
||||
- Delete misc/diff-the-xfs-cvs.
|
||||
- Delete misc/ksyms.py.
|
||||
- Delete misc/mangle-ifdef.py.
|
||||
- Delete misc/obsolete-module-aliases.
|
||||
- Delete misc/testmodule.
|
||||
- commit 3dd255b
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 14 13:19:22 CET 2011 - mmarek@suse.cz
|
||||
|
||||
- rpm/kernel-source.spec.in: Delete misc/extract-modaliases, the code
|
||||
was merged into rpm's find-supplements script.
|
||||
- Delete rpm/check-build.sh, not needed anymore.
|
||||
- commit bd6fa48
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 10 02:55:41 CET 2011 - jeffm@suse.com
|
||||
|
||||
- flexcop: fix registering braindead stupid names (brc#575873
|
||||
bnc#661429).
|
||||
- commit 2e98bfc
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 22:52:29 CET 2011 - gregkh@suse.de
|
||||
|
||||
- Staging: samsung-laptop: add support for lots of laptops
|
||||
(bnc#661682).
|
||||
- commit c6d0dc9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 9 13:37:33 CET 2011 - mmarek@suse.cz
|
||||
|
||||
@ -95,6 +240,13 @@ Thu Feb 3 17:43:57 CET 2011 - jbeulich@novell.com
|
||||
overflow.
|
||||
- commit 4a69163
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:34:01 CET 2011 - jeffm@suse.com
|
||||
|
||||
- patches.fixes/reiserfs-xattr-crash-fix: fix crash
|
||||
during failed mount (bnc#668878)
|
||||
- commit de24d15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 2 17:25:06 CET 2011 - tiwai@suse.de
|
||||
|
||||
|
14494
kernel-xen.spec
14494
kernel-xen.spec
File diff suppressed because it is too large
Load Diff
1
needed_space_in_mb
Normal file
1
needed_space_in_mb
Normal file
@ -0,0 +1 @@
|
||||
6144
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:66a780fe331858e8fc836ac072712a64aa32056f312a982f41c9d12c0f643df2
|
||||
size 85409
|
||||
oid sha256:8710c6fe95a283ab082ab7179b0d1f79dc215cd5b1c5642d94491a2aa6baa2e1
|
||||
size 84799
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:441b143ac954c581ae68f9e609f148b122ab490b9292a0e2c7b2aea2f42b694f
|
||||
size 126871
|
||||
oid sha256:2c4cf06185b2530d61e4eadee76798cee8ab5a05a0bef15d5410347102bdece5
|
||||
size 133050
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1d2cb3183030f6abdfdb1ff16b3bdfa7877a1ef2bdad96cb9ccb38c539041561
|
||||
size 85532
|
||||
oid sha256:328adb48befac20b4ddae3f038ebcc57e1981837816569b967710765eaa12859
|
||||
size 88863
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9dde5510f9ad1aef9c1f1d3b2a8099a006fe55fdab5ebcf2c141624b999d057e
|
||||
size 136
|
||||
oid sha256:7868ec029c84240b276fbe080ba97f86106a99d534eae7e3dcb7ba7c873586af
|
||||
size 92173
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:33d30953d465130624a236b029f27adc2fb927cce4c6e6065d4912ce95e35fcd
|
||||
size 289249
|
||||
oid sha256:8a5ea444a74a48a7f5a0f4266f3180bc81fa6ce504e6c1449682e87cbb206436
|
||||
size 289514
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2342b210b73dc828da5fcb4d8e8cd1d318da2643225fd7dc27bf6201b5f98ff0
|
||||
size 1982628
|
||||
oid sha256:c35b8a41b8d0fea9ae52720a3512a669a12a6b6fb84ce8f249421fff89d7773d
|
||||
size 1981818
|
||||
|
32
series.conf
32
series.conf
@ -27,6 +27,7 @@
|
||||
# DO NOT MODIFY THEM!
|
||||
# Send separate patches upstream if you find a problem...
|
||||
########################################################
|
||||
patches.kernel.org/patch-2.6.37.1
|
||||
|
||||
########################################################
|
||||
# Build fixes that apply to the vanilla kernel too.
|
||||
@ -93,8 +94,6 @@
|
||||
# Once that patch is released, then this one should go away.
|
||||
# I'm accepting it for now because it fixes the crashes that
|
||||
# many of us have been seeing with 2.6.37-rcX. -jeffm
|
||||
patches.fixes/sched-cgroup-use-exit-hook-to-avoid-use-after-free-crash
|
||||
patches.fixes/fix-prlimit64-for-suid-sgid-processes.patch
|
||||
|
||||
########################################################
|
||||
# Architecture-specific patches. These used to be all
|
||||
@ -138,8 +137,6 @@
|
||||
|
||||
patches.suse/x86-mark_rodata_rw.patch
|
||||
|
||||
patches.arch/x86-mtrr-avoid-MTRR-reprogramming-on-BP-during-boot-on.patch
|
||||
|
||||
########################################################
|
||||
# x86 MCE/MCA (Machine Check Error/Architecture) extensions
|
||||
########################################################
|
||||
@ -232,7 +229,6 @@
|
||||
########################################################
|
||||
patches.suse/connector-read-mostly
|
||||
patches.suse/kbd-ignore-gfx.patch
|
||||
patches.fixes/calibrate-jiffy-overflow
|
||||
|
||||
########################################################
|
||||
#
|
||||
@ -270,6 +266,10 @@
|
||||
patches.arch/acpi_fix_global_lock_acquisition.patch
|
||||
patches.arch/acpi_init_global_lock.patch
|
||||
|
||||
patches.fixes/PNP-ACPI-Use-DEVICE_ACPI_HANDLE-for-device-ACPI-handle-access.patch
|
||||
|
||||
patches.arch/acpi-debugfs-fix-buffer-overflows-double-free.patch
|
||||
|
||||
########################################################
|
||||
# CPUFREQ
|
||||
########################################################
|
||||
@ -465,6 +465,7 @@
|
||||
########################################################
|
||||
|
||||
patches.drivers/disable-catas_reset-by-default-to-avoid-problems-with-eeh.patch
|
||||
patches.fixes/revert-tpm_tis-Use-timeouts-returned-from-TPM.patch
|
||||
|
||||
########################################################
|
||||
# Storage
|
||||
@ -500,13 +501,17 @@
|
||||
patches.fixes/sd_liberal_28_sense_invalid.diff
|
||||
|
||||
patches.fixes/scsi-ibmvscsi-module_alias.patch
|
||||
patches.fixes/fix-ata-panic-with-ata_id
|
||||
patches.fixes/loop-queue_lock-null-pointer-derefence-in-blk_throtl_exit-v3.patch
|
||||
|
||||
########################################################
|
||||
# DRM/Video
|
||||
########################################################
|
||||
|
||||
########################################################
|
||||
# video4linux
|
||||
########################################################
|
||||
patches.fixes/flexcop-fix-registering-braindead-stupid-names
|
||||
|
||||
########################################################
|
||||
# Network
|
||||
########################################################
|
||||
@ -525,7 +530,9 @@
|
||||
|
||||
patches.drivers/tg3-5785-and-57780-asic-revs-not-working.patch
|
||||
patches.fixes/ipv6-revert-dont-flush-routes-when-setting-loopback-down.patch
|
||||
|
||||
patches.fixes/bridge-fix-hash-list-corruption.patch
|
||||
patches.fixes/bridge-fix-timer-arming.patch
|
||||
patches.fixes/bridge-remove-hash-list.patch
|
||||
|
||||
########################################################
|
||||
# Wireless Networking
|
||||
@ -533,8 +540,10 @@
|
||||
patches.suse/wireless-no-aes-select
|
||||
patches.suse/b43-missing-firmware-info.patch
|
||||
patches.fixes/iwlwifi-fix-tx-power-configuration-on-3945-and-4965-devices
|
||||
patches.fixes/staging-rt2860-Fix-incorrect-netif_stop_queue-usage.patch
|
||||
patches.fixes/orinoco-allow-IW_AUTH_MFP-to-pass-through.patch
|
||||
patches.fixes/0001-Revert-ath9k-use-per-device-struct-for-pm_qos_-opera.patch
|
||||
patches.fixes/0002-Revert-ath9k-Remove-pm_qos-request-after-hw-unregist.patch
|
||||
patches.fixes/0003-Revert-ath9k-Fix-a-DMA-latency-issue-for-Intel-Pinet.patch
|
||||
|
||||
########################################################
|
||||
# ISDN
|
||||
@ -573,13 +582,13 @@
|
||||
patches.suse/elousb-2.6.35-api-changes
|
||||
patches.fixes/input-add-acer-aspire-5710-to-nomux.patch
|
||||
patches.drivers/input-Add-LED-support-to-Synaptics-device
|
||||
patches.fixes/input-introduce-notimeout-blacklist-for-Dell-Vostro-.patch
|
||||
patches.drivers/tty-add-active-sysfs-attribute-to-tty0-and-console-device
|
||||
|
||||
##########################################################
|
||||
# Sound
|
||||
##########################################################
|
||||
patches.drivers/alsa-hda-0001-Fix-memory-leaks-in-conexant-jack-arrays
|
||||
patches.drivers/alsa-hda-0002-Fix-missing-CA-initialization-for-HDMI-DP
|
||||
patches.drivers/alsa-hda-0003-Add-Lenovo-vendor-quirk-for-Conexant-205xx
|
||||
patches.drivers/alsa-01-caiaq-Fix-possible-string-buffer-overflow
|
||||
|
||||
########################################################
|
||||
# Other driver fixes
|
||||
@ -706,6 +715,7 @@
|
||||
# Staging tree patches
|
||||
# new drivers that are going upstream
|
||||
########################################################
|
||||
patches.drivers/staging-samsung-laptop-add-support-for-lots-of-laptops.patch
|
||||
|
||||
########################################################
|
||||
# "fastboot" patches
|
||||
|
@ -1,3 +1,3 @@
|
||||
2011-02-09 14:44:19 +0100
|
||||
GIT Revision: 31e675a20f711a01725583694d920da20d5f47c2
|
||||
2011-02-21 10:34:10 +0100
|
||||
GIT Revision: f6a72cca01b25188702a071aa4450fc442b8b47a
|
||||
GIT Branch: openSUSE-11.4
|
||||
|
Loading…
Reference in New Issue
Block a user