Accepting request 90048 from Kernel:HEAD

- Re-disabled patches.xen/xencons-tty_mutex.patch
- commit 187dde0

- Re-added patches accidentally dropped with commit 28551a0c.
- commit 3795fde

- Update Xen patches to 3.1-final and c/s 1123.
- commit 35973e8

- Add Elantech touchpad v3/v4 support (bnc#716852):
    - Input: elantech - add v3 hardware support.
    - Input: elantech - add v4 hardware support.
    - Input: elantech - better support all those v2 variants.
    - Input: elantech - clean up elantech_init.
    - Input: elantech - correct x, y value range for v2 hardware.
    - Input: elantech - get rid of ETP_2FT_* in elantech.h.
    - Input: elantech - packet checking for v2 hardware.
    - Input: elantech - remove ETP_EDGE_FUZZ_V2.
    - Input: elantech - remove module parameter force_elantech.
    - Input: elantech - use firmware provided x, y ranges.
- commit 28551a0

- rpm/{arch-symbols,mkspec}: Add support for ARM
  The various ARM families need similar handling like i?86.
- commit 3108a66

- ALSA: hda - Fix ADC input-amp handling for Cx20549 codec.
- ALSA: hda - Keep EAPD turned on for old Conexant chips.
- ALSA: hda/realtek - Fix missing volume controls with ALC260
  (bnc#726812).

OBS-URL: https://build.opensuse.org/request/show/90048
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kernel-source?expand=0&rev=159
This commit is contained in:
Stephan Kulow 2011-11-05 10:18:22 +00:00 committed by Git OBS Bridge
commit db871e30f2
20 changed files with 679 additions and 16 deletions

View File

@ -25,7 +25,7 @@
if [ "$1" = "--list" ]; then
# List all known architectures
echo i386 mips{,64} sparc{,64} ppc{,64} s390{,x} ia64 x86_64 alpha parisc
echo i386 mips{,64} sparc{,64} ppc{,64} s390{,x} ia64 x86_64 alpha parisc arm
exit 0
fi
@ -39,6 +39,9 @@ case "$ARCH" in
i?86 | pentium3 | pentium4 | athlon | geode)
echo i386
;;
arm*)
echo arm
;;
*)
echo "$ARCH"
;;

View File

@ -1,3 +1,53 @@
-------------------------------------------------------------------
Thu Nov 3 15:45:45 CET 2011 - jeffm@suse.com
- Re-disabled patches.xen/xencons-tty_mutex.patch
- commit 187dde0
-------------------------------------------------------------------
Thu Nov 3 15:30:48 CET 2011 - jeffm@suse.com
- Re-added patches accidentally dropped with commit 28551a0c.
- commit 3795fde
-------------------------------------------------------------------
Thu Nov 3 14:49:44 CET 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-final and c/s 1123.
- commit 35973e8
-------------------------------------------------------------------
Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
- Add Elantech touchpad v3/v4 support (bnc#716852):
- Input: elantech - add v3 hardware support.
- Input: elantech - add v4 hardware support.
- Input: elantech - better support all those v2 variants.
- Input: elantech - clean up elantech_init.
- Input: elantech - correct x, y value range for v2 hardware.
- Input: elantech - get rid of ETP_2FT_* in elantech.h.
- Input: elantech - packet checking for v2 hardware.
- Input: elantech - remove ETP_EDGE_FUZZ_V2.
- Input: elantech - remove module parameter force_elantech.
- Input: elantech - use firmware provided x, y ranges.
- commit 28551a0
-------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- commit 3108a66
-------------------------------------------------------------------
Thu Oct 27 17:08:42 CEST 2011 - tiwai@suse.de
- ALSA: hda - Fix ADC input-amp handling for Cx20549 codec.
- ALSA: hda - Keep EAPD turned on for old Conexant chips.
- ALSA: hda/realtek - Fix missing volume controls with ALC260
(bnc#726812).
- commit 08229b0
-------------------------------------------------------------------
Tue Oct 25 19:33:27 CEST 2011 - ohering@suse.de

View File

@ -1,3 +1,53 @@
-------------------------------------------------------------------
Thu Nov 3 15:45:45 CET 2011 - jeffm@suse.com
- Re-disabled patches.xen/xencons-tty_mutex.patch
- commit 187dde0
-------------------------------------------------------------------
Thu Nov 3 15:30:48 CET 2011 - jeffm@suse.com
- Re-added patches accidentally dropped with commit 28551a0c.
- commit 3795fde
-------------------------------------------------------------------
Thu Nov 3 14:49:44 CET 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-final and c/s 1123.
- commit 35973e8
-------------------------------------------------------------------
Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
- Add Elantech touchpad v3/v4 support (bnc#716852):
- Input: elantech - add v3 hardware support.
- Input: elantech - add v4 hardware support.
- Input: elantech - better support all those v2 variants.
- Input: elantech - clean up elantech_init.
- Input: elantech - correct x, y value range for v2 hardware.
- Input: elantech - get rid of ETP_2FT_* in elantech.h.
- Input: elantech - packet checking for v2 hardware.
- Input: elantech - remove ETP_EDGE_FUZZ_V2.
- Input: elantech - remove module parameter force_elantech.
- Input: elantech - use firmware provided x, y ranges.
- commit 28551a0
-------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- commit 3108a66
-------------------------------------------------------------------
Thu Oct 27 17:08:42 CEST 2011 - tiwai@suse.de
- ALSA: hda - Fix ADC input-amp handling for Cx20549 codec.
- ALSA: hda - Keep EAPD turned on for old Conexant chips.
- ALSA: hda/realtek - Fix missing volume controls with ALC260
(bnc#726812).
- commit 08229b0
-------------------------------------------------------------------
Tue Oct 25 19:33:27 CEST 2011 - ohering@suse.de

View File

@ -1,3 +1,53 @@
-------------------------------------------------------------------
Thu Nov 3 15:45:45 CET 2011 - jeffm@suse.com
- Re-disabled patches.xen/xencons-tty_mutex.patch
- commit 187dde0
-------------------------------------------------------------------
Thu Nov 3 15:30:48 CET 2011 - jeffm@suse.com
- Re-added patches accidentally dropped with commit 28551a0c.
- commit 3795fde
-------------------------------------------------------------------
Thu Nov 3 14:49:44 CET 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-final and c/s 1123.
- commit 35973e8
-------------------------------------------------------------------
Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
- Add Elantech touchpad v3/v4 support (bnc#716852):
- Input: elantech - add v3 hardware support.
- Input: elantech - add v4 hardware support.
- Input: elantech - better support all those v2 variants.
- Input: elantech - clean up elantech_init.
- Input: elantech - correct x, y value range for v2 hardware.
- Input: elantech - get rid of ETP_2FT_* in elantech.h.
- Input: elantech - packet checking for v2 hardware.
- Input: elantech - remove ETP_EDGE_FUZZ_V2.
- Input: elantech - remove module parameter force_elantech.
- Input: elantech - use firmware provided x, y ranges.
- commit 28551a0
-------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- commit 3108a66
-------------------------------------------------------------------
Thu Oct 27 17:08:42 CEST 2011 - tiwai@suse.de
- ALSA: hda - Fix ADC input-amp handling for Cx20549 codec.
- ALSA: hda - Keep EAPD turned on for old Conexant chips.
- ALSA: hda/realtek - Fix missing volume controls with ALC260
(bnc#726812).
- commit 08229b0
-------------------------------------------------------------------
Tue Oct 25 19:33:27 CEST 2011 - ohering@suse.de

View File

@ -1,3 +1,53 @@
-------------------------------------------------------------------
Thu Nov 3 15:45:45 CET 2011 - jeffm@suse.com
- Re-disabled patches.xen/xencons-tty_mutex.patch
- commit 187dde0
-------------------------------------------------------------------
Thu Nov 3 15:30:48 CET 2011 - jeffm@suse.com
- Re-added patches accidentally dropped with commit 28551a0c.
- commit 3795fde
-------------------------------------------------------------------
Thu Nov 3 14:49:44 CET 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-final and c/s 1123.
- commit 35973e8
-------------------------------------------------------------------
Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
- Add Elantech touchpad v3/v4 support (bnc#716852):
- Input: elantech - add v3 hardware support.
- Input: elantech - add v4 hardware support.
- Input: elantech - better support all those v2 variants.
- Input: elantech - clean up elantech_init.
- Input: elantech - correct x, y value range for v2 hardware.
- Input: elantech - get rid of ETP_2FT_* in elantech.h.
- Input: elantech - packet checking for v2 hardware.
- Input: elantech - remove ETP_EDGE_FUZZ_V2.
- Input: elantech - remove module parameter force_elantech.
- Input: elantech - use firmware provided x, y ranges.
- commit 28551a0
-------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- commit 3108a66
-------------------------------------------------------------------
Thu Oct 27 17:08:42 CEST 2011 - tiwai@suse.de
- ALSA: hda - Fix ADC input-amp handling for Cx20549 codec.
- ALSA: hda - Keep EAPD turned on for old Conexant chips.
- ALSA: hda/realtek - Fix missing volume controls with ALC260
(bnc#726812).
- commit 08229b0
-------------------------------------------------------------------
Tue Oct 25 19:33:27 CEST 2011 - ohering@suse.de

View File

@ -1,3 +1,53 @@
-------------------------------------------------------------------
Thu Nov 3 15:45:45 CET 2011 - jeffm@suse.com
- Re-disabled patches.xen/xencons-tty_mutex.patch
- commit 187dde0
-------------------------------------------------------------------
Thu Nov 3 15:30:48 CET 2011 - jeffm@suse.com
- Re-added patches accidentally dropped with commit 28551a0c.
- commit 3795fde
-------------------------------------------------------------------
Thu Nov 3 14:49:44 CET 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-final and c/s 1123.
- commit 35973e8
-------------------------------------------------------------------
Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
- Add Elantech touchpad v3/v4 support (bnc#716852):
- Input: elantech - add v3 hardware support.
- Input: elantech - add v4 hardware support.
- Input: elantech - better support all those v2 variants.
- Input: elantech - clean up elantech_init.
- Input: elantech - correct x, y value range for v2 hardware.
- Input: elantech - get rid of ETP_2FT_* in elantech.h.
- Input: elantech - packet checking for v2 hardware.
- Input: elantech - remove ETP_EDGE_FUZZ_V2.
- Input: elantech - remove module parameter force_elantech.
- Input: elantech - use firmware provided x, y ranges.
- commit 28551a0
-------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- commit 3108a66
-------------------------------------------------------------------
Thu Oct 27 17:08:42 CEST 2011 - tiwai@suse.de
- ALSA: hda - Fix ADC input-amp handling for Cx20549 codec.
- ALSA: hda - Keep EAPD turned on for old Conexant chips.
- ALSA: hda/realtek - Fix missing volume controls with ALC260
(bnc#726812).
- commit 08229b0
-------------------------------------------------------------------
Tue Oct 25 19:33:27 CEST 2011 - ohering@suse.de

View File

@ -1,3 +1,53 @@
-------------------------------------------------------------------
Thu Nov 3 15:45:45 CET 2011 - jeffm@suse.com
- Re-disabled patches.xen/xencons-tty_mutex.patch
- commit 187dde0
-------------------------------------------------------------------
Thu Nov 3 15:30:48 CET 2011 - jeffm@suse.com
- Re-added patches accidentally dropped with commit 28551a0c.
- commit 3795fde
-------------------------------------------------------------------
Thu Nov 3 14:49:44 CET 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-final and c/s 1123.
- commit 35973e8
-------------------------------------------------------------------
Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
- Add Elantech touchpad v3/v4 support (bnc#716852):
- Input: elantech - add v3 hardware support.
- Input: elantech - add v4 hardware support.
- Input: elantech - better support all those v2 variants.
- Input: elantech - clean up elantech_init.
- Input: elantech - correct x, y value range for v2 hardware.
- Input: elantech - get rid of ETP_2FT_* in elantech.h.
- Input: elantech - packet checking for v2 hardware.
- Input: elantech - remove ETP_EDGE_FUZZ_V2.
- Input: elantech - remove module parameter force_elantech.
- Input: elantech - use firmware provided x, y ranges.
- commit 28551a0
-------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- commit 3108a66
-------------------------------------------------------------------
Thu Oct 27 17:08:42 CEST 2011 - tiwai@suse.de
- ALSA: hda - Fix ADC input-amp handling for Cx20549 codec.
- ALSA: hda - Keep EAPD turned on for old Conexant chips.
- ALSA: hda/realtek - Fix missing volume controls with ALC260
(bnc#726812).
- commit 08229b0
-------------------------------------------------------------------
Tue Oct 25 19:33:27 CEST 2011 - ohering@suse.de

View File

@ -1,3 +1,53 @@
-------------------------------------------------------------------
Thu Nov 3 15:45:45 CET 2011 - jeffm@suse.com
- Re-disabled patches.xen/xencons-tty_mutex.patch
- commit 187dde0
-------------------------------------------------------------------
Thu Nov 3 15:30:48 CET 2011 - jeffm@suse.com
- Re-added patches accidentally dropped with commit 28551a0c.
- commit 3795fde
-------------------------------------------------------------------
Thu Nov 3 14:49:44 CET 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-final and c/s 1123.
- commit 35973e8
-------------------------------------------------------------------
Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
- Add Elantech touchpad v3/v4 support (bnc#716852):
- Input: elantech - add v3 hardware support.
- Input: elantech - add v4 hardware support.
- Input: elantech - better support all those v2 variants.
- Input: elantech - clean up elantech_init.
- Input: elantech - correct x, y value range for v2 hardware.
- Input: elantech - get rid of ETP_2FT_* in elantech.h.
- Input: elantech - packet checking for v2 hardware.
- Input: elantech - remove ETP_EDGE_FUZZ_V2.
- Input: elantech - remove module parameter force_elantech.
- Input: elantech - use firmware provided x, y ranges.
- commit 28551a0
-------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- commit 3108a66
-------------------------------------------------------------------
Thu Oct 27 17:08:42 CEST 2011 - tiwai@suse.de
- ALSA: hda - Fix ADC input-amp handling for Cx20549 codec.
- ALSA: hda - Keep EAPD turned on for old Conexant chips.
- ALSA: hda/realtek - Fix missing volume controls with ALC260
(bnc#726812).
- commit 08229b0
-------------------------------------------------------------------
Tue Oct 25 19:33:27 CEST 2011 - ohering@suse.de

View File

@ -1,3 +1,53 @@
-------------------------------------------------------------------
Thu Nov 3 15:45:45 CET 2011 - jeffm@suse.com
- Re-disabled patches.xen/xencons-tty_mutex.patch
- commit 187dde0
-------------------------------------------------------------------
Thu Nov 3 15:30:48 CET 2011 - jeffm@suse.com
- Re-added patches accidentally dropped with commit 28551a0c.
- commit 3795fde
-------------------------------------------------------------------
Thu Nov 3 14:49:44 CET 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-final and c/s 1123.
- commit 35973e8
-------------------------------------------------------------------
Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
- Add Elantech touchpad v3/v4 support (bnc#716852):
- Input: elantech - add v3 hardware support.
- Input: elantech - add v4 hardware support.
- Input: elantech - better support all those v2 variants.
- Input: elantech - clean up elantech_init.
- Input: elantech - correct x, y value range for v2 hardware.
- Input: elantech - get rid of ETP_2FT_* in elantech.h.
- Input: elantech - packet checking for v2 hardware.
- Input: elantech - remove ETP_EDGE_FUZZ_V2.
- Input: elantech - remove module parameter force_elantech.
- Input: elantech - use firmware provided x, y ranges.
- commit 28551a0
-------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- commit 3108a66
-------------------------------------------------------------------
Thu Oct 27 17:08:42 CEST 2011 - tiwai@suse.de
- ALSA: hda - Fix ADC input-amp handling for Cx20549 codec.
- ALSA: hda - Keep EAPD turned on for old Conexant chips.
- ALSA: hda/realtek - Fix missing volume controls with ALC260
(bnc#726812).
- commit 08229b0
-------------------------------------------------------------------
Tue Oct 25 19:33:27 CEST 2011 - ohering@suse.de

View File

@ -1,3 +1,53 @@
-------------------------------------------------------------------
Thu Nov 3 15:45:45 CET 2011 - jeffm@suse.com
- Re-disabled patches.xen/xencons-tty_mutex.patch
- commit 187dde0
-------------------------------------------------------------------
Thu Nov 3 15:30:48 CET 2011 - jeffm@suse.com
- Re-added patches accidentally dropped with commit 28551a0c.
- commit 3795fde
-------------------------------------------------------------------
Thu Nov 3 14:49:44 CET 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-final and c/s 1123.
- commit 35973e8
-------------------------------------------------------------------
Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
- Add Elantech touchpad v3/v4 support (bnc#716852):
- Input: elantech - add v3 hardware support.
- Input: elantech - add v4 hardware support.
- Input: elantech - better support all those v2 variants.
- Input: elantech - clean up elantech_init.
- Input: elantech - correct x, y value range for v2 hardware.
- Input: elantech - get rid of ETP_2FT_* in elantech.h.
- Input: elantech - packet checking for v2 hardware.
- Input: elantech - remove ETP_EDGE_FUZZ_V2.
- Input: elantech - remove module parameter force_elantech.
- Input: elantech - use firmware provided x, y ranges.
- commit 28551a0
-------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- commit 3108a66
-------------------------------------------------------------------
Thu Oct 27 17:08:42 CEST 2011 - tiwai@suse.de
- ALSA: hda - Fix ADC input-amp handling for Cx20549 codec.
- ALSA: hda - Keep EAPD turned on for old Conexant chips.
- ALSA: hda/realtek - Fix missing volume controls with ALC260
(bnc#726812).
- commit 08229b0
-------------------------------------------------------------------
Tue Oct 25 19:33:27 CEST 2011 - ohering@suse.de

View File

@ -1,3 +1,53 @@
-------------------------------------------------------------------
Thu Nov 3 15:45:45 CET 2011 - jeffm@suse.com
- Re-disabled patches.xen/xencons-tty_mutex.patch
- commit 187dde0
-------------------------------------------------------------------
Thu Nov 3 15:30:48 CET 2011 - jeffm@suse.com
- Re-added patches accidentally dropped with commit 28551a0c.
- commit 3795fde
-------------------------------------------------------------------
Thu Nov 3 14:49:44 CET 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-final and c/s 1123.
- commit 35973e8
-------------------------------------------------------------------
Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
- Add Elantech touchpad v3/v4 support (bnc#716852):
- Input: elantech - add v3 hardware support.
- Input: elantech - add v4 hardware support.
- Input: elantech - better support all those v2 variants.
- Input: elantech - clean up elantech_init.
- Input: elantech - correct x, y value range for v2 hardware.
- Input: elantech - get rid of ETP_2FT_* in elantech.h.
- Input: elantech - packet checking for v2 hardware.
- Input: elantech - remove ETP_EDGE_FUZZ_V2.
- Input: elantech - remove module parameter force_elantech.
- Input: elantech - use firmware provided x, y ranges.
- commit 28551a0
-------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- commit 3108a66
-------------------------------------------------------------------
Thu Oct 27 17:08:42 CEST 2011 - tiwai@suse.de
- ALSA: hda - Fix ADC input-amp handling for Cx20549 codec.
- ALSA: hda - Keep EAPD turned on for old Conexant chips.
- ALSA: hda/realtek - Fix missing volume controls with ALC260
(bnc#726812).
- commit 08229b0
-------------------------------------------------------------------
Tue Oct 25 19:33:27 CEST 2011 - ohering@suse.de

View File

@ -1,3 +1,53 @@
-------------------------------------------------------------------
Thu Nov 3 15:45:45 CET 2011 - jeffm@suse.com
- Re-disabled patches.xen/xencons-tty_mutex.patch
- commit 187dde0
-------------------------------------------------------------------
Thu Nov 3 15:30:48 CET 2011 - jeffm@suse.com
- Re-added patches accidentally dropped with commit 28551a0c.
- commit 3795fde
-------------------------------------------------------------------
Thu Nov 3 14:49:44 CET 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-final and c/s 1123.
- commit 35973e8
-------------------------------------------------------------------
Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
- Add Elantech touchpad v3/v4 support (bnc#716852):
- Input: elantech - add v3 hardware support.
- Input: elantech - add v4 hardware support.
- Input: elantech - better support all those v2 variants.
- Input: elantech - clean up elantech_init.
- Input: elantech - correct x, y value range for v2 hardware.
- Input: elantech - get rid of ETP_2FT_* in elantech.h.
- Input: elantech - packet checking for v2 hardware.
- Input: elantech - remove ETP_EDGE_FUZZ_V2.
- Input: elantech - remove module parameter force_elantech.
- Input: elantech - use firmware provided x, y ranges.
- commit 28551a0
-------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- commit 3108a66
-------------------------------------------------------------------
Thu Oct 27 17:08:42 CEST 2011 - tiwai@suse.de
- ALSA: hda - Fix ADC input-amp handling for Cx20549 codec.
- ALSA: hda - Keep EAPD turned on for old Conexant chips.
- ALSA: hda/realtek - Fix missing volume controls with ALC260
(bnc#726812).
- commit 08229b0
-------------------------------------------------------------------
Tue Oct 25 19:33:27 CEST 2011 - ohering@suse.de

View File

@ -1,3 +1,53 @@
-------------------------------------------------------------------
Thu Nov 3 15:45:45 CET 2011 - jeffm@suse.com
- Re-disabled patches.xen/xencons-tty_mutex.patch
- commit 187dde0
-------------------------------------------------------------------
Thu Nov 3 15:30:48 CET 2011 - jeffm@suse.com
- Re-added patches accidentally dropped with commit 28551a0c.
- commit 3795fde
-------------------------------------------------------------------
Thu Nov 3 14:49:44 CET 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-final and c/s 1123.
- commit 35973e8
-------------------------------------------------------------------
Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
- Add Elantech touchpad v3/v4 support (bnc#716852):
- Input: elantech - add v3 hardware support.
- Input: elantech - add v4 hardware support.
- Input: elantech - better support all those v2 variants.
- Input: elantech - clean up elantech_init.
- Input: elantech - correct x, y value range for v2 hardware.
- Input: elantech - get rid of ETP_2FT_* in elantech.h.
- Input: elantech - packet checking for v2 hardware.
- Input: elantech - remove ETP_EDGE_FUZZ_V2.
- Input: elantech - remove module parameter force_elantech.
- Input: elantech - use firmware provided x, y ranges.
- commit 28551a0
-------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- commit 3108a66
-------------------------------------------------------------------
Thu Oct 27 17:08:42 CEST 2011 - tiwai@suse.de
- ALSA: hda - Fix ADC input-amp handling for Cx20549 codec.
- ALSA: hda - Keep EAPD turned on for old Conexant chips.
- ALSA: hda/realtek - Fix missing volume controls with ALC260
(bnc#726812).
- commit 08229b0
-------------------------------------------------------------------
Tue Oct 25 19:33:27 CEST 2011 - ohering@suse.de

View File

@ -1,3 +1,53 @@
-------------------------------------------------------------------
Thu Nov 3 15:45:45 CET 2011 - jeffm@suse.com
- Re-disabled patches.xen/xencons-tty_mutex.patch
- commit 187dde0
-------------------------------------------------------------------
Thu Nov 3 15:30:48 CET 2011 - jeffm@suse.com
- Re-added patches accidentally dropped with commit 28551a0c.
- commit 3795fde
-------------------------------------------------------------------
Thu Nov 3 14:49:44 CET 2011 - jbeulich@novell.com
- Update Xen patches to 3.1-final and c/s 1123.
- commit 35973e8
-------------------------------------------------------------------
Wed Nov 2 15:43:11 CET 2011 - jeffm@suse.com
- Add Elantech touchpad v3/v4 support (bnc#716852):
- Input: elantech - add v3 hardware support.
- Input: elantech - add v4 hardware support.
- Input: elantech - better support all those v2 variants.
- Input: elantech - clean up elantech_init.
- Input: elantech - correct x, y value range for v2 hardware.
- Input: elantech - get rid of ETP_2FT_* in elantech.h.
- Input: elantech - packet checking for v2 hardware.
- Input: elantech - remove ETP_EDGE_FUZZ_V2.
- Input: elantech - remove module parameter force_elantech.
- Input: elantech - use firmware provided x, y ranges.
- commit 28551a0
-------------------------------------------------------------------
Sun Oct 30 12:47:38 CET 2011 - mmarek@suse.cz
- rpm/{arch-symbols,mkspec}: Add support for ARM
The various ARM families need similar handling like i?86.
- commit 3108a66
-------------------------------------------------------------------
Thu Oct 27 17:08:42 CEST 2011 - tiwai@suse.de
- ALSA: hda - Fix ADC input-amp handling for Cx20549 codec.
- ALSA: hda - Keep EAPD turned on for old Conexant chips.
- ALSA: hda/realtek - Fix missing volume controls with ALC260
(bnc#726812).
- commit 08229b0
-------------------------------------------------------------------
Tue Oct 25 19:33:27 CEST 2011 - ohering@suse.de

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6b5be03ea4b23d9773ac856754d0c3a3563c16201fea64eab31c95119d4efebf
size 77189710
oid sha256:2573d2378c754b0c602b57586e9311e5b38c5d1e6c137f02873833633a4b9359
size 77190238

1
mkspec
View File

@ -248,6 +248,7 @@ sub arch2rpm {
sub _arch2rpm {
my $arch = shift;
return "\%ix86" if $arch eq "i386";
return "\%arm" if $arch eq "arm";
return $arch;
}

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4f6e0520039a0a8c9132e519f5c4870dfdfb76b7b101f1b4645fccdca4f0041f
size 8125
oid sha256:061b827300f783aee7a0bfe623ebdda7749923f526d1c368881e653b2e519344
size 24075

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a1b7c652c10011c301602b050b178f9cf363fe1194cd62caedf674d1561412f2
size 2040551
oid sha256:f9810f45a353ff2328fb4b90dfec8fcef374440161a1f4e693cebd79cf29a938
size 2034859

View File

@ -423,9 +423,23 @@
patches.fixes/input-add-acer-aspire-5710-to-nomux.patch
patches.drivers/input-Add-LED-support-to-Synaptics-device
patches.drivers/input-elantech-correct-x-y-value-range-for-v2-hardware
patches.drivers/input-elantech-get-rid-of-etp_2ft_-in-elantech-h
patches.drivers/input-elantech-use-firmware-provided-x-y-ranges
patches.drivers/input-elantech-remove-etp_edge_fuzz_v2
patches.drivers/input-elantech-packet-checking-for-v2-hardware
patches.drivers/input-elantech-clean-up-elantech_init
patches.drivers/input-elantech-add-v3-hardware-support
patches.drivers/input-elantech-add-v4-hardware-support
patches.drivers/input-elantech-better-support-all-those-v2-variants
patches.drivers/input-elantech-remove-module-parameter-force_elantech
##########################################################
# Sound
##########################################################
patches.drivers/alsa-hda-0001-realtek-Fix-missing-volume-controls-with-ALC260
patches.drivers/alsa-hda-0002-Keep-EAPD-turned-on-for-old-Conexant-chips
patches.drivers/alsa-hda-0003-Fix-ADC-input-amp-handling-for-Cx20549
########################################################
# Char / serial
@ -813,10 +827,7 @@
patches.xen/xen3-patch-2.6.38
patches.xen/xen3-patch-2.6.39
patches.xen/xen3-patch-3.0
patches.xen/xen3-patch-3.1-rc5
patches.xen/xen3-patch-3.1-rc6-rc7
patches.xen/xen3-patch-3.1-rc7-rc8
patches.xen/xen3-patch-3.1-rc8-rc9
patches.xen/xen3-patch-3.1
patches.xen/xen3-apei_allow_drivers_access_nvs_ram.patch
patches.xen/xen3-acpi_implement_overriding_of_arbitrary_acpi_tables_via_initrd.patch
patches.xen/xen3-stack-unwind
@ -834,7 +845,6 @@
patches.xen/xen-swiotlb-heuristics
patches.xen/xen-configurable-guest-devices
patches.xen/xen-setup-gsi
patches.xen/xen-kzalloc
patches.xen/xen-sections
patches.xen/xen-unpriv-build
patches.xen/xen-cpufreq-report
@ -854,7 +864,6 @@
patches.xen/xen-netback-kernel-threads
patches.xen/xen-cxgb3
patches.xen/xen-dcdbas
patches.xen/xen-floppy
patches.xen/xen-x86-panic-no-reboot
patches.xen/xen-x86-dcr-fallback
patches.xen/xen-x86-no-lapic
@ -869,4 +878,4 @@
patches.xen/xen-x86_64-dump-user-pgt
patches.xen/xen-x86_64-note-init-p2m
patches.xen/xen-x86_64-unmapped-initrd
patches.xen/xencons-tty_mutex.patch
- patches.xen/xencons-tty_mutex.patch

View File

@ -1,3 +1,3 @@
2011-10-25 19:33:27 +0200
GIT Revision: 68289aa24ce91a04a4746dfd01ac64503178184b
2011-11-03 15:45:45 +0100
GIT Revision: 187dde0ccea287064d61786473334521ecf7d610
GIT Branch: master