/[packages]/cauldron/kernel-tmb/current/SPECS/kernel-tmb.spec
ViewVC logotype

Annotation of /cauldron/kernel-tmb/current/SPECS/kernel-tmb.spec

Parent Directory Parent Directory | Revision Log Revision Log


Revision 259019 - (hide annotations) (download)
Sat Jun 9 21:09:32 2012 UTC (11 years, 10 months ago) by tmb
File size: 319229 byte(s)
- update to 3.4.2
- add patch:
  * FE01: ext4: fix the free blocks calculation for ext3
          file systems w/ uninit_bg


1 tmb 61100 #
2     # *tmb* series kernels now use kernel.org versioning
3     #
4 tmb 134369 %define kernelversion 3
5 tmb 254432 %define patchlevel 4
6 tmb 134369 # sublevel is now used for -stable patches
7 tmb 259019 %define sublevel 2
8 tmb 61100
9 tmb 134369 # Package release
10 tmb 254432 %define mgarel 1
11 tmb 134369
12 tmb 61100 # kernel Makefile extraversion is substituted by
13 tmb 134369 # kpatch/kgit wich are either 0 (empty), rc (kpatch), git (kgit)
14 tmb 224401 %define kpatch 0
15 tmb 134369 # kernel.org -gitX patch (only the number after "git")
16 tmb 61100 %define kgit 0
17    
18 tmb 134369 # Patch tarball tag
19     %define ktag tmb
20     # kernel base name (also name of srpm)
21     %define kname kernel-%{ktag}
22 tmb 61100
23 tmb 134369 # release defines
24 tmb 110087 %define rpmtag %{distsuffix}%{mgaver}
25 tmb 61100 %if %kpatch
26     %if %kgit
27 tmb 134369 %define rpmrel %mkrel 0.%{kpatch}.%{kgit}.%{mgarel}
28 tmb 61100 %else
29 tmb 134369 %define rpmrel %mkrel 0.%{kpatch}.%{mgarel}
30 tmb 61100 %endif
31     %else
32 tmb 134369 %define rpmrel %mkrel %{mgarel}
33 tmb 61100 %endif
34    
35 tmb 134369 # fakerel and fakever never change, they are used to fool
36     # rpm/urpmi/smart
37 tmb 61100 %define fakever 1
38     %define fakerel %mkrel 1
39    
40 tmb 134369 # version defines
41     %define kversion %{kernelversion}.%{patchlevel}.%{sublevel}
42     %define kverrel %{kversion}-%{rpmrel}
43    
44 tmb 61100 # When we are using a pre/rc patch, the tarball is a sublevel -1
45     %if %kpatch
46 tmb 134369 %if %sublevel
47     %define tar_ver %{kernelversion}.%{patchlevel}
48 tmb 61100 %else
49 tmb 134369 %define tar_ver %{kernelversion}.%(expr %{patchlevel} - 1)
50     %endif
51     %define patch_ver %{kversion}-%{kpatch}-%{ktag}%{mgarel}
52 tmb 61100 %else
53 tmb 134369 %define tar_ver %{kernelversion}.%{patchlevel}
54     %define patch_ver %{kversion}-%{ktag}%{mgarel}
55 tmb 61100 %endif
56    
57 tmb 134369 # Used for not making too long names for rpms or search paths
58 tmb 61100 %if %kpatch
59     %if %kgit
60 tmb 134369 %define buildrpmrel 0.%{kpatch}.%{kgit}.%{mgarel}%{rpmtag}
61 tmb 61100 %else
62 tmb 134369 %define buildrpmrel 0.%{kpatch}.%{mgarel}%{rpmtag}
63 tmb 61100 %endif
64     %else
65 tmb 134369 %define buildrpmrel %{mgarel}%{rpmtag}
66 tmb 61100 %endif
67 tmb 134369 %define buildrel %{kversion}-%{buildrpmrel}
68 tmb 61100
69     # having different top level names for packges means that you have to remove them by hard :(
70 tmb 134369 %define top_dir_name %{kname}-%{_arch}
71 tmb 61100
72 tmb 134369 %define build_dir ${RPM_BUILD_DIR}/%{top_dir_name}
73     %define src_dir %{build_dir}/linux-%{tar_ver}
74 tmb 61100
75     # disable useless debug rpms...
76 tmb 134369 %define _enable_debug_packages %{nil}
77     %define debug_package %{nil}
78 tmb 61100
79     # Build defines
80 tmb 134369 %define build_doc 0
81     %define build_source 1
82     %define build_devel 1
83     %define build_debug 0
84 tmb 61100
85 tmb 134369 # Build desktop586 (i586 / 4GB)
86 tmb 61100 %ifarch %{ix86}
87     %define build_desktop586 1
88     %endif
89    
90 tmb 134369 # Build desktop (i686 / 4GB) / x86_64
91 tmb 61100 %define build_desktop 1
92    
93     # Build laptop (i686 / 4GB)/ x86_64
94     %ifarch %{ix86} x86_64
95     %define build_laptop 1
96     %endif
97    
98     # Build realtime (i686 / 4GB)/x86_64
99     %define build_realtime 0
100    
101     # Build server (i686 / 64GB)/x86_64
102     %define build_server 1
103    
104     # End of user definitions
105     %{?_without_desktop586: %global build_desktop586 0}
106     %{?_without_desktop: %global build_desktop 0}
107     %{?_without_laptop: %global build_laptop 0}
108     %{?_without_realtime: %global build_realtime 0}
109     %{?_without_server: %global build_server 0}
110     %{?_without_doc: %global build_doc 0}
111     %{?_without_source: %global build_source 0}
112     %{?_without_devel: %global build_devel 0}
113     %{?_without_debug: %global build_debug 0}
114    
115     %{?_with_desktop586: %global build_desktop586 1}
116     %{?_with_desktop: %global build_desktop 1}
117     %{?_with_laptop: %global build_laptop 1}
118     %{?_with_realtime: %global build_realtime 1}
119     %{?_with_server: %global build_server 1}
120     %{?_with_doc: %global build_doc 1}
121     %{?_with_source: %global build_source 1}
122     %{?_with_devel: %global build_devel 1}
123     %{?_with_debug: %global build_debug 1}
124    
125     # For the .nosrc.rpm
126 tmb 134369 %define build_nosrc 0
127 tmb 61100 %{?_with_nosrc: %global build_nosrc 1}
128    
129     %define kmake %make
130     # there are places where parallel make don't work
131     %define smake make
132    
133     # Parallelize xargs invocations on smp machines
134     %define kxargs xargs %([ -z "$RPM_BUILD_NCPUS" ] \\\
135     && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\
136     [ "$RPM_BUILD_NCPUS" -gt 1 ] && echo "-P $RPM_BUILD_NCPUS")
137    
138     #
139     # SRC RPM description
140     #
141 tmb 95167 Summary: Linux kernel built for %vendor with modifications by %{ktag}
142 tmb 61100 Name: %{kname}
143     Version: %{kversion}
144     Release: %{rpmrel}
145     License: GPLv2
146     Group: System/Kernel and hardware
147     ExclusiveArch: %{ix86} x86_64
148     ExclusiveOS: Linux
149 tmb 95167 URL: http://www.kernel.org
150 tmb 61100
151     ####################################################################
152     #
153     # Sources
154     #
155     ### This is for full SRC RPM
156 tmb 173213 Source0: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/linux-%{tar_ver}.tar.xz
157     Source1: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/linux-%{tar_ver}.tar.sign
158 tmb 61100 ### This is for stripped SRC RPM
159     %if %build_nosrc
160     NoSource: 0
161     %endif
162     # This is for disabling mrproper in -devel rpms
163     Source2: disable-mrproper-prepare-scripts-configs-in-devel-rpms.patch
164    
165     Source4: README.kernel-%{ktag}-sources
166    
167     Source100: linux-%{patch_ver}.tar.xz
168     Source101: linux-%{patch_ver}.tar.xz.asc
169     Source102: %{kname}.patchlist
170    
171     ####################################################################
172     #
173     # Patches
174    
175     #
176     # Patch0 to Patch100 are for core kernel upgrades.
177     #
178    
179 tmb 134369 # Pre linus patch: ftp://ftp.kernel.org/pub/linux/kernel/v3.0/testing
180 tmb 61100
181     %if %kpatch
182 tmb 134369 %if %sublevel
183 tmb 173213 Patch2: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/stable-review/patch-%{kversion}-%{kpatch}.xz
184     Source11: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/stable-review/patch-%{kversion}-%{kpatch}.sign
185 tmb 134369 %else
186 tmb 173213 Patch1: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/testing/patch-%{kernelversion}.%{patchlevel}-%{kpatch}.xz
187     Source10: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/testing/patch-%{kernelversion}.%{patchlevel}-%{kpatch}.sign
188 tmb 61100 %endif
189 tmb 134369 %endif
190 tmb 61100 %if %kgit
191 tmb 173213 Patch2: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/snapshots/patch-%{kernelversion}.%{patchlevel}-%{kpatch}-git%{kgit}.xz
192     Source11: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/snapshots/patch-%{kernelversion}.%{patchlevel}-%{kpatch}-git%{kgit}.sign
193 tmb 61100 %endif
194 tmb 134369 %if %sublevel
195     %if %kpatch
196     %define prev_sublevel %(expr %{sublevel} - 1)
197     %if %prev_sublevel
198 tmb 173213 Patch1: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/patch-%{kernelversion}.%{patchlevel}.%{prev_sublevel}.xz
199     Source10: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/patch-%{kernelversion}.%{patchlevel}.%{prev_sublevel}.sign
200 tmb 61100 %endif
201 tmb 134369 %else
202 tmb 158005 Patch1: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/patch-%{kversion}.xz
203     Source10: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/patch-%{kversion}.sign
204 tmb 134369 %endif
205     %endif
206 tmb 61100
207     #END
208     ####################################################################
209    
210     # Defines for the things that are needed for all the kernels
211     #
212     %define common_description_kernel The kernel package contains the Linux kernel (vmlinuz), the core of your \
213 tmb 95167 %vendor Linux operating system. The kernel handles the basic functions \
214 tmb 61100 of the operating system: memory allocation, process allocation, device \
215     input and output, etc.
216    
217     ### Global Requires/Provides
218 tmb 234007 %define requires1 dracut >= 017-9
219 tmb 61100 %define requires2 bootloader-utils >= 1.12-1
220 tmb 255677 %define requires3 sysfsutils >= 1.3.0-1 kmod >= 7-6
221 tmb 191904 %define requires4 kernel-firmware >= 20111229-1
222 tmb 61100
223     %define kprovides %{kname} = %{kverrel}, kernel = %{tar_ver}, drbd-api = 88
224    
225     Autoreqprov: no
226 tmb 259019 BuildRequires: gcc >= 4.0.1-5 kmod >= 7-6
227 tmb 61100
228     %description
229     %common_description_kernel
230    
231    
232     # mkflavour() name flavour processor
233     # name: the flavour name in the package name
234     # flavour: first parameter of CreateKernel()
235     %define mkflavour() \
236     %package -n %{kname}-%{1}-%{buildrel} \
237     Version: %{fakever} \
238     Release: %{fakerel} \
239     Provides: %kprovides \
240     Provides: should-restart = system \
241     Requires(pre): %requires1 %requires2 %requires3 %requires4 \
242     %ifarch %{ix86} \
243     Conflicts: arch(x86_64) \
244     %endif \
245     Summary: %{expand:%{summary_%(echo %{1})}} \
246     Group: System/Kernel and hardware \
247     %description -n %{kname}-%{1}-%{buildrel} \
248     %common_description_kernel %{expand:%{info_%(echo %{1})}} \
249     \
250     %if %build_devel \
251     %package -n %{kname}-%{1}-devel-%{buildrel} \
252     Version: %{fakever} \
253     Release: %{fakerel} \
254     Requires: glibc-devel ncurses-devel make gcc perl \
255     %ifarch %{ix86} \
256     Conflicts: arch(x86_64) \
257     %endif \
258     Summary: The kernel-devel files for %{kname}-%{1}-%{buildrel} \
259     Group: Development/Kernel \
260     Provides: kernel-devel = %{kverrel} \
261     %description -n %{kname}-%{1}-devel-%{buildrel} \
262     This package contains the kernel-devel files that should be enough to build \
263     3rdparty drivers against for use with %{kname}-%{1}-%{buildrel}. \
264     \
265     If you want to build your own kernel, you need to install the full \
266     %{kname}-source-%{buildrel} rpm. \
267     %endif \
268     \
269     %package -n %{kname}-%{1}-latest \
270     Version: %{kversion} \
271     Release: %{rpmrel} \
272     Summary: Virtual rpm for latest %{kname}-%{1} \
273     Group: System/Kernel and hardware \
274     Requires: %{kname}-%{1}-%{buildrel} \
275     Obsoletes: %{kname}-%{1}-smp-latest <= 2.6.22-0.rc5.%{expand:%mkrel 1} \
276     %ifarch %{ix86} \
277     Conflicts: arch(x86_64) \
278     %endif \
279     %description -n %{kname}-%{1}-latest \
280     This package is a virtual rpm that aims to make sure you always have the \
281     latest %{kname}-%{1} installed... \
282     \
283     %if %build_devel \
284     %package -n %{kname}-%{1}-devel-latest \
285     Version: %{kversion} \
286     Release: %{rpmrel} \
287     Summary: Virtual rpm for latest %{kname}-%{1}-devel \
288     Group: Development/Kernel \
289     Requires: %{kname}-%{1}-devel-%{buildrel} \
290     Obsoletes: %{kname}-%{1}-smp-devel-latest <= 2.6.22-0.rc5.%{expand:%mkrel 1} \
291     %ifarch %{ix86} \
292     Conflicts: arch(x86_64) \
293     %endif \
294     %description -n %{kname}-%{1}-devel-latest \
295     This package is a virtual rpm that aims to make sure you always have the \
296     latest %{kname}-%{1}-devel installed... \
297     %endif \
298     \
299     %post -n %{kname}-%{1}-%{buildrel} -f kernel_files.%{1}-post \
300 tmb 185705 %posttrans -n %{kname}-%{1}-%{buildrel} -f kernel_files.%{1}-posttrans \
301 tmb 61100 %preun -n %{kname}-%{1}-%{buildrel} -f kernel_files.%{1}-preun \
302     %postun -n %{kname}-%{1}-%{buildrel} -f kernel_files.%{1}-postun \
303     \
304     %if %build_devel \
305     %post -n %{kname}-%{1}-devel-%{buildrel} -f kernel_devel_files.%{1}-post \
306     %preun -n %{kname}-%{1}-devel-%{buildrel} -f kernel_devel_files.%{1}-preun \
307     %endif \
308     \
309     %files -n %{kname}-%{1}-%{buildrel} -f kernel_files.%{1} \
310     %files -n %{kname}-%{1}-latest \
311     \
312     %if %build_devel \
313     %files -n %{kname}-%{1}-devel-%{buildrel} -f kernel_devel_files.%{1} \
314     %files -n %{kname}-%{1}-devel-latest \
315     %endif
316    
317    
318     #
319     # kernel-desktop586: i586, smp-alternatives, 4GB
320     #
321     %ifarch %{ix86}
322     %if %build_desktop586
323 tmb 185705 %define summary_desktop586 Linux kernel for desktop use with i586 and up to 4GB RAM
324 tmb 61100 %define info_desktop586 This kernel is compiled for desktop use, single or \
325 tmb 185705 multiple i586 processor(s)/core(s) and less than 4GB RAM (usually 3-3.5GB \
326     detected, if you need/want to use all 4GB or more, install %{kname}-server),\
327     using full preempt, BFS cpu scheduler and cfq i/o scheduler. \
328 tmb 61100 This kernel relies on in-kernel smp alternatives to switch between up & smp \
329     mode depending on detected hardware. To force the kernel to boot in single \
330     processor mode, use the "nosmp" boot parameter.
331     %mkflavour desktop586
332     %endif
333     %endif
334    
335     #
336     # kernel-desktop: i686, smp-alternatives, 4 GB / x86_64
337     #
338     %if %build_desktop
339     %ifarch %{ix86}
340 tmb 185705 %define summary_desktop Linux Kernel for desktop use with i686 and up to 4GB RAM
341 tmb 61100 %define info_desktop This kernel is compiled for desktop use, single or \
342 tmb 185705 multiple i686 processor(s)/core(s) and less than 4GB RAM (usually 3-3.5GB \
343     detected, if you need/want to use all 4GB or more, install %{kname}-server), \
344     using full preempt, BFS cpu scheduler and cfq i/o scheduler. \
345 tmb 61100 This kernel relies on in-kernel smp alternatives to switch between up & smp \
346     mode depending on detected hardware. To force the kernel to boot in single \
347     processor mode, use the "nosmp" boot parameter.
348     %else
349     %define summary_desktop Linux Kernel for desktop use with %{_arch}
350     %define info_desktop This kernel is compiled for desktop use, single or \
351     multiple %{_arch} processor(s)/core(s), using full preempt, BFS cpu \
352     scheduler and cfq i/o scheduler. \
353     This kernel relies on in-kernel smp alternatives to switch between up & smp \
354     mode depending on detected hardware. To force the kernel to boot in single \
355     processor mode, use the "nosmp" boot parameter.
356     %endif
357     %mkflavour desktop
358     %endif
359    
360     #
361     # kernel-laptop: i686, smp-alternatives, 4GB / x86_64
362     #
363     %if %build_laptop
364     %ifarch %{ix86}
365 tmb 185705 %define summary_laptop Linux kernel for laptop use with i686 and up to 4GB
366 tmb 61100 %define info_laptop This kernel is compiled for laptop use, single or \
367 tmb 185705 multiple i686 processor(s)/core(s) and less than 4GB RAM (usually 3-3.5GB \
368     detected, if you need/want to use all 4GB or more, install %{kname}-server), \
369     using HZ_250 to save battery, voluntary preempt, BFS cpu scheduler, \
370     cfq i/o scheduler and some other laptop-specific optimizations. \
371     If you want to sacrifice battery life for performance, you better use the \
372     %{kname}-desktop. \
373 tmb 61100 This kernel relies on in-kernel smp alternatives to switch between up & smp \
374     mode depending on detected hardware. To force the kernel to boot in single \
375     processor mode, use the "nosmp" boot parameter. \
376     NOTE! This kernel also uses TuxOnIce by default.
377     %else
378     %define summary_laptop Linux kernel for laptop use with %{_arch}
379     %define info_laptop This kernel is compiled for laptop use, single or \
380     multiple %{_arch} processor(s)/core(s), using HZ_250 to save battery, \
381     voluntary preempt, BFS cpu scheduler, cfq i/o scheduler and some other \
382     laptop-specific optimizations. If you want to sacrifice battery life for \
383     performance, you better use the %{kname}-desktop. \
384     This kernel relies on in-kernel smp alternatives to switch between up & smp \
385     mode depending on detected hardware. To force the kernel to boot in single \
386     processor mode, use the "nosmp" boot parameter. \
387     NOTE! This kernel also uses TuxOnIce by default.
388     %endif
389     %mkflavour laptop
390     %endif
391    
392     %if %build_realtime
393     %ifarch %{ix86}
394     %define summary_realtime Linux Kernel for desktop use with i686 & 4GB RAM
395     %define info_realtime This kernel is compiled for desktop use, single or \
396     multiple i686 processor(s)/core(s) and less than 4GB RAM, using full \
397     preempt and realtime, BFS cpu scheduler and cfq i/o scheduler. \
398     This kernel relies on in-kernel smp alternatives to switch between up & smp \
399     mode depending on detected hardware. To force the kernel to boot in single \
400     processor mode, use the "nosmp" boot parameter.
401     %else
402     %define summary_realtime Linux Kernel for desktop use with %{_arch}
403     %define info_realtime This kernel is compiled for desktop use, single or \
404     multiple %{_arch} processor(s)/core(s), using full preempt and realtime, \
405     BFS cpu scheduler and cfq i/o scheduler. \
406     This kernel relies on in-kernel smp alternatives to switch between up & smp \
407     mode depending on detected hardware. To force the kernel to boot in single \
408     processor mode, use the "nosmp" boot parameter.
409     %endif
410     %mkflavour realtime
411     %endif
412    
413     #
414     # kernel-server: i686, smp-alternatives, 64 GB /x86_64
415     #
416     %if %build_server
417     %ifarch %{ix86}
418     %define summary_server Linux Kernel for server use with i686 & 64GB RAM
419     %define info_server This kernel is compiled for server use, single or \
420     multiple i686 processor(s)/core(s) and up to 64GB RAM using PAE, using \
421     no preempt, BFS cpu scheduler and cfq i/o scheduler. \
422     This kernel relies on in-kernel smp alternatives to switch between up & smp \
423     mode depending on detected hardware. To force the kernel to boot in single \
424     processor mode, use the "nosmp" boot parameter.
425     %else
426     %define summary_server Linux Kernel for server use with %{_arch}
427     %define info_server This kernel is compiled for server use, single or \
428     multiple %{_arch} processor(s)/core(s), using no preempt, BFS cpu scheduler \
429     and cfq i/o scheduler. \
430     This kernel relies on in-kernel smp alternatives to switch between up & smp \
431     mode depending on detected hardware. To force the kernel to boot in single \
432     processor mode, use the "nosmp" boot parameter.
433     %endif
434     %mkflavour server
435     %endif
436    
437     #
438     # kernel-source
439     #
440     %if %build_source
441     %package -n %{kname}-source-%{buildrel}
442     Version: %{fakever}
443     Release: %{fakerel}
444     Requires: glibc-devel, ncurses-devel, make, gcc, perl, diffutils
445     Summary: The Linux source code for %{kname}-%{buildrel}
446     Group: Development/Kernel
447     Autoreqprov: no
448 tmb 134369 Provides: kernel-source = %{kverrel}
449     Buildarch: noarch
450 tmb 61100
451     %description -n %{kname}-source-%{buildrel}
452     The %{kname}-source package contains the source code files for the %{ktag}
453     series Linux kernel. Theese source files are only needed if you want to
454     build your own custom kernel that is better tuned to your particular hardware.
455    
456     If you only want the files needed to build 3rdparty (nVidia, Ati, dkms-*,...)
457     drivers against, install the *-devel-* rpm that is matching your kernel.
458    
459    
460     %post -n %{kname}-source-%{buildrel}
461     for i in /lib/modules/%{kversion}-%{ktag}-*-%{buildrpmrel}; do
462     if [ -d $i ]; then
463     if [ ! -L $i/build -a ! -L $i/source ]; then
464     ln -sf /usr/src/%{kversion}-%{ktag}-%{buildrpmrel} $i/build
465     ln -sf /usr/src/%{kversion}-%{ktag}-%{buildrpmrel} $i/source
466     fi
467     fi
468     done
469    
470     %preun -n %{kname}-source-%{buildrel}
471     for i in /lib/modules/%{kversion}-%{ktag}-*-%{buildrpmrel}/{build,source}; do
472     if [ -L $i ]; then
473     if [ "$(readlink $i)" = "/usr/src/%{kversion}-%{ktag}-%{buildrpmrel}" ]; then
474     rm -f $i
475     fi
476     fi
477     done
478     exit 0
479    
480     #
481     # kernel-source-latest: virtual rpm
482     #
483     %package -n %{kname}-source-latest
484     Version: %{kversion}
485     Release: %{rpmrel}
486     Summary: Virtual rpm for latest %{kname}-source
487     Group: Development/Kernel
488     Requires: %{kname}-source-%{buildrel}
489 tmb 134369 Buildarch: noarch
490 tmb 61100
491     %description -n %{kname}-source-latest
492     This package is a virtual rpm that aims to make sure you always have the
493     latest %{kname}-source installed...
494     %endif
495    
496     #
497     # kernel-doc: documentation for the Linux kernel
498     #
499     %if %build_doc
500     %package -n %{kname}-doc
501     Version: %{kversion}
502     Release: %{rpmrel}
503     Summary: Various documentation bits found in the %{kname} source
504     Group: Books/Computer books
505     Buildarch: noarch
506    
507     %description -n %{kname}-doc
508     This package contains documentation files from the %{kname} source.
509     Various bits of information about the Linux kernel and the device drivers
510     shipped with it are documented in these files. You also might want install
511     this package if you need a reference to the options that can be passed to
512     Linux kernel modules at load time.
513     %endif
514    
515     #
516     # End packages - here begins build stage
517     #
518     %prep
519     %setup -q -n %top_dir_name -c
520    
521     %setup -q -n %top_dir_name -D -T -a100
522    
523     %define patches_dir ../%{patch_ver}/
524    
525     cd %src_dir
526 tmb 134369
527     %if %sublevel
528 tmb 61100 %if %kpatch
529 tmb 134369 %if %prev_sublevel
530 tmb 61100 %patch1 -p1
531     %endif
532     %patch2 -p1
533 tmb 134369 %else
534     %patch1 -p1
535 tmb 61100 %endif
536 tmb 134369 %else
537     %if %kpatch
538 tmb 61100 %patch1 -p1
539     %endif
540 tmb 134369 %endif
541     %if %kgit
542     %patch2 -p1
543     %endif
544 tmb 61100
545     %{patches_dir}/scripts/apply_patches
546    
547    
548     # PATCH END
549    
550     #
551     # Setup Begin
552     #
553    
554     # Prepare all the variables for calling create_configs
555     %if %build_debug
556     %define debug --debug
557     %else
558     %define debug --no-debug
559     %endif
560    
561     %{patches_dir}/scripts/create_configs %debug --user_cpu="%{_arch}"
562    
563     # make sure the kernel has the sublevel we know it has...
564     LC_ALL=C perl -p -i -e "s/^SUBLEVEL.*/SUBLEVEL = %{sublevel}/" Makefile
565    
566     # get rid of unwanted files
567     find . -name '*~' -o -name '*.orig' -o -name '*.append' |%kxargs rm -f
568    
569    
570     %build
571     # Common target directories
572     %define _kerneldir /usr/src/%{kversion}-%{ktag}-%{buildrpmrel}
573     %define _bootdir /boot
574     %define _modulesdir /lib/modules
575    
576     # Directories definition needed for building
577     %define temp_root %{build_dir}/temp-root
578     %define temp_source %{temp_root}%{_kerneldir}
579     %define temp_boot %{temp_root}%{_bootdir}
580     %define temp_modules %{temp_root}%{_modulesdir}
581    
582    
583     PrepareKernel() {
584     name=$1
585     extension=$2
586     echo "Make dep for kernel $extension"
587     %smake -s mrproper
588    
589     if [ -z "$name" ]; then
590     cp arch/x86/configs/%{_arch}_defconfig-desktop .config
591     else
592     cp arch/x86/configs/%{_arch}_defconfig-$name .config
593     fi
594    
595     # make sure EXTRAVERSION says what we want it to say
596 tmb 134369 LC_ALL=C perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = -$extension/" Makefile
597 tmb 61100
598     %smake oldconfig
599     }
600    
601    
602     BuildKernel() {
603     KernelVer=$1
604     echo "Building kernel $KernelVer"
605    
606 tmb 134369 %kmake -s all
607 tmb 61100
608     # Start installing stuff
609     install -d %{temp_boot}
610     install -m 644 System.map %{temp_boot}/System.map-$KernelVer
611     install -m 644 .config %{temp_boot}/config-$KernelVer
612    
613     cp -f arch/%{_arch}/boot/bzImage %{temp_boot}/vmlinuz-$KernelVer
614    
615     # modules
616     install -d %{temp_modules}/$KernelVer
617     %smake INSTALL_MOD_PATH=%{temp_root} KERNELRELEASE=$KernelVer modules_install
618    
619     # remove /lib/firmware, we use a separate kernel-firmware
620     rm -rf %{temp_root}/lib/firmware
621     }
622    
623    
624     SaveDevel() {
625     devel_flavour=$1
626    
627     DevelRoot=/usr/src/%{kversion}-%{ktag}-$devel_flavour-%{buildrpmrel}
628     TempDevelRoot=%{temp_root}$DevelRoot
629    
630     mkdir -p $TempDevelRoot
631     for i in $(find . -name 'Makefile*'); do cp -R --parents $i $TempDevelRoot;done
632     for i in $(find . -name 'Kconfig*' -o -name 'Kbuild*' -o -name config.mk); do cp -R --parents $i $TempDevelRoot;done
633     cp -fR include $TempDevelRoot
634     cp -fR scripts $TempDevelRoot
635     %ifarch %{ix86} x86_64
636     cp -fR arch/x86/kernel/asm-offsets.{c,s} $TempDevelRoot/arch/x86/kernel/
637     cp -fR arch/x86/kernel/asm-offsets_{32,64}.c $TempDevelRoot/arch/x86/kernel/
638 tmb 220928 cp -fR arch/x86/syscalls/syscall* $TempDevelRoot/arch/x86/syscalls/
639 tmb 61100 cp -fR arch/x86/include $TempDevelRoot/arch/x86/
640 tmb 254432 cp -fR arch/x86/tools/relocs.c $TempDevelRoot/arch/x86/tools/
641 tmb 61100 %else
642     cp -fR arch/%{_arch}/kernel/asm-offsets.{c,s} $TempDevelRoot/arch/%{_arch}/kernel/
643     cp -fR arch/%{_arch}/include $TempDevelRoot/arch/%{_arch}/
644     %endif
645     cp -fR kernel/bounds.c $TempDevelRoot/kernel/
646 tmb 254432 cp -fR tools/include $TempDevelRoot/tools/
647 tmb 61100 cp -fR .config Module.symvers $TempDevelRoot
648     cp -fR 3rdparty/mkbuild.pl $TempDevelRoot/3rdparty/
649    
650     # Needed for truecrypt build (Danny)
651     cp -fR drivers/md/dm.h $TempDevelRoot/drivers/md/
652    
653     # Needed for lguest
654     cp -fR drivers/lguest/lg.h $TempDevelRoot/drivers/lguest/
655    
656     # Needed for lirc_gpio (Anssi Hannula, #39004, #54907)
657     cp -fR drivers/media/video/bt8xx/bttv{,p}.h $TempDevelRoot/drivers/media/video/bt8xx/
658     cp -fR drivers/media/video/bt8xx/bt848.h $TempDevelRoot/drivers/media/video/bt8xx/
659     cp -fR drivers/media/video/btcx-risc.h $TempDevelRoot/drivers/media/video/
660    
661     # Needed for external dvb tree (#41418)
662     cp -fR drivers/media/dvb/dvb-core/*.h $TempDevelRoot/drivers/media/dvb/dvb-core/
663     cp -fR drivers/media/dvb/frontends/lgdt330x.h $TempDevelRoot/drivers/media/dvb/frontends/
664    
665     # add acpica header files, needed for fglrx build
666     cp -fR drivers/acpi/acpica/*.h $TempDevelRoot/drivers/acpi/acpica/
667    
668 tmb 220928 for i in alpha arm arm26 avr32 blackfin c6x cris frv h8300 hexagon ia64 \
669     microblaze mips m32r m68k m68knommu mn10300 openrisc parisc \
670     powerpc ppc s390 sh sh64 score sparc tile unicore32 v850 xtensa; do
671 tmb 61100 rm -rf $TempDevelRoot/arch/$i
672     done
673    
674     %ifnarch %{ix86} x86_64
675     rm -rf $TempDevelRoot/arch/x86
676     %endif
677    
678     # Clean the scripts tree, and make sure everything is ok (sanity check)
679     # running prepare+scripts (tree was already "prepared" in build)
680     pushd $TempDevelRoot >/dev/null
681     %smake -s prepare scripts clean
682     popd >/dev/null
683    
684     rm -f $TempDevelRoot/.config.old
685    
686     # fix permissions
687     chmod -R a+rX $TempDevelRoot
688    
689     # disable mrproper in -devel rpms
690     patch -p1 -d $TempDevelRoot -i %{SOURCE2}
691    
692     kernel_devel_files=../kernel_devel_files.$devel_flavour
693    
694    
695     ### Create the kernel_devel_files.*
696     cat > $kernel_devel_files <<EOF
697     %dir $DevelRoot
698     %dir $DevelRoot/arch
699     %dir $DevelRoot/include
700     $DevelRoot/3rdparty
701     $DevelRoot/Documentation
702     $DevelRoot/arch/Kconfig
703     $DevelRoot/arch/um
704     %ifarch %{ix86} x86_64
705     $DevelRoot/arch/x86
706     %endif
707     $DevelRoot/block
708     $DevelRoot/crypto
709     $DevelRoot/drivers
710     $DevelRoot/firmware
711     $DevelRoot/fs
712     $DevelRoot/include/Kbuild
713     $DevelRoot/include/acpi
714     $DevelRoot/include/asm-generic
715     $DevelRoot/include/config
716     $DevelRoot/include/crypto
717     $DevelRoot/include/drm
718     $DevelRoot/include/generated
719     $DevelRoot/include/keys
720     $DevelRoot/include/linux
721     $DevelRoot/include/math-emu
722     $DevelRoot/include/media
723 tmb 191904 $DevelRoot/include/misc
724 tmb 61100 $DevelRoot/include/mtd
725     $DevelRoot/include/net
726     $DevelRoot/include/pcmcia
727     $DevelRoot/include/rdma
728     $DevelRoot/include/rxrpc
729     $DevelRoot/include/scsi
730     $DevelRoot/include/sound
731 tmb 78708 $DevelRoot/include/target
732 tmb 61100 $DevelRoot/include/trace
733     $DevelRoot/include/video
734     $DevelRoot/include/xen
735     $DevelRoot/init
736     $DevelRoot/ipc
737     $DevelRoot/kernel
738     $DevelRoot/lib
739     $DevelRoot/mm
740     $DevelRoot/net
741     $DevelRoot/samples
742     $DevelRoot/scripts
743     $DevelRoot/security
744     $DevelRoot/sound
745     $DevelRoot/tools
746     $DevelRoot/usr
747     $DevelRoot/virt
748     $DevelRoot/.config
749     $DevelRoot/Kbuild
750     $DevelRoot/Kconfig
751     $DevelRoot/Makefile
752     $DevelRoot/Module.symvers
753     %doc README.kernel-%{ktag}-sources
754     EOF
755    
756    
757     ### Create -devel Post script on the fly
758     cat > $kernel_devel_files-post <<EOF
759     if [ -d /lib/modules/%{kversion}-%{ktag}-$devel_flavour-%{buildrpmrel} ]; then
760     rm -f /lib/modules/%{kversion}-%{ktag}-$devel_flavour-%{buildrpmrel}/{build,source}
761     ln -sf $DevelRoot /lib/modules/%{kversion}-%{ktag}-$devel_flavour-%{buildrpmrel}/build
762     ln -sf $DevelRoot /lib/modules/%{kversion}-%{ktag}-$devel_flavour-%{buildrpmrel}/source
763     fi
764     EOF
765    
766    
767     ### Create -devel Preun script on the fly
768     cat > $kernel_devel_files-preun <<EOF
769     if [ -L /lib/modules/%{kversion}-%{ktag}-$devel_flavour-%{buildrpmrel}/build ]; then
770     rm -f /lib/modules/%{kversion}-%{ktag}-$devel_flavour-%{buildrpmrel}/build
771     fi
772     if [ -L /lib/modules/%{kversion}-%{ktag}-$devel_flavour-%{buildrpmrel}$devel_cpu/source ]; then
773     rm -f /lib/modules/%{kversion}-%{ktag}-$devel_flavour-%{buildrpmrel}/source
774     fi
775     exit 0
776     EOF
777     }
778    
779    
780     CreateFiles() {
781     kernel_flavour=$1
782    
783     kernel_files=../kernel_files.$kernel_flavour
784    
785    
786     ### Create the kernel_files.*
787     cat > $kernel_files <<EOF
788     %{_bootdir}/System.map-%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}
789     %{_bootdir}/config-%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}
790     %{_bootdir}/vmlinuz-%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}
791     %dir %{_modulesdir}/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/
792     %{_modulesdir}/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/kernel
793     %{_modulesdir}/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/modules.*
794     %doc README.kernel-%{ktag}-sources
795     EOF
796    
797    
798     ### Create kernel Post script
799     cat > $kernel_files-post <<EOF
800     /sbin/installkernel -L %{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}
801     pushd /boot > /dev/null
802     if [ -L vmlinuz-%{ktag}-$kernel_flavour ]; then
803     rm -f vmlinuz-%{ktag}-$kernel_flavour
804     fi
805     ln -sf vmlinuz-%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel} vmlinuz-%{ktag}-$kernel_flavour
806     if [ -L initrd-%{ktag}-$kernel_flavour.img ]; then
807     rm -f initrd-%{ktag}-$kernel_flavour.img
808     fi
809     ln -sf initrd-%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}.img initrd-%{ktag}-$kernel_flavour.img
810     popd > /dev/null
811     %if %build_devel
812     # create kernel-devel symlinks if matching -devel- rpm is installed
813     if [ -d /usr/src/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel} ]; then
814     rm -f /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/{build,source}
815     ln -sf /usr/src/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel} /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/build
816     ln -sf /usr/src/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel} /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/source
817     fi
818     %endif
819     %if %build_source
820     # create kernel-source symlinks only if matching -devel- rpm is not installed
821     if [ -d /usr/src/%{kversion}-%{ktag}-%{buildrpmrel} -a ! -d /usr/src/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel} ]; then
822     rm -f /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/{build,source}
823     ln -sf /usr/src/%{kversion}-%{ktag}-%{buildrpmrel} /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/build
824     ln -sf /usr/src/%{kversion}-%{ktag}-%{buildrpmrel} /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/source
825     fi
826     %endif
827     EOF
828    
829 tmb 185705 ### Create kernel Posttran script
830     cat > $kernel_files-posttrans <<EOF
831 tmb 187274 if [ -x /usr/sbin/dkms_autoinstaller -a -d /usr/src/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel} ]; then
832 tmb 185705 /usr/sbin/dkms_autoinstaller start %{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}
833     fi
834     EOF
835 tmb 61100
836     ### Create kernel Preun script on the fly
837     cat > $kernel_files-preun <<EOF
838     /sbin/installkernel -R %{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}
839     pushd /boot > /dev/null
840     if [ -L vmlinuz-%{ktag}-$kernel_flavour ]; then
841     if [ "$(readlink vmlinuz-%{ktag}-$kernel_flavour)" = "vmlinuz-%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}" ]; then
842     rm -f vmlinuz-%{ktag}-$kernel_flavour
843     fi
844     fi
845     if [ -L initrd-%{ktag}-$kernel_flavour.img ]; then
846     if [ "$(readlink initrd-%{ktag}-$kernel_flavour.img)" = "initrd-%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}.img" ]; then
847     rm -f initrd-%{ktag}-$kernel_flavour.img
848     fi
849     fi
850     popd > /dev/null
851     %if %build_devel
852     if [ -L /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/build ]; then
853     rm -f /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/build
854     fi
855     if [ -L /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/source ]; then
856     rm -f /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/source
857     fi
858     %endif
859     exit 0
860     EOF
861    
862    
863     ### Create kernel Postun script on the fly
864     cat > $kernel_files-postun <<EOF
865     /sbin/kernel_remove_initrd %{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}
866 tmb 97433 rm -rf /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel} > /dev/null
867 tmb 61100 EOF
868     }
869    
870    
871     CreateKernel() {
872     flavour=$1
873    
874     PrepareKernel $flavour %{ktag}-$flavour-%{buildrpmrel}
875    
876     BuildKernel %{kversion}-%{ktag}-$flavour-%{buildrpmrel}
877     %if %build_devel
878     SaveDevel $flavour
879     %endif
880     CreateFiles $flavour
881     }
882    
883    
884     ###
885     # DO it...
886     ###
887    
888    
889     # Create a simulacro of buildroot
890     rm -rf %{temp_root}
891     install -d %{temp_root}
892    
893    
894     #make sure we are in the directory
895     cd %src_dir
896    
897     %ifarch %{ix86}
898     %if %build_desktop586
899     CreateKernel desktop586
900     %endif
901     %endif
902    
903     %if %build_desktop
904     CreateKernel desktop
905     %endif
906    
907     %if %build_laptop
908     CreateKernel laptop
909     %endif
910    
911     %if %build_realtime
912     CreateKernel realtime
913     %endif
914    
915     %if %build_server
916     CreateKernel server
917     %endif
918    
919    
920     # kernel-source is shipped as a clean source tree, with no preparation
921     %if %build_source
922     PrepareKernel "" %{buildrpmrel}%{ktag}custom
923     %smake -s mrproper
924     %endif
925    
926    
927     ###
928     ### install
929     ###
930     %install
931     install -m 644 %{SOURCE4} .
932    
933     cd %src_dir
934    
935     # Directories definition needed for installing
936     %define target_source %{buildroot}%{_kerneldir}
937     %define target_boot %{buildroot}%{_bootdir}
938     %define target_modules %{buildroot}%{_modulesdir}
939    
940     # We want to be able to test several times the install part
941     rm -rf %{buildroot}
942     cp -a %{temp_root} %{buildroot}
943    
944     # Create directories infastructure
945     %if %build_source
946 tmb 134369 install -d %{target_source}
947 tmb 61100
948     tar cf - . | tar xf - -C %{target_source}
949     chmod -R a+rX %{target_source}
950    
951     # we remove all the source files that we don't ship
952     # first architecture files
953 tmb 220928 for i in alpha arm arm26 avr32 blackfin c6x cris frv h8300 hexagon ia64 \
954     microblaze mips m32r m68k m68knommu mn10300 openrisc parisc \
955     powerpc ppc s390 sh sh64 score sparc tile v850 xtensa unicore32; do
956 tmb 61100 rm -rf %{target_source}/arch/$i
957     done
958    
959     %ifnarch %{ix86} x86_64
960     rm -rf %{target_source}/arch/x86
961     %endif
962    
963     # other misc files
964     rm -f %{target_source}/{.config.old,.config.cmd,.mailmap,.missing-syscalls.d,arch/.gitignore}
965 tmb 134369 rm -rf %{target_source}/.tmp_depmod/
966 tmb 61100
967     #endif %build_source
968     %endif
969    
970     # We used to have a copy of PrepareKernel here
971     # Now, we make sure that the thing in the linux dir is what we want it to be
972     for i in %{target_modules}/*; do
973     rm -f $i/build $i/source
974     done
975    
976     # Create modules.description
977     pushd %{target_modules}
978     for i in *; do
979     pushd $i
980     echo "Creating modules.description for $i"
981     modules=`find . -name "*.ko.gz"`
982     echo $modules | %kxargs /sbin/modinfo \
983     | perl -lne 'print "$name\t$1" if $name && /^description:\s*(.*)/; $name = $1 if m!^filename:\s*(.*)\.k?o!; $name =~ s!.*/!!' > modules.description
984     popd
985     done
986     popd
987    
988    
989     # We don't want to remove this, the whole reason of its existence is to be
990     # able to do several rpm --short-circuit -bi for testing install
991     # phase without repeating compilation phase
992     #rm -rf %{temp_root}
993    
994     ###
995     ### source and doc file lists
996     ###
997     %if %build_source
998     %files -n %{kname}-source-%{buildrel}
999     %dir %{_kerneldir}
1000     %dir %{_kerneldir}/arch
1001     %dir %{_kerneldir}/include
1002     %{_kerneldir}/3rdparty
1003     %{_kerneldir}/Documentation
1004     %{_kerneldir}/arch/Kconfig
1005     %{_kerneldir}/arch/um
1006     %ifarch %{ix86} x86_64
1007     %{_kerneldir}/arch/x86
1008     %endif
1009     %{_kerneldir}/block
1010     %{_kerneldir}/crypto
1011     %{_kerneldir}/drivers
1012     %{_kerneldir}/firmware
1013     %{_kerneldir}/fs
1014     %{_kerneldir}/include/Kbuild
1015     %{_kerneldir}/include/acpi
1016     %{_kerneldir}/include/asm-generic
1017     %{_kerneldir}/include/crypto
1018     %{_kerneldir}/include/drm
1019     %{_kerneldir}/include/keys
1020     %{_kerneldir}/include/linux
1021     %{_kerneldir}/include/math-emu
1022     %{_kerneldir}/include/media
1023 tmb 191904 %{_kerneldir}/include/misc
1024 tmb 61100 %{_kerneldir}/include/mtd
1025     %{_kerneldir}/include/net
1026     %{_kerneldir}/include/pcmcia
1027     %{_kerneldir}/include/rdma
1028     %{_kerneldir}/include/rxrpc
1029     %{_kerneldir}/include/scsi
1030     %{_kerneldir}/include/sound
1031 tmb 78708 %{_kerneldir}/include/target
1032 tmb 61100 %{_kerneldir}/include/trace
1033     %{_kerneldir}/include/video
1034     %{_kerneldir}/include/xen
1035     %{_kerneldir}/init
1036     %{_kerneldir}/ipc
1037     %{_kerneldir}/kernel
1038     %{_kerneldir}/lib
1039     %{_kerneldir}/mm
1040     %{_kerneldir}/net
1041     %{_kerneldir}/samples
1042     %{_kerneldir}/scripts
1043     %{_kerneldir}/security
1044     %{_kerneldir}/sound
1045     %{_kerneldir}/tools
1046     %{_kerneldir}/usr
1047     %{_kerneldir}/virt
1048     %{_kerneldir}/.gitignore
1049     %{_kerneldir}/COPYING
1050     %{_kerneldir}/CREDITS
1051     %{_kerneldir}/Kbuild
1052     %{_kerneldir}/Kconfig
1053     %{_kerneldir}/MAINTAINERS
1054     %{_kerneldir}/Makefile
1055     %{_kerneldir}/README
1056     %{_kerneldir}/REPORTING-BUGS
1057     %doc README.kernel-%{ktag}-sources
1058    
1059     %files -n %{kname}-source-latest
1060     %endif
1061    
1062     %if %build_doc
1063     %files -n %{kname}-doc
1064     %doc linux-%{tar_ver}/Documentation/*
1065     %endif
1066    
1067 tmb 75092 %changelog
1068 tmb 259019 * Sat Jun 9 2012 Thomas Backlund <tmb@mageia.org> 3.4.2-1.mga3
1069     - update to 3.4.2
1070     - add patch:
1071     * FE01: ext4: fix the free blocks calculation for ext3
1072     file systems w/ uninit_bg
1073    
1074     * Mon Jun 4 2012 Thomas Backlund <tmb@mageia.org> 3.4.1-1.mga3
1075 tmb 254432 - update to 3.4.1
1076     - drop merged patches:
1077     * DA60, DA61: ahci/ata ids
1078     * DG01-DG04, DG20-DG21, DG40-DG44, DG60: drm backports
1079     * DN10-DN11: ath5k stablilty fixes
1080     * DS20-DS24: sound fixes
1081     - update patches:
1082     * CK01: ck1 patchset including BFS 0.422
1083     * FU01: unionfs 2.5.11
1084     * KP01: tuxonice 3.2.1
1085     * NI10-NI11: netfilter IFWLOG support
1086     * NI16: netfilter psd support
1087     - add patches:
1088     * DM60: radio-rttrack buildfix
1089     * FU02: unionfs buildfix for kernel-3.4
1090     - drop patches:
1091     * DA50: prefer ata over ide hack, needs to be fixed properly
1092     * DN20: disabling powersave on rt2800usb
1093     * LK01: lib/Kconfig.debug text update
1094     - update defconfigs
1095     - update filelists
1096    
1097 tmb 235847 * Thu May 17 2012 Thomas Backlund <tmb@mageia.org> 3.3.6-2.mga2
1098     - revert switching server kernels to SLAB allocator at it fails to boot
1099     with BFS scheduler (reported/confirmed by Charles A Edwards.on -dev ml)
1100     - add patches:
1101     * DN25: ipw2x00: add support for nl80211 clients like Network Manager (#5720)
1102     * DS20: ALSA: echoaudio: Remove incorrect part of assertion
1103     * DS21: ALSA: HDA: Lessen CPU usage when waiting for chip to respond
1104     * DS22: ALSA: hda/realtek - Add missing CD-input pin for MSI-7350 mobo
1105     * DS23: ALSA: hda/idt - Fix power-map for speaker-pins with some HP laptops
1106    
1107 tmb 235519 * Sat May 12 2012 Thomas Backlund <tmb@mageia.org> 3.3.6-1.mga2
1108     - update to 3.3.6
1109     - drop merged patches:
1110     * AA01-AA32: stable queue fixes
1111     * DP10-DP13: samsung-laptop dmitable addons
1112     - switch server kernels back to SLAB allocator as it performs better
1113     on bigger server hardware and workloads
1114    
1115 tmb 235253 * Thu May 10 2012 Thomas Backlund <tmb@mageia.org> 3.3.5-1.mga2
1116     - update to 3.3.5
1117     - drop merged patches:
1118     * DN15-DN17: iwlwifi fixes
1119     - add patches from stable queue
1120     * AA01-AA32: fixes all over
1121    
1122 tmb 234007 * Sat Apr 28 2012 Thomas Backlund <tmb@mageia.org> 3.3.4-1.mga2
1123     - update to 3.3.4
1124     - require dracut >= 017-9
1125     - add patches:
1126     * DN16: iwlwifi: use 6000G2B for 6030 device series
1127     * DN17: iwlwifi: fix hardware queue programming
1128    
1129     * Mon Apr 23 2012 Thomas Backlund <tmb@mageia.org> 3.3.3-1.mga2
1130 tmb 232861 - update to 3.3.3
1131     - add patches:
1132     * BF01: floppy: disable pnp autoloading
1133     * DN10: ath5k: do not stop queues for full calibration
1134     * DN11: ath5k: do not re-run AGC calibration periodically
1135     * DN15: iwlwifi: use correct released ucode version
1136 tmb 232881 - update patch:
1137     * KP01: TuxOnIce 3.2.1 for kernel-3.3
1138 tmb 232861
1139 tmb 234007 * Tue Apr 03 2012 Thomas Backlund <tmb@mageia.org> 3.3.1-1.mga2
1140 tmb 228106 - update to 3.3.1
1141     - drop merged patches:
1142     * DM51, SR01-SR03
1143     - update patch:
1144     * CK01: -ck1 patchset including BFS v0.420
1145     - add patches:
1146     * DA50: ata: prefer ata drivers over ide drivers when both are built (Anssi)
1147     * DA60-DA61: ata: add ide/ahci/raid mode support for Intel Lynx Point chipset
1148     * DG01-DG04: drm: add upstream drm changes to support gpu driver backports
1149     * DG20, DG21: drm/radeon: backport support for Southern Islands (HD7xxx)
1150     GPUs and Trinity APUs
1151     * DG40-DG44: drm/nouveau: backport Kepler (GTX6xx) support
1152     * DG60: drm/i915: add Ivy Bridge GT2 Server entries
1153     - update defconfigs
1154    
1155 tmb 224401 * Mon Mar 19 2012 Thomas Backlund <tmb@mageia.org> 3.3.0-1.mga2
1156     - update to 3.3 final
1157     - add patches:
1158     * DM50: media: fix initialization on Hauppauge WinTV Nova HD-S2
1159     and similar hardware
1160     * DM51: media/tda10071: correct delivery system to DVB-S/S2
1161     - update defconfigs
1162    
1163     * Sun Mar 11 2012 Thomas Backlund <tmb@mageia.org> 3.3.0-0.rc7.1.mga2
1164 tmb 222618 - update to 3.3-rc7
1165    
1166 tmb 220928 * Wed Mar 7 2012 Thomas Backlund <tmb@mageia.org> 3.3.0-0.rc6.1.mga2
1167     - update to 3.3-rc6
1168     - update patches:
1169     * FU01: unionfs 2.5.11
1170     * MB10, MB13, MB14: ndiswrapper 1.57
1171     - rediff patches:
1172     * NI15, NI16: netfilter psd support
1173     * patch disabling mrproper in -devel rpms
1174     - disable patch:
1175     * CK01: -ck1 patchset including BFS sceduler (needs update to 3.3 series)
1176     - update defconfigs
1177     - update filelists
1178    
1179 tmb 216432 * Thu Mar 1 2012 Thomas Backlund <tmb@mageia.org> 3.2.9-1.mga2
1180     - update to 3.2.9
1181     - require dracut >= 017-1
1182     - drop merged patches:
1183     * DG01, DP01, DU01, NM01
1184     - add patches:
1185     * SR01-SR03: fix nonworking r8172u wireless driver in staging (#4491)
1186    
1187 tmb 214975 * Sat Feb 25 2012 Thomas Backlund <tmb@mageia.org> 3.2.7-1.mga2
1188     - update to 3.2.7
1189     - drop merged patches AA01-AA28
1190     - add patches:
1191     * DG01: drm/radeon/kms: fix MSI re-arm on rv370+
1192     * DP01: PCI: workaround hard-wired bus number
1193     * DS20, DS21: fix nonworking r8172u wireless driver in staging (#4491)
1194     * DU01: xhci: Fix oops caused by more USB2 ports than USB3 ports
1195     * NM01: mac80211: Fix a rwlock bad magic bug
1196    
1197 tmb 209856 * Thu Feb 16 2012 Thomas Backlund <tmb@mageia.org> 3.2.6-1.mga2
1198     - update to 3.2.6
1199     - add current stable queue (28 fixes, AA01-AA28)
1200     - require dracut >= 016-1 for xz compressed modules support and
1201     other needed fixes
1202     - compress modules with xz
1203    
1204 tmb 206041 * Tue Feb 7 2012 Thomas Backlund <tmb@mageia.org> 3.2.5-1.mga2
1205     - update to 3.2.5
1206     - drop merged patch
1207     * DP01: ASPM rework
1208    
1209     * Thu Jan 26 2012 Thomas Backlund <tmb@mageia.org> 3.2.2-1.mga2
1210 tmb 201830 - update to 3.2.2 (CVE-2012-0056)
1211     - update patches:
1212     * CK01: Con Kolivas 3.2-ck1 patchset
1213     * KP01: TuxOnIce 3.2.1
1214 tmb 201839 - require dracut instead of mkinitrd
1215 tmb 201840 - require module-init-tools >= 3.6-14 for xz support
1216 tmb 201830
1217 tmb 206041 * Sun Jan 15 2012 Thomas Backlund <tmb@mageia.org> 3.2.1-1.mga2
1218 tmb 196339 - update to 3.2.1
1219    
1220 tmb 206041 * Thu Jan 5 2012 Thomas Backlund <tmb@mageia.org> 3.2.0-1.mga2
1221 tmb 191904 - update to 3.2
1222     - add patches:
1223     * FU02: fix unionfs build with 3.2 series kernels
1224     * MB13: fix ndiswrapper build with 3.2 series kernels
1225     - update patches:
1226     * CK01: BFS scheduler 0.416
1227     - rediff patches:
1228     * DP11, MB02, NI11, NI16, Source2
1229     - drop patches:
1230     * FB01: btrfs fix, merged
1231     - update filelists and defconfigs
1232    
1233 tmb 206041 * Thu Dec 22 2011 Thomas Backlund <tmb@mageia.org> 3.1.6-1.mga2
1234 tmb 185705 - update to 3.1.6
1235     - drop patch DS01 (merged)
1236     - trigger dkms build in posttrans so modules get built at kernel install
1237     instead of at boot (speeds up boot time with new kernel)
1238     - update desktop(586) & laptop summaries and descriptions to point out that
1239     only 3-3.5GB RAM is detected on 32bit, and that server kernel is needed to
1240     fully support 4GB or more
1241     - switch transparent hugepages from on by default to madvise (only enabled
1242     for apps that requests it), as it fixes desktop freeze when accessing
1243     slow media such as usb (thanks to fbui/mdv mail on @cooker ml).
1244    
1245 tmb 206041 * Fri Dec 9 2011 Thomas Backlund <tmb@mageia.org> 3.1.5-1.mga2
1246 tmb 179823 - update to 3.1.5
1247     - drop merged patches:
1248     * DG01-DG06, FX01-FX06
1249     - add patch:
1250     * DS01: ALSA: hda/realtek - Fix Oops in alc_mux_select()
1251     - clean spec: drop buildroot and defattr
1252    
1253 tmb 206041 * Tue Dec 6 2011 Thomas Backlund <tmb@mageia.org> 3.1.4-3.mga2
1254 tmb 177136 - fix patch NI12: IFWLOG: fix return value of checkentry
1255     (not properly modified in 2.6.35+ patch, blino, #3594)
1256     - rebuild with GCC-4.6.2
1257    
1258 tmb 206041 * Wed Nov 30 2011 Thomas Backlund <tmb@mageia.org> 3.1.4-2.mga2
1259 tmb 174468 - update patch:
1260     * CK01: upstream 3.1.0-ck2 including BFS 0.415
1261    
1262 tmb 206041 * Tue Nov 29 2011 Thomas Backlund <tmb@mageia.org> 3.1.4-1.mga2
1263 tmb 174083 - update to 3.1.4
1264     * reverts usb patch that broke isochronous devices
1265     (i.e. webcam, audio, or other streaming devices)
1266    
1267 tmb 206041 * Mon Nov 28 2011 Thomas Backlund <tmb@mageia.org> 3.1.3-1.mga2
1268 tmb 173213 - update to 3.1.3
1269     - add patches:
1270     * DG01: i915: Fix inconsistent backlight level during disabled
1271     * DG02: drm: fix integer overflow in drm_mode_dirtyfb_ioctl()
1272     * DG03: radeon/kms: fix up gpio i2c mask bits for r4xx for real
1273     * DG04: i915: Ivybridge still has fences
1274     * DG05: i915: Turn on a required 3D clock gating bit on Sandybridge
1275     * DG06: i915: Turn on another required clock gating bit on Sandybridge
1276     * DP01: pci: rework ASPM disable code (brings power usage back down
1277     to 2.6.37 level)
1278     * FX01: don't serialise direct IO reads on page cache checks
1279     (fixes performance regression introduced in 2.6.38)
1280     * FX02: avoid direct I/O write vs buffered I/O race
1281     * FX03: return -EIO when xfs_vn_getattr() failed
1282     * FX04: fix buffer flushing during unmount
1283     * FX05: fix possible memory corruption in xfs_readlink
1284     * FX06: use doalloc flag in xfs_qm_dqattach_one()
1285     - update patches:
1286     * FU01: unionfs 2.5.10 for 3.1.3
1287     * MB02: merge 3rdparty support
1288     * MB10-MB12: ndiswrapper 1.57-rc1
1289     - drop patches:
1290     * DS15: its replaced by SND_HDA_PREALLOC_SIZE config option
1291     * MB13-MB17: ndiswrapper fixes, merged
1292     - disable patches:
1293     * KP01: TuxOnIce support, currently broken
1294     - dont ship openrisc arch files
1295     - update defconfigs
1296    
1297 tmb 206041 * Tue Oct 25 2011 Thomas Backlund <tmb@mageia.org> 3.0.8-1.mga2
1298 tmb 158005 - update to 3.0.8
1299     * drop merged patch: DM20
1300     - enable PM_RUNTIME and USB_SUSPEND
1301    
1302 tmb 206041 * Tue Oct 18 2011 Thomas Backlund <tmb@mageia.org> 3.0.7-1.mga2
1303 tmb 156418 - update to 3.0.7
1304     - update patch:
1305     * CK01: 3.0.7-ck1 including BFS 0.413
1306     - re-enable usblp as it is needed by both usb-pp adapters and some printers
1307     (mga #2240, #2264) (cups is patched to work with both usblp and libusb)
1308    
1309 tmb 206041 * Tue Oct 04 2011 Thomas Backlund <tmb@mageia.org> 3.0.6-1.mga2
1310 tmb 151411 - update to 3.0.6
1311     - add patch:
1312     * DM20: fix boot hang on uvc webcam init (mga #2425)
1313    
1314 tmb 206041 * Tue Aug 30 2011 Thomas Backlund <tmb@mageia.org> 3.0.4-1.mga2
1315 tmb 136302 - update to 3.0.4
1316     - drop merged patch: AA01
1317    
1318 tmb 206041 * Fri Aug 19 2011 Thomas Backlund <tmb@mageia.org> 3.0.3-1.mga2
1319 tmb 134369 - update to 3.0.3
1320     - update patches:
1321     * CK01: Con Kolivas -ck patchset including BFS
1322     * FU01: unionfs 2.5.9.2
1323     * KP01: TuxonIce 3.2
1324     - drop merged patches:
1325     * CK02, DA60-DA61, DG10-DG14, DN08, DN15-DN19, DP05-DP08
1326     * DP20-DP26, DP30, DV11, FU02-FU03, MK01, NI30-NI31
1327     - add patches:
1328     * AA01: genirq: Fix wrong bit operation
1329     * DP10-DP12: samsung-laptop: support nc110, nc210, r700, x520
1330     * DP13: samsung-laptop: fix support for older N150, N210, N220
1331     * FB01: btrfs: btrfs_calc_avail_data_space: cope with no read_write devices
1332     * MB17: ndiswrapper buildfix for 3.0
1333     * MC84: viahss buildfix for 3.0
1334     - rediff patches:
1335     * NI16: netfilter psd mdv/mga modifications
1336     - disable patches:
1337     * DV01-DV02: framebuffer oops fixes (should not be needed anymore)
1338     * FR01: reiser4 support (broken)
1339     - adapt spec for 3.0 series version changes
1340     - change kernel-tmb-source to noarch
1341     - build with -s(ilent) to only log varnings and errors
1342     - update defconfigs
1343    
1344 tmb 206041 * Sun Jun 19 2011 Thomas Backlund <tmb@mageia.org> 2.6.38.8-1.mga1
1345 tmb 110087 - update to 2.6.38.8 (CVE-2011-1017)
1346     - drop merged patches:
1347     * AA01, DP15
1348     - add patches:
1349     * CK02: update bfs scheduler to 0.406
1350     * MK01: ksm: fix race between ksmd and exiting task (CVE-2011-2183)
1351     - add mgaver to 'uname -r'
1352    
1353 tmb 206041 * Sun May 22 2011 Thomas Backlund <tmb@mageia.org> 2.6.38.7-1.mga1
1354 tmb 100142 - update to 2.6.38.7 (CVE-2011-1770, CVE-2011-1776, CVE-2011-1927)
1355     - drop merged patches:
1356     * DG20-DG24
1357     - update patches:
1358     * FU01, FU03: rollback unionfs to a working 2.5.8
1359     - add patches:
1360     * AA01: block: rescan partitions on invalidated devices on -ENOMEDIA too
1361     * DN17: r8169: add a new chip for RTL8105
1362     * DN18: r8169: add a new chip for RTL8168DP
1363     * DN19: r8169: add support for RTL8168E/RTL8111E
1364    
1365 tmb 206041 * Wed May 18 2011 Thomas Backlund <tmb@mageia.org> 2.6.38.6-2.mga1
1366 tmb 100142 - disable xz module compression again as not all tools/utils can cope
1367     with it (can be enabled with '--with modxz' buildtime flag)
1368    
1369 tmb 206041 * Thu May 12 2011 Thomas Backlund <tmb@mageia.org> 2.6.38.6-1.mga1
1370 tmb 100142 - enable xz module compression on 2011.0
1371 tmb 97433 - update to 2.6.38.6
1372     - drop merged patches:
1373     * AX01
1374     - add patches:
1375     * DG20: drm/radeon/kms: add pci id to acer travelmate quirk for 5730
1376     * DG21: drm/radeon/kms: fix gart setup on fusion parts (v2) backport
1377     * DG22: drm/i915/dp: Be paranoid in case we disable a DP before it is attached
1378     * DG23: drm/i915/lvds: Only act on lid notify when the device is on
1379     * DG24: drm/i915: Release object along create user fb error path
1380     * DP30: revert: "dell-laptop: Toggle the unsupported hardware killswitch"
1381     as it causes regressions on existing hw (reported by Colin Guthrie)
1382     * SM02: add support for compressing modules with xz
1383     - clean /lib/modules tree on uninstall
1384     - disable ACPI_PROCFS_POWER as its obsoleted by the sysfs interface
1385     - drop hardcoded vendor references from summarys and descriptions (#1161)
1386     - drop warnings about being experimental kernel
1387    
1388 tmb 206041 * Wed May 5 2011 Thomas Backlund <tmb@mageia.org> 2.6.38.5-1.mga1
1389 tmb 94546 - update to 2.6.38.5
1390     - add patches:
1391     * AX01: x86, AMD: K8 Rev.A-E processors are subject to erratum 400
1392     * AX05: x86, 32bit: raise default vmalloc area to 192MB (Anssi, #904)
1393     * DN15: r8169: add support for RTL8105E
1394     * DN16: r8169: be verbose when unable to load firmware
1395     * DN20: disable powersaving on rt2800 as it is broken (noted by rtp)
1396     * DP06-DP08: samsung-laptop: add support for N230, R410P
1397     * DP20-DP26: hp-wmi: add support for rfkill on HP Mini 5102 (Anssi)
1398     - update patches:
1399     * FU01: unionfs 2.5.9
1400     - drop patches:
1401     * FU03: unionfs oops fix (obsolete)
1402     - enable DEBUG_RODATA and DEBUG_SET_MODULE_RONX (tv)
1403    
1404 tmb 206041 * Sun Apr 24 2011 Thomas Backlund <tmb@mageia.org> 2.6.38.4-1.mga1
1405 tmb 90160 - update to 2.6.38.4
1406     - update patches:
1407     * DG10: drm/i915: Fix tiling corruption from pipelined fencing
1408     * NI30, NI31: ipset 6.4
1409     - add patches:
1410     * DA60, DA61: ide/ahci/raid support for Intel Panther Point
1411     * DF01: add old ieee1394 aliases to new firewire stack
1412     * DG11: drm: Retry i2c transfer of EDID block after failure
1413     * DG12: drm/i915/dp: Sanity check eDP existence
1414     * DG13: drm/i915: Restore missing command flush before interrupt on BLT ring
1415     * DG14: drm/i915: Avoid unmapping pages from a NULL address space
1416     * DG15: drm/i915: Enable GPU semaphores by default
1417     * DM01: add dm-raid45 aliases to the new dm-raid target
1418     * DP15: intel_ips: fix monitor thread to use TASK_INTERRUPTIBLE
1419    
1420 tmb 206041 * Sat Apr 16 2011 Thomas Backlund <tmb@mageia.org> 2.6.38.3-1.mga1
1421 tmb 86245 - update to 2.6.38.3
1422     - drop merged patches
1423    
1424 tmb 206041 * Mon Apr 11 2011 Thomas Backlund <tmb@mageia.org> 2.6.38.2-2.mga1
1425 tmb 83510 - add -stable queue patches (31 fixes)
1426     - update patches:
1427     * CK01: Con Kolivas -ck3 patchset including bfs 0.400
1428     * FR01: reiser4 for 2.6.38 final
1429     - drop patches:
1430     * FR02: reiser4 buildfix (merged)
1431    
1432 tmb 206041 * Tue Mar 29 2011 Thomas Backlund <tmb@mageia.org> 2.6.38.2-1.mga1
1433 tmb 78708 - update to 2.6.38.2
1434     - drop merged patches:
1435     * AX01, AX10, FS01-FS03, LD01-LD02 (xz support)
1436     * CK02 (-ck1 patchset buildfix)
1437     * DA01-DA03 (ahci ids)
1438     * DG01-DG02 (gpu fixes)
1439     * DM10-DM14 (dm-raid45, replaced by new dm-raid target)
1440     * DM20 (dm-crypt multicore support)
1441     * DP06 (samsung-laptop buildfix)
1442     * KB01 (headers_install_all export fix)
1443     * SE01 (staging fix)
1444     - rediff patches:
1445     * AI01 (Toshiba Equium A60 fix)
1446     * DV01-DV02 (framebuffer oops and deadlock fixes)
1447     * MB02 (3rdparty merge)
1448     - update patches:
1449     * CK01: Con Kolivas -ck1 patchset including BFS v363
1450     * DP05: update samsung-laptop to the one being merged in
1451     2.6.39 (replaces old samsung-backlight)
1452     * FR01-FR02: reiser4 support
1453     * FU01-FU03: unionfs 2.5.8
1454     * KP01: TuxOnIce
1455     * S2: disable mrproper on -devel rpms
1456     - add patches:
1457     * DA20: acpi video blacklist (needed for shuttle-wmi)
1458     * DG10: drm/i915: Fix pipelined fencing
1459     * DP10: shuttle-wmi support
1460     * MB16: ndiswrapper buildfix
1461     - update defconfigs and filelists
1462    
1463 tmb 206041 * Sun Mar 20 2011 Thomas Backlund <tmb@mageia.org> 2.6.37.4-1.mga1
1464 tmb 75092 - update to 2.6.37.4 (CVE-2011-1013, CVE-2011-1019, CVE-2011-1076)
1465     - drop merged patch:
1466     * NI01
1467     - add patches:
1468     * AX10: x86, quirk: Fix SB600 revision check
1469     * DA01: ahci: AHCI mode SATA patch for Intel DH89xxCC DeviceIDs
1470     * DA02: ahci: AHCI mode SATA patch for Intel Patsburg SATA RAID controller
1471     * DA03: ahci: recognize Marvell 88se9125 PCIe SATA 6.0 Gb/s controller
1472     * DG01: drm: Hold the mode mutex whilst probing for sysfs status
1473     * DG02: drm/i915: Fix calculation of backlight value in combined mode
1474     - drop S5, not needed anymore as we ship unprepared kernel-source
1475    
1476 tmb 206041 * Sat Jan 26 2011 Thomas Backlund <tmb@mageia.org> 2.6.37.2-1.mga1
1477 tmb 75092 - update to 2.6.37.2
1478     - rediff patch:
1479     * CK01: Con Kolivas -ck1 patchset including BFS
1480     - add patches:
1481     * CK02: adapt BFS for sched changes introduced in 2.6.37.1
1482     * AX01, FS01-FS03, LD01-LD02: XZ support for kernel, modules,
1483     initrd and squashfs (from upstream 2.6.38-rc1)
1484     * NI01: tcp: fix inet_twsk_deschedule() locking
1485     - update patches:
1486     * DV01, DV02: framebuffer deadlock and oops fixes (Herton, main kernel)
1487     * KP01: TuxOnIce 3.2rc2
1488     - drop patch:
1489     * DV10: squashfs lzma support (obsoleted by XZ support)
1490    
1491     * Thu Jan 6 2011 Thomas Backlund <tmb@mandriva.org> 2.6.37-2mdv
1492     - add patch:
1493     * DV01: Fix Oops/race condition in Framebuffer with plymouthd
1494     (alissy/herton, main kernel)
1495     - update patch:
1496     * CK01: Con Kolivas ck patchset including BFS v363
1497     - drop patches:
1498     * CK02, CK03, CK05 (merged)
1499     * CK04 (not needed anymore)
1500    
1501     * Wed Jan 5 2011 Thomas Backlund <tmb@mandriva.org> 2.6.37-1mdv
1502     - update to 2.6.37 final
1503     - make backport to 2010.1 possible
1504     - drop rpmtags
1505    
1506     * Wed Dec 29 2010 Thomas Backlund <tmb@mandriva.org> 2.6.37-0.rc8.1mdv
1507     - update to 2.6.37-rc8
1508    
1509     * Fri Dec 24 2010 Thomas Backlund <tmb@mandriva.org> 2.6.37-0.rc7.2.3mdv
1510     - update to 2.6.37-rc7-git2
1511     - drop patch:
1512     * DG01 (merged)
1513     - update patches:
1514     * FR01: reiser4 support
1515     * FR02: reiser4 buildfix for 2.6.37
1516     - add patch:
1517     * FR03: reiser4: fix entd_flush usage
1518    
1519     * Wed Dec 22 2010 Thomas Backlund <tmb@mandriva.org> 2.6.37-0.rc7.2mdv
1520     - add patch:
1521     * DG01: gpu fixes from upstream, queued for 2.6.37 final
1522     - update patch:
1523     * KP01: TuxOnIce 3.2-rc2+ for 2.6.37-rc7
1524    
1525     * Wed Dec 22 2010 Thomas Backlund <tmb@mandriva.org> 2.6.37-0.rc7.1mdv
1526     - update to 2.6.37-rc7
1527     - add patch:
1528     * CK05: adapt BFS for calc_global_load change
1529    
1530     * Thu Dec 16 2010 Thomas Backlund <tmb@mandriva.org> 2.6.37-0.rc6.1mdv
1531     - update to 2.6.37-rc6
1532    
1533     * Tue Dec 7 2010 Thomas Backlund <tmb@mandriva.org> 2.6.37-0.rc5.1mdv
1534     - update to 2.6.37-rc5
1535    
1536     * Tue Nov 30 2010 Thomas Backlund <tmb@mandriva.org> 2.6.37-0.rc4.1mdv
1537     - update to 2.6.37-rc4
1538     - update patches:
1539     * DM20: dm-crypt: scale to multiple CPUs v5
1540     * NI30: ipset 4.4 (herton, main kernel)
1541     - drop patch:
1542     * NI31: ipset buildfix (merged)
1543    
1544     * Thu Nov 25 2010 Thomas Backlund <tmb@mandriva.org> 2.6.37-0.rc3.2.1mdv
1545     - update to 2.6.377-rc3-git2
1546     - drop merged patches:
1547     * AM01, BC01, BL01-BL06, DC01, DC02, DC10, DF01-DF04, DG01-DG03, DG10
1548     * DI01, DS01, DS02, DS04, DS40, DS41, DV01, FB01, FE01, FN01-FN04
1549     * KR01, KS01, NI40, NI41, NM01-NM16, NW01-NW03, Source6
1550     - update patches:
1551     * FU01: unionfs 2.5.7 for 2.6.37-rc1
1552     * KP01: TuxOnIce 3.2-rc2 for 2.6.37-rc3
1553     - rediff patches:
1554     * CK01, Source2
1555     - add patches:
1556     * CK03: BFS buildfix for 2.6.37
1557     * CK04: revert kernel/stop_machine.c to 2.6.36 level (needed for BFS)
1558     * DM14: dm-raid45 buildfix for 2.6.37
1559     * FR02: reiser4 buildfix for 2.6.37
1560     * MC94: vloopback buildfix for 2.6.37
1561     * NI13: netfilter IFWLOG buildfix for 2.6.37
1562     * SE01: easycap buildfix for 2.6.37
1563     - update defconfigs
1564    
1565     * Tue Nov 23 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36.1-2mdv
1566     - add patches:
1567     * BL01: block: Ensure physical block size is unsigned int
1568     * BL02: block: fix accounting bug on cross partition merges
1569     * BL03: block: Fix race during disk initialization
1570     * BL04: block: limit vec count in bio_kmalloc() and bio_alloc_map_data()
1571     * BL05: block: take care not to overflow when calculating total iov length
1572     * BL06: block: check for proper length of iov entries in blk_rq_map_user_iov()
1573     * DS04: Alsa fixes queued for 2.6.37-rc4
1574     * DV01: viafb: fix i2c_transfer error handling
1575     * FN01: NFSv4: Don't call nfs4_reclaim_complete() on receiving
1576     NFS4ERR_STALE_CLIENTID
1577     * FN02: NFSv4: Don't call nfs4_state_mark_reclaim_reboot()
1578     from error handlers
1579     * FN03: NFSv4: Fix open recovery
1580     * FN04: NFS: Don't SIGBUS if nfs_vm_page_mkwrite races with
1581     a cache invalidation
1582     * NI40: irda: Fix parameter extraction stack overflow
1583     * NI41: irda: Fix heap memory corruption in iriap.c
1584     * NM01: mac80211: minstrel_ht A-MPDU fix
1585     * NM02: mac80211: fix possible null-pointer de-reference
1586     * NM03: mac80211: fix channel assumption for association done work
1587     * NM04: mac80211: fix offchannel assumption upon association
1588     * NM05: mac80211: Fix signal strength average initialization for CQM events
1589     * NM06: mac80211: reset connection idle when going offchannel
1590     * NM07: mac80211: add helper for reseting the connection monitor
1591     * NM08: mac80211: make the beacon monitor available externally
1592     * NM09: mac80211: send last 3/5 probe requests as unicast
1593     * NM10: mac80211: disable beacon monitor while going offchannel
1594     * NM11: mac80211: use correct station flags lock
1595     * NM12: mac80211: clear txflags for ps-filtered frames
1596     * NM13: mac80211: reset probe send counter upon connection timer reset
1597     * NM14: mac80211: Fix ibss station got expired immediately
1598     * NM15: mac80211: don't sanitize invalid rates
1599     * NM16: mac80211: delete AddBA response timer
1600     * NW01: cfg80211: fix BSS double-unlinking
1601     * NW02: cfg80211: fix locking
1602     * NW03: cfg80211: fix regression on processing country IEs
1603    
1604    
1605     * Tue Nov 23 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36.1-1mdv
1606     - make kernel-source require diffutils as it uses both diff and cmp
1607     during build (mdv #61719)
1608     - update to 2.6.31.1
1609     - add patches:
1610     * DG03: update gpu tree to 2.6.37-rc3 level
1611     * DI01: add intel_idle fixes (Len Brown, LKML)
1612     * FE01: ext4: fix NULL pointer dereference in print_daily_error_info()
1613     * KS01: sched, cgroup: Fixup broken cgroup movement (Peter Zijlstra, LKML)
1614     - update patch:
1615     * FR01: reiser4 for 2.6.36
1616     - drop patch:
1617     * AA01
1618    
1619     * Sat Nov 20 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36-5mdv
1620     - add patch:
1621     * AA01: 2.6.36.1-rc1
1622    
1623     * Thu Nov 18 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36-4mdv
1624     - add patches:
1625     * CK02: bfs357 worker_fix triggering BUG_ON with wireless
1626     * DC02: update agp tree to 2.6.37-rc2 level
1627     * DG02: update gpu tree to 2.6.37-rc2 level
1628     * DS02: update Alsa tree to 2.6.37-rc2 level
1629     * FB01: btrfs tree from 2.6.37-rc1
1630     * FB02: btrfs: close_bdev_exclusive() should use the same @flags as
1631     the matching open_bdev_exclusive() (Tejun Heo, LKML)
1632     - update patches:
1633     * FU01: unionfs 2.5.7
1634    
1635     * Mon Nov 1 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36-3mdv
1636     - update patch:
1637     * KP01: TuxOnIce 3.2-rc2 for 2.6.36 final
1638     - add patches:
1639     * DC01: agp tree from 2.6.37-rc1
1640     * DC10: changes from 2.6.37-rc1 needed for updated agp tree
1641     * DG01: gpu tree from 2.6.37-rc1
1642     * DG10: changes from 2.6.37-rc1 needed for updated gpu tree
1643     * DS01: Alsa tree from 2.6.37-rc1
1644     - add firewire (JuJu) fixes from upstream (Clemens Ladisch):
1645     * DF01: firewire: ohci: fix buffer overflow in AR split packet handling
1646     * DF02: firewire: ohci: fix race in AR split packet handling
1647     * DF03: firewire: ohci: avoid reallocation of AR buffers
1648     * DF04: firewire: ohci: fix race when reading count in AR descriptor
1649     - add kbuild patch:
1650     * KB01: kbuild: do not remove a.out, kvm.h and kvm_para.h on headers_install_all
1651     (Kirill A. Shutemov, LKML)
1652     - drop merged patches:
1653     * DS05-DS07
1654    
1655     * Sat Oct 23 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36-2mdv
1656     - add patches:
1657     * AM01: microblaze: fix build with make 3.82
1658     * BC01: cfq: improve fsync performance for small files
1659     * DS06: ALSA: hda - Fix wrong TLV mute bit for STAC/IDT codecs
1660     (Patch by Takashi Iwai, requested by Colin Guthrie)
1661     * DS07: ALSA: tlv - Define numbers in sound/tlv.h (Takashi Iwai)
1662     - update patches:
1663     * CK01: Con Kolivas -ck1 patchset including BFS v357
1664    
1665     * Thu Oct 21 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36-1mdv
1666     - update to 2.6.36 final
1667     - update patch:
1668     * DM20: dm-crypt: scale to multiple cpus v3
1669     * DS05: ALSA: HDA: Sigmatel: work around incorrect master muting
1670     (patch by Clemens Ladisch, requested by Colin Guthrie)
1671     * FS10: make squashfs lzma support coexist with lzo
1672     - drop patches:
1673     * DM21-DM23: (merged in DM20)
1674     * FS09: revert of squashfs lzo support (not needed anymore)
1675     - make doc subpackage noarch
1676    
1677     * Fri Oct 15 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36-0.rc8.1.1mdv
1678     - update to 2.6.36-rc8-git1
1679     - drop merged patches:
1680     * BE01, DG01, DI01, DM30, FX01
1681     - add patch:
1682     * DS05: alsa: patch_sigmatel: fix master playback volume mute
1683     (patch by Clemens Ladisch, requested by Colin Guthrie)
1684    
1685     * Thu Oct 7 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36-0.rc7.1mdv
1686     - update to 2.6.36-rc7
1687     - drop merged patches:
1688     * AA01
1689     - add patches:
1690     * BE01: elevator: fix oops on early call to elevator_change() (upstream git)
1691     * DG01: drm: don't drop handle reference on unload (upstream git)
1692     drm/ttm: Fix two race conditions + fix busy codepaths (upstream git)
1693     * DI01: several input fixes from upstream git maybe ending up in 2.6.36 final
1694     * DM30: several media fixes from upstream git maybe ending up in 2.6.36 final
1695     * FX01: xfs: properly account for reclaimed inodes (upstream git)
1696     * KR01: rcu: move check from rcu_dereference_bh to rcu_read_lock_bh_held (upstream git)
1697    
1698     * Sat Oct 2 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36-0.rc6.2mdv
1699     - add patches:
1700     * AA01: 2.6.36-rc6-git2
1701     * FU02: unionfs buildfix for 2.6.36
1702     * MB15: ndiswrapper buildfix for 2.6.36
1703     - re-enable unionfs and ndiswrapper build
1704    
1705     * Wed Sep 29 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36-0.rc6.1mdv
1706     - update to 2.6.36-rc6
1707     - drop merged patches:
1708     * AX02, DI01, DP01, DP02, DP03, FN01, FU02, FU03
1709     - disable patches:
1710     * CK01-CK04: Con Kolivas -ck1 patchset (broken)
1711     - update patches:
1712     * DM20-DM23: dm-crypt multicore scalability
1713     * FU01: unionfs 2.5.6
1714     * KP01: TuxOnIce 3.2-rc2
1715     - rediff patches
1716     * MB02: 3rdparty merge
1717     * NI11: netfilter IFWLOG
1718     * NI16: netfilter PSD
1719     - rediff source2 and source6
1720     - add patch:
1721     * FS09: revert squashfs lzo support for now in favour of lzma
1722     - remove tile arch from source/devel rpms
1723     - disable dazukofs, reiser4, unionfs and ndiswrapper for now (broken)
1724     - update defconfigs
1725    
1726     * Mon Sep 27 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.6-1mdv
1727     - update to 2.6.35.6 (CVE-2010-2960)
1728    
1729     * Tue Sep 21 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.5-1mdv
1730     - update to 2.6.35.5 (CVE-2010-3081, CVE-2010-3301)
1731     - drop merged patches:
1732     * AX10, DA60, DA61, DA62, DH01, DS20, DS21, DS22
1733     * FD01, FE01, FX01, FX02, FX03, MM10, NI01
1734     - rediff patch: CK01
1735    
1736     * Sun Sep 12 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.4-3mdv
1737     - add patches:
1738     * DS40, DS41: Staging: Add initial release of brcm80211,
1739     the new Broadcom 802.11n wireless LAN driver.
1740     - update defconfigs:
1741     * desktop586: support 32 cpus and 4GB RAM
1742     * desktop: support 64 cpus
1743     * laptop: support 32 cpus
1744     * server: support 128 cpus
1745     - clean config scripts
1746    
1747     * Sat Sep 4 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.4-2mdv
1748     - add patches:
1749     * AX10: x86, tsc, sched: Recompute cyc2ns_offset's during resume
1750     from sleep states
1751     * DA60: libata-sff: remove harmful BUG_ON from ata_bmdma_qc_issue
1752     * DA61: sata_mv: fix broken DSM/TRIM support (v2)
1753     * DA62: pata_cmd64x: revert commit d62f5576 ("pata_cmd64x: fix
1754     handling of address setup timings"), as it introduced a
1755     divide by zero fault.
1756     * DH01: hwmon: (k8temp) Differentiate between AM2 and ASB1
1757     * DS20: ALSA: HDA: Add another Sony VAIO quirk for ALC269
1758     * DS21: ALSA: HDA: Use model=auto for LG R510
1759     * DS22: ALSA: HDA: Rename iMic to Int Mic on Lenovo NB0763 so
1760     PulseAudio does not ignore it.
1761     * FD01: direct-io: move aio_complete into ->end_io
1762     * FE01: ext4: move aio completion after unwritten extent conversion
1763     * FX01: xfs: fix untrusted inode number lookup
1764     * FX02: xfs: ensure we mark all inodes in a freed cluster XFS_ISTALE
1765     * FX03: xfs: move aio completion after unwritten extent conversion
1766     * MM10: writeback: write_cache_pages doesn't terminate at nr_to_write <= 0
1767     (fixes a regression and improves writeback ~3 times on big files)
1768     * NI01: netfilter: fix CONFIG_COMPAT support
1769    
1770     * Fri Aug 26 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.4-1mdv
1771     - update to 2.6.35.4 (CVE-2010-2803)
1772     * drop merged patches:
1773     AX01, FS20
1774    
1775     * Sat Aug 21 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.3-2mdv
1776     - rebase patch:
1777     * CK01: fixes missing change to mm/swapfile.c causing an oops
1778     - add patches:
1779     * AX01, AX02: fixes 2.6.35.2 regression: Kernel panic or instant
1780     reboot on udev modules loading (intel-agp, i915)
1781     (kbz #16612)
1782     * FS20: NFS: Fix an Oops in the NFSv4 atomic open code
1783     * FS21: NFS: fix the return value of nfs_file_fsync()
1784    
1785     * Fri Aug 20 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.3-1mdv
1786     - update to 2.6.35.3
1787     * drop merged patch: AA01
1788    
1789     * Sun Aug 15 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.2-2mdv
1790     - revert samsung-backlight and samsung-laptop merge, it needs more work
1791     * re-add DP05, DP06
1792     * drop DS50
1793     - add patches:
1794     * AA01: mm: fix page table unmap for stack guard page properly
1795     (fixes 2.6.35.2 breakage (mostly triggered with PAE / HIGHPTE))
1796     * DP02: ideapad: Only allow camera state to be set to 0 or 1
1797     * DP03: ideapad: Stop using global variables
1798    
1799     * Sat Aug 14 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.2-1mdv
1800     - update to 2.6.35.2 (CVE-2010-2240)
1801     - add patches:
1802     * DP01: add Lenovo IdeaPad ACPI Laptop Extras support
1803     * DS50: merge samsung-backlight with samsung-laptop that got merged upstream
1804     - drop merged patches:
1805     * AP01, DM30, DP10, KT01
1806     * DP05. DP06 (replaced by DS50)
1807     - rediff patches:
1808     * CK01, KP01
1809     - update defconfigs
1810    
1811     * Tue Aug 10 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.1-1mdv
1812     - update to 2.6.35.1
1813     - add patch:
1814     * MD30: md/raid10: fix deadlock with unaligned read during resync
1815     - update patches:
1816     * CK01: Con Colivas ck patchset including BFS v0.323
1817     * FR01: Reiser4 for 2.6.35 final
1818     * KP01: TuxOnIce 3.1.1.1 for 2.6.35 final
1819     - drop merged patches:
1820     * CK02, DG01
1821     - disable patch MM01 (transparent hugepages) for now
1822     - update defconfigs
1823    
1824     * Fri Aug 6 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35-2mdv
1825     - add patches:
1826     * AP01: powerpc: fix build breakage with make 3.82 (Sam Ravnborg)
1827     * CK01: add back and re-enable BFS v320 scheduler
1828     * CK02: sched: add above_background_load function
1829     * CK03: sched: add Auto SCHED_ISO for xorg (disabled for now)
1830     * CK04: sched: add support for custom rr_interval value,
1831     and set desktop(586) to 3 while laptop and server uses 6
1832     * DG01: radeon: add some more evergreen and r7xx pci ids
1833     * DM20: dm-crypt: Scale to multiple cpus v2 (Andi Kleen)
1834     * DM21: dm-crypt: Use generic private pointer in per-cpu struct (Milan Broz)
1835     * KT01: sched: Revert nohz_ratelimit(), as it causes excessive wakeups
1836     * MM01: mm: add transparent hugepage support (Andrea Arcangeli)
1837     - update defconfigs
1838    
1839     * Mon Aug 2 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35-1mdv
1840     - update to 2.6.35
1841     - drop merged patches:
1842     * AX01-AX02, AX10-AX11, AX20, DA01-DA05, DB10, DG00-DG03
1843     * DN02-DN04, DN20-DN21, FS25, FS30, KP10, MC52, MC53
1844     * NB10, NI20-NI21
1845     - disable patch:
1846     * CK01: BFS scheduler, broken for now
1847     - update patches:
1848     * DI01: lirc for 2.6.35-rc6-git
1849     * FR01: Reiser4 for 2.6.35-rc6-git
1850     * KP01: TuxOnIce 3.1.1.1 for 2.6.35-rc6-git
1851     * MC50: dazukofs 3.1.3
1852     - rediff patches:
1853     * DP05: samsung-backlight driver
1854     * FS01: unionfs 2.5.4
1855     * FS10: squashfs lzma support
1856     * MB02: 3rdparty merge
1857     * MC51: dazukofs Kconfig and Makefile
1858     - add patches:
1859     * DP06: samsung-backlight 2.6.35 buildfix
1860     * FS02: unionfs 2.6.35 buildfix
1861     * FS03: unionfs oops fix (pterjan, main kernel)
1862     * MB14: ndiswrapper 2.6.35 buildfix
1863     * MC52: dazukofs 2.6.35 buildfix
1864     * NI12: netfilter IFWLOG 2.6.35 buildfix
1865     * NI17: netfilter psd 2.6.35 buildfix
1866     * NI31: netfilter ipset 2.6.35 buildfix
1867     - merge source2 and source3 to a single patch
1868     - enable CGROUPS, update defconfigs
1869    
1870     * Tue Jul 27 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34.1-3mdv
1871     - add patches:
1872     * AX20: x86: Send a SIGTRAP for user icebp traps, fixes Wine apps
1873     breakage (mdv #60067)
1874     * DG01: agp tree from 2.6.35-rc6
1875     * DG02, DG03: gpu: intel fixes from git
1876     * FS30: cifs: fix a malicious redirect problem in the DNS lookup
1877     code (CVE-2010-2524)
1878    
1879     * Fri Jul 23 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34.1-2mdv
1880     - update patch:
1881     * DG00: gpu tree from 2.6.35-rc6
1882     - add patch:
1883     * NM10: bridge: fdb cleanup runs too often
1884     * NI20: tcp: tcp_synack_options() fix
1885     * NI21: tcp: use correct net ns in cookie_v4_check()
1886    
1887     * Mon Jul 5 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34.1-1mdv
1888     - update to 2.6.34.1 final
1889     - drop patch:
1890     * AA01: 2.6.34.1-rc1
1891    
1892     * Sun Jul 4 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-12mdv
1893     - add patch:
1894     * DG00: gpu tree from 2.6.35-rc3-git8
1895     - drop patches:
1896     * DG01-DG14, DG22: radeon evergreen patches (merged in DG00)
1897    
1898     * Sat Jul 3 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-11mdv
1899     - add patch:
1900     * AA01: 2.6.34.1-rc1
1901     - rediff patch:
1902     * ck1 patchset for 2.6.34 (including BFS)
1903     - drop merged patches:
1904     * AX20, AX21, DA10, DA20, DA25, DA30, DA31, DA35, DG20, DG21, DG23
1905     * DG25, DG26, DG27, DG30, DG31, DG32, DM20, DM21, DM22, DM23, DM24
1906     * DN01, DN05, DN06, DN10, DN15, DN16, DN25, DN26, DN30, DP11, DP12
1907     * DS30, DS31, DU01, DU02, DU05, DV10, FS20, FS26, FS27, FS30, FS35
1908     * KP11, MM01, NM10, NM11, NM12, NM13, NM14
1909    
1910     * Sat Jun 26 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-10mdv
1911     - add patches:
1912     * AX20: x86/amd-iommu: Fix crash when request_mem_region fails
1913     * AX21: x86/amd-iommu: Fall back to GART if initialization fails
1914     * DA10: acpi/video: fix acpi_backlight=video to correctly enable
1915     ACPI_VIDEO_BACKLIGHT_FORCE_VIDEO
1916     * DA25: ahci: add support for for JMicron JMB362
1917     * DA30: sata_nv: don't diddle with nIEN on mcp55, as it gets stuck once
1918     set, and mcp55 has its own IRQ masking mechanism so there's no
1919     reason to mess with nIEN in the first place.
1920     (fixes liteon bluray iHOS104-08 error)
1921     * DA31: sata_nv: use ata_pci_sff_activate_host() instead of
1922     ata_host_activate() (fixes IRQ assignment failure in legacy mode)
1923     * DA35: sata_via: magic vt6421 fix for transmission problems with recent
1924     WD drives
1925     * DG26: drm/radeon/kms: don't default display priority to high on rs4xx
1926     * DG27: drm/radeon/kms: release AGP bridge at suspend
1927     * DG31: drm/i915: Rebind bo if currently bound with incorrect alignment
1928     * DG32: drm/i915: Kill dangerous pending-flip debugging
1929     * DM23: md: remove unneeded sysfs files more promptly
1930     * DM24: md: set mddev readonly flag on blkdev BLKROSET ioctl
1931     * DN05: iwlwifi: add missing rcu_read_lock
1932     * DN06: iwlwifi: recalculate average tpt if not current
1933     * DN16: ath5k: retain promiscuous setting
1934     * DN25: ar9170usb: add support for more devices:
1935     * Netgear WNA1000
1936     * Proxim ORiNOCO Dual Band 802.11n USB Adapter
1937     * 3Com Dual Band 802.11n USB Adapter
1938     * H3C Dual Band 802.11n USB Adapter
1939     * WNC Generic 11n USB dongle
1940     * DN26: ar9170usb: fix panic triggered by undersized rxstream buffer
1941     * DN30: p54usb: Add device ID for Dell WLA3310 USB
1942     * DP12: pci: disable msi on AMD rs4xx internal gfx bridges
1943     * DS31: Staging: rt2870: add device ID of MelCo.,Inc. WLI-UC-G301N
1944     * DU01: usb/option: add PID for ZTE product
1945     * DU02: usb/option: OLIVETTI OLICARD100 support
1946     * DU05: usb/qcaux: add Samsung U520 device ID
1947     * DV10: V4L/DVB: uvcvideo: Prevent division by 0 when control step value is 0
1948     * FS26: ext4: check s_log_groups_per_flex in online resize cod
1949     * FS27: ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only files
1950     * FS35: VFS: fix recent breakage of FS_REVAL_DOT
1951     * MM01: tmpfs: insert tmpfs cache pages to inactive list at first
1952     (fixes OOM killer triggering on parallel file copy on tmpfs)
1953     * NM14: mac80211: fix deauth before assoc
1954    
1955     * Sat Jun 19 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-9mdv
1956     - add patches:
1957     * DA01: ACPI / EC / PM: Fix race between EC transactions and
1958     system suspend
1959     * DA02: ACPI / EC / PM: Fix names of functions that block/unblock
1960     EC transactions
1961     * DA03: ACPI: Unconditionally set SCI_EN on resume
1962     * DA04: suspend: Move NVS save/restore code to generic suspend
1963     functionality (#59703)
1964     * DA05: ACPI: Store NVS state even when entering suspend to RAM (#59703)
1965     * DA20: libata: disable ATAPI AN by default
1966     (Fixes issue with ATAPI devices which raise AN when hit by
1967     commands issued by open(). This leads to infinite loop of
1968     AN -> MEDIA_CHANGE uevent -> udev open() to check media -> AN)
1969     * DG30: drm/i915: Reject bind_to_gtt() early if object > aperture
1970     * DN15: ath5k: consistently use rx_bufsize for RX DMA
1971     * DN20: r8169: fix random mdio_write failures (#59723)
1972     * DN21: r8169: fix mdio_read and update mdio_write according to hw
1973     specs (#59723)
1974     * DS30: staging: vt6655: Fix kernel BUG on driver wpa initialization
1975     * FS20: Btrfs: add a permission check for setfacl (CVE-2010-2071)
1976     * FS25: ext4: Prevent creation of files larger than RLIMIT_FSIZE using
1977     fallocate (fixes Ext4 Security Bypass Vulnerability)
1978     * FS30: GFS2: Fix permissions checking for setflags ioctl (CVE-2010-1641)
1979     * NM11: mac80211: give warning if building w/out rate ctrl algorithm
1980     * NM12: mac80211: fix rts threshold check
1981     * NM13: mac80211: fix handling of 4-address-mode in ieee80211_change_iface
1982    
1983     * Sun May 30 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-8mdv
1984     - add patches:
1985     * AX01: x86: Avoid hlt check for newer cpus
1986     * AX02: x86: cacheinfo: Turn off L3 cache index disable feature in
1987     virtualized environments, fixes crash on boot on xen.
1988     * AX10: x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo
1989     * AX11: powernow-k8: Add core performance boost support
1990     * DN10: ath9k_hw: fix hardware deinit panic
1991     * FR01: Reiser4 for 2.6.34 final
1992     * KP10: panic: call console_verbose() in panic to ensure a directly
1993     called panic will print a backtrace
1994     * KP11: posix_timer: Fix error path in timer_create
1995     - drop patches:
1996     * FR02-FR11 reiser4 patches (replaced by FR01)
1997    
1998     * Sat May 29 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-7mdv
1999     - add patch:
2000     * DG25: drm/radeon: fix the r100/r200 ums block 0 page fix
2001     - drop patch:
2002     * DG24: drm/i915: Configure the TV sense state correctly on
2003     GM45 to make TV detection reliable (as it got reverted
2004     upstream in commit: d4b74bf07873da2e94219a7b67a334fc1c3ce649)
2005    
2006     * Wed May 26 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-6mdv
2007     - add patches:
2008     * DN03: iwlwifi: Recover TX flow stall due to stuck queue
2009     * DN04: iwl3945: Eenable stuck queue detection on 3945
2010     * FS10: readd SquashFS lzma support
2011     * NM10: mac80211: Fix robust management frame handling
2012     - update patches:
2013     * FS01: unionfs 2.5.4 for 2.6.34-rc0
2014     * KP01: TuxOnIce 3.1 for 2.6.34
2015     - update defconfigs
2016    
2017     * Sun May 23 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-5mdv
2018     - add patches:
2019     * DG13: radeon/kms: R3XX-R4XX fix GPU reset code
2020     * DG14: radeon/kms/atom: autoload hwmon drivers
2021    
2022     * Sun May 23 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-4mdv
2023     - add patches:
2024     * DB10: firmware_class: fix memory leak introduced by the patch 6e03a201bbe:
2025     firmware: speed up request_firmware()
2026     * DG01: radeon/kms: fence cleanup + more reliable GPU lockup detection V4
2027     * DG02: radeon/kms: rename gpu_reset to asic_reset
2028     * DG03: radeon/kms: simplify & improve GPU reset V2
2029     * DG04: radeon/kms: update atombios.h power tables for evergreen
2030     * DG05: radeon/kms: add support for evergreen power tables
2031     * DG06: radeon/kms/evergreen: add gart support
2032     * DG07: radeon/kms/evergreen: add soft reset function
2033     * DG08: radeon/kms/evergreen: implement gfx init
2034     * DG09: radeon/kms/evergreen: setup and enable the Command Processor
2035     (needs the kernel-firmware-extra >= 20100429-2mnb for evergreen me/pfp firmwares)
2036     * DG10: radeon/kms/evergreen: implement irq support
2037     (needs the radeon-rlc-firmware >= 1-3mdv for evergreen rlc firmwares)
2038     * DG11: radeon/kms/evergreen: add (hotplug detect) support for digital monitors
2039     * DG12: radeon/kms/evergreen: fix cypress firmware typo
2040     * DG20: radeon/kms: reset ddc_bus in object header parsing
2041     * DG21: radeon/kms/atom: fix typo in LVDS panel info parsing
2042     * DG22: drm/edid: fix 1600x1200@75Hz
2043     * DG23: drm/edid: Fix 1024x768@85Hz
2044     * DG24: drm/i915: Configure the TV sense state correctly on GM45 to make TV detection reliable
2045     * DM20: md: Fix read balancing in RAID1 and RAID10 on drives > 2TB
2046     * DM21: md: fix counting of write targets on raid1
2047     * DM22: md: avoid possible oops and array stop on linear layout
2048     * DP10: pci: disable MSI on Via K8M800 (fixes problems with AHCI)
2049     * DP11: pci: disable MSI for MCP55 on P5N32-E SLI (fixes NIC problems)
2050    
2051     * Thu May 20 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-3mdv
2052     - fix patch CK01 to actually contain BFS v318 (and not v317)
2053    
2054     * Thu May 20 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-2mdv
2055     - update patch:
2056     * CK01: ck1 patchset for 2.6.34 final (including BFS v318)
2057     - drop patch:
2058     * CK02: ck patchset buildfix
2059     - enable CGROUPS on all configs (to support systemd, #59345)
2060    
2061     * Mon May 17 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-1mdv
2062     - update to 2.6.34 final
2063    
2064     * Sun May 16 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc7.9.5mdv
2065     - update to 2.6.34-rc7-git9
2066     - drop merged patches:
2067     * AA05: vfs fixes from stable queue
2068    
2069     * Sat May 15 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc7.8.4mdv
2070     - update to 2.6.34-rc7-git8
2071     - drop merged patches:
2072     * AA01-A04: git fixes for hid, autofs, alsa, network, radeon
2073     - add patches:
2074     * AA05: vfs fixes from stable queue
2075     * DN01: iwlwifi: fix internal scan race
2076     * DN02: iwlagn: work around rate scaling reset delaY
2077    
2078     * Tue May 11 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc7.3mdv
2079     - add patches:
2080     * AA03: git fixes for network queued for final
2081     * AA04: git fixes for radeon queued for final
2082    
2083     * Mon May 10 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc7.2mdv
2084     - add patches:
2085     * AA01: git fixes for hid, autofs and alsa queued for final
2086     * AA02: git fixes for wireless queued for final
2087    
2088     * Mon May 10 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc7.1mdv
2089     - update to 2.6.34-rc7
2090    
2091     * Sat May 8 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc6.6.3mdv
2092     - update to 2.6.34-rc6-git6
2093     - disable PRINTK_TIME
2094     - update defconfigs
2095    
2096     * Wed May 5 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc6.4.2mdv
2097     - update to 2.6.34-rc6-git4
2098    
2099     * Fri Apr 30 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc6.1mdv
2100     - update to 2.6.34-rc6
2101     - update defconfigs
2102    
2103     * Mon Apr 26 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc5.7.4mdv
2104     - update to 2.6.34-rc5-git7
2105     * fix for ipv6 boot crash
2106     * fixes ext4 corruption
2107     - drop patch:
2108     * AA01: revert: tcp bind() fix when many ports are bound (fixed in -git7)
2109    
2110     * Sun Apr 25 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc5.6.3mdv
2111     - add patch:
2112     * AA01: revert: tcp bind() fix when many ports are bound (it breaks boot)
2113    
2114     * Sun Apr 25 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc5.6.2mdv
2115     - update to 2.6.34-rc5-git6
2116    
2117     * Tue Apr 20 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc5.1mdv
2118     - update to 2.6.34-rc5
2119     - drop merged patch:
2120     * AA01: upstream git update
2121     - enable CONFIG_KSM (mdv #58384)
2122    
2123     * Sat Apr 17 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc4.4.1mdv
2124     - update to 2.6.34-rc4-git4
2125     - drop merged patches:
2126     * Patch100,101,110: Nouveau updates
2127     * AX01: HPET erratum fix
2128     * AX02, DA02: Intel Cougar Point Support
2129     * DG01-DG13: drm fixes
2130     * DM50, DM51: v4l-dvb snapshot
2131     * DN10: Atheros AR8151x support
2132     * DN15: b43 pio at runtime
2133     * DN20-DN23: iwlwifi fixes
2134     * DS01, DS02: Alsa snapshot
2135     * DS50: broadcom crystalhd
2136     * DU01: usb settling delay
2137     * FB01: btfrs fix
2138     * FC01: ceph support
2139     * FS10, FS11: squashfs lzma support
2140     * NM01-NM03: mac80211 fixes
2141     - update / add patches:
2142     * AA01: 2.6.34-r4-git4+ fixes from git (alsa, xfs, acpi, ...)
2143     * CK01, CK02: ck1 patchset (BFS scheduler) + buildfix
2144     * DM12: fix dm-raid45 build with 2.6.34
2145     * FR01-FR11: reiser4 support (from mmotm)
2146     * KP01: TucOnIce 3.1 for 2.6.34-rc4
2147     * MC53: dazuko buildfix for 2.6.34
2148     * MC83: viahss buildfix for 2.6.34
2149     * MC93: vloopback buildfix for 2.6.34
2150     - update defconfigs
2151    
2152     * Sat Apr 17 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33.2-3mdv
2153     - add patches:
2154     * DG09: drm: edid quirks for envision en2028
2155     * DG10: drm: radeon: r300-ad only has one quad pipe
2156     * DG11: drm: radeon kms: fix washed-out image on legacy tv-dac
2157     * DG12: drm: radeon kms: combios: verify dac_adj values are valid
2158     * DG13: drm: i915: fix tiling limits for i915 class hw
2159     * DM11: dm-raid45 buildfix (and re-enable it on all configs)
2160    
2161     * Sat Apr 10 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33.2-2mdv
2162     - update ipset conditionally:
2163     * update to 4.2 for 2010.1
2164     * keep 2.4.9 for 2010.0 backports
2165     - add patches:
2166     * DG01: drm: edid: allow certain bogus edids to hit a fixup path
2167     rather than fail
2168     * DG02: drm: radeon: add new rs880 pci id
2169     * DG03: drm: remove the edid blob stored in the edid property
2170     when it is disconnected
2171     * DG04: drm: radeon kms: never treat rs4xx as agp
2172     * DG05: drm: radeon kms: fix null pointer dereference if memory
2173     allocation failed in a simple way
2174     * DG06: drm: radeon kms: don't print error on erestartsys
2175     * DG07: drm: radeon kms: fix pal tv-out support on legacy igp chips
2176     * DG08: drm: return enodev if the inode mapping changes
2177     * DN20: iwlwifi: fix regulatory code
2178     * DN21: iwlwifi: counting number of tfds can be free for 4965
2179     * DN22: iwlwifi: check for valid qos packet before free on 4965
2180     * DN23: iwlwifi: fix range checking issue on 3945
2181     * NM01: mac80211: fix preq processing and one small bug
2182     * NM02: mac80211: move netdev queue enabling to correct spot
2183     * NM03: mac80211: tear down all agg queues when restart reconfig hw
2184    
2185     * Fri Apr 2 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33.2-1mdv
2186     - update to 2.6.33.2
2187     - update patches:
2188     * DM50: v4l-dvb snapshot 2010-04-02
2189     * DM51: v4l-dvb snapshot buildfix
2190     * DS01: Alsa 1.0.22.1+ snapshot 2010-04-02
2191     * DS02: Alsa 1.0.22.1+ snapshot buildfix
2192     * DS10: Alsa 1.0.22.1+ unstable via vt1732 2010-04-02
2193     - rediff P100 (nouveau update for 2010.1)
2194     - update defconfigs
2195    
2196     * Sun Mar 21 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33.1-1mdv
2197     - update to 2.6.33.1
2198     - update patches:
2199     * DM50: v4l-dvb: snapshot 2010-03-21
2200     * DS01: Alsa 1.0.22.1+ snapshot 2010-03-21
2201     * DS10: Alsa 1.0.22.1+ unstable via 1732
2202     * KP01: TuxOnIce 3.1 for 2.6.33
2203     - drop merged patches:
2204     * DA01: ahci: disable FPDMA auto-activate on nVidia AHCI
2205     * DM51: v4l-dvb snapshot buildfix
2206     * SI01: security: fix error return path in ima_inode_alloc
2207     - disable patch:
2208     * DG02: drm: git snapshot 2010-03-02
2209     (introduced regression on some radeons, and broke backports
2210     for nouveau users)
2211     - add nouveau patches as conditional build so backports will work:
2212     * for 2010.1:
2213     * nouveau: git 2010-03-16 (like main kernel)
2214     * for 2010.0 backports
2215     * nouveau: add ctxprogs generator for nv50/nv8x/nv9x
2216     (readded as DG02 got disabled)
2217     - disable CONFIG_USB_PRINTER (like main kernel, #58293)
2218     - update defconfigs
2219    
2220     * Sun Mar 7 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-5mdv
2221     - stop adding pcspkr to /etc/modprobe.preload as it overrides
2222     any blacklisting (Requested by Thierry)
2223     - stop adding psmouse to /etc/modprobe.preload, as it's builtin
2224     - add patches:
2225     * FC01: ceph distributed file system support v0.19
2226     (http://ceph.newdream.net/)
2227     - update patches:
2228     * FR01: reiser4 for 2.6.33
2229     * FS01: unionfs 2.5.4 for 2.6.33
2230     * KP01: TuxOnIce 3.0.99.49 for 2.6.33
2231     - drop patches:
2232     * FR02-FR26: reiser4 fixes from mmotm tree (mostly merged in FR01)
2233     * FS01: unionfs buildfix (not needed anymore)
2234    
2235     * Wed Mar 3 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-4mdv
2236     - disable FB_RADEON as it might interfere with RADEON_KMS
2237     (fbcon and radeondrmfb are now the ones doing the work)
2238     - add patches:
2239     * AX05: Add Intel Cougar Point LPC and SMBus support
2240     * DU01: Lower USB storage settling delay to 1 sec (down from 5),
2241     gives faster usb storage detection
2242    
2243     * Tue Mar 2 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-3mdv
2244     - add patches:
2245     * DA02: ahci: add Intel Cougar Point support
2246     * DG02: drm: git snapshot 2010-03-02
2247     - nouveau updates
2248     - radeon updates, including initial Evergreen support (Radeon HD 5xxx)
2249     - intel updates, including initial Sandybridge support
2250     - initial support for vga_switcheroo (switch between integrated
2251     and discrete GPU at runtime)
2252     - drop patch:
2253     * DG01: drm: nouveau: add ctxprogs generator for nv50/nv8x/nv9x
2254     (merged in DG02)
2255    
2256     * Sat Feb 27 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-2mdv
2257     - add patches:
2258     * CK01: 2.6.33-ck1 patchset (BFS sceduler + optimizations)
2259     * DA01: ahci: disable FPDMA auto-activate on nVidia AHCI
2260     * FB01: btrfs: fix memory corruption on mount
2261     * SI01: security: fix error return path in ima_inode_alloc
2262     - update patches:
2263     * AX01: add HPET Erratum fix for triggering WARN_ON due to
2264     mismatch on HPET_Tn_CMP readback (replaces the earlier
2265     HPET: Drop WARN_ON for mismatch on HPET_Tn_CMP readback)
2266    
2267     * Wed Feb 24 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-1mdv
2268     - update to 2.6.33 final
2269     - drop merged patches:
2270     * DA01: acpi: fixes from 2.6.33 git queue
2271     * DG02: drm-staging: fixes from 2.6.33 git queue (nouveau, vmwgfx)
2272     * DN20: iwlwifi: fixes from 2.6.33 git queue
2273    
2274     * Tue Feb 23 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc8.8.3mdv
2275     - update to 2.6.33-rc8-git8
2276     - add patch:
2277     * DA01: acpi: fixes from 2.6.33 git queue
2278     * DG02: drm-staging: fixes from 2.6.33 git queue (nouveau, vmwgfx)
2279     * DN20: iwlwifi: fixes from 2.6.33 git queue
2280     - rediff patch:
2281     * DM50: v4l-dvb snapshot
2282     - drop patch:
2283     * KP10: re-export find_task_by_vpid symbol for fglrx
2284     (not needed anymore, confirmed by Anssi)
2285    
2286     * Sat Feb 20 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc8.5.2mdv
2287     - update to 2.6.33-rc8-git5
2288     - add patches:
2289     * AX01: HPET: Drop WARN_ON for mismatch on HPET_Tn_CMP readback
2290     * DN15: b43: convert B43_PIO(_FORCE) to a module option (pio=1)
2291     - drop merged patches:
2292     * DN20: iwlwifi: fix broken AMSDU Rx functionality
2293     * NM01: mac80211: fix handling of null-rate control in rate_control_get_rate
2294    
2295     * Sat Feb 13 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc8.1mdv
2296     - update to 2.6.33-rc8
2297     - add patches:
2298     DG01: drm: nouveau: add ctxprogs generator for nv50/nv8x/nv9x
2299     (fixes fd.o bug #23198, (Anssi, main kernel))
2300     DN10: add support for Atheros AR8151 and AR8152
2301     DN20: iwlwifi: fix broken AMSDU Rx functionality
2302     NM01: mac80211: fix handling of null-rate control in rate_control_get_rate
2303     - update patches:
2304     * MB10: ndiswrapper 1.56
2305     * MB12: ndiswrapper Makefile fix
2306     - drop merged patches:
2307     * DS20: alsa: hda-intel divide-by-zero crash fix
2308     * FC01: fs: compat_ioctl: ignore RAID_VERSION ioctl
2309     - drop unneeded patches:
2310     * MB14: ndiswrapper cmpxchg8b fix
2311    
2312     * Mon Feb 8 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc7.1.2mdv
2313     - update to 2.6.33-rc7-git1
2314     - drop merged patch:
2315     * FB01: fs: freeze_bdev: dont deactivate successfully frozen MS_RDONLY sb
2316     - add patch:
2317     * FC01: fs: compat_ioctl: ignore RAID_VERSION ioctl
2318     - enable RADEON_KMS again, as it now works:
2319     * NOTE!
2320     - you need the following rpms installed to get full KMS support:
2321     x11-driver-video-ati-6.12.99-0.20100204mdv2010.1 from main/testing
2322     radeon-rlc-firmware-1-1mdv2010.1 from non-free/release
2323     - if you get problem:
2324     - you might need to remove any splash= or vga= from the
2325     kernel command line
2326     - you might need to add radeon to /etc/modprobe.preload
2327     - if you still have problems, you can disable it with radeon.modeset=0
2328     on kernel command line
2329    
2330     * Sun Feb 7 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc7.1mdv
2331     - update to 2.6.33-rc7
2332     - drop merged patch:
2333     * DG01: drm-intel fixes from git
2334     - add patch:
2335     * DS20: alsa: hda-intel: avoid divide-by-zero crash (potential local DoS)
2336    
2337     * Sat Feb 6 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc6.6.8mdv
2338     - add patch:
2339     * DG01: drm-intel fixes from git
2340    
2341     * Sat Feb 6 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc6.6.7mdv
2342     - update to 2.6.33-rc6-git6
2343     - update patches:
2344     * KP01: TuxOnIce 3.0.99.47 for 2.6.33-rc6
2345     - drop merged patches:
2346     * DG01: drm: radeon-kms: dont call suspend path before cleaning up GPU
2347     * LI01: idr: revert misallocation bug fix
2348     - set CONFIG_SND_HDA_INPUT_BEEP_MODE=2 in defconfigs
2349    
2350     * Thu Feb 4 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc6.4.6mdv
2351     - update to 2.6.33-rc6-git4
2352     - add patch:
2353     * LI01: idr: revert misallocation bug fix (it breaks X and drm)
2354     - rediff patch:
2355     * DM50: v4l-dvb snapshot
2356     - disable Radeon KMS by default again, as the libdrm we have is not
2357     new enough
2358    
2359     * Wed Feb 3 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc6.3.5mdv
2360     - update to 2.6.33-rc6-git3
2361     - update defconfigs
2362    
2363     * Wed Feb 3 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc6.2.4mdv
2364     - update to 2.6.33-rc6-git2
2365    
2366     * Tue Feb 2 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc6.1.3mdv
2367     - add patches:
2368     * DG01: drm: radeon kms: dont call suspend path before cleaning up GPU
2369     - enable Radeon KMS by default
2370     * NOTE! you need: x11-driver-video-ati-6.12.99-0.20100202mdv2010.1
2371     from main/testing to get KMS support (if you get problem, you can
2372     disable it with radeon.modeset=0 on kernel command line)
2373    
2374     * Tue Feb 2 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc6.1.2mdv
2375     - update to 2.6.33-rc6-git1
2376     - drop merged patches:
2377     * DC01: x86: agp_amd64_init regression
2378     - rediff patches:
2379     * DS01: Alsa 1.0.22+ snapshot
2380    
2381     * Sat Jan 30 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc6.1mdv
2382     - update to 2.6.33-rc6
2383     - drop merged patches:
2384     * AX01: x86: pci intel ioh bus num reg accessing fix (ioh dropped as broken)
2385     * DG01: drm fixes from airlied git
2386     * DN01: iwlwifi: Fix throughput stall issue in HT mode for 5000 series
2387     * KT01: clockevent: Dont remove broadcast device when cpu is dead
2388     - update patches:
2389     * DM50: v4l-dvb snapshot 2010-01-30
2390     * DS01: Alsa 1.0.22+ snapshot 2010-01-30
2391     - add patches:
2392     * FB01: fs: freeze_bdev: dont deactivate successfully frozen MS_RDONLY sb
2393     (fixes non-bootable dmraid due to oops (#56768))
2394    
2395     * Mon Jan 25 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc5.2mdv
2396     - add patches:
2397     * DC01: x86/agp: fix agp_amd64_init regression
2398     * DG01: drm: fixes from airlied git queue for 2.6.33
2399     * KT01: clockevent: Dont remove broadcast device when cpu is dead
2400     - drop patch:
2401     * DG03: drm: radeon kms: Fix r600 blit cleanup path (merged in DG01)
2402    
2403     * Fri Jan 22 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc5.1mdv
2404     - update to 2.6.33-rc5
2405     - drop merged patches:
2406     * AA01-AA03: core, usb, staging fixes
2407     * DA01-DA16: acpi updates
2408     * DP06: sony-laptop fix
2409    
2410     * Thu Jan 21 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc4.7.6mdv
2411     - update to 2.6.33-rc4-git7
2412     - add patches from git queue:
2413     * AA01: core fixes
2414     * AA02: usb fixes
2415     * AA03: staging fixes
2416     - update patches:
2417     * DM50: v4l-dvb snapshot 2010-01-21
2418     * DS01: Alsa 1.0.22+ snapshot 2010-01-21
2419     * KP01: TuxOnIce 3.0.99.45 for 2.6.33-rc4
2420    
2421     * Sun Jan 17 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc4.4.5mdv
2422     - update to 2.6.33-rc4-git4
2423     - drop merged patch:
2424     * DG01: drm-intel updates
2425    
2426     * Sat Jan 16 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc4.3.4mdv
2427     - update to 2.6.33-rc4-git3
2428     - add patches:
2429     * DA01: EC: Accelerate query execution
2430     * DA02: acpi_pad: fix error checks
2431     * DA03: ACPI video: Prune dupe video devices, unless "video.allow_duplicates"
2432     * DA04: x86, ACPI: delete acpi_boot_table_init() return value
2433     * DA05: drm_i915: Add HP nx9020_Samsung SX20S to ACPI LID quirk list
2434     * DA06: ACPI: SBS: Move SBS HC callback to faster Notify queue
2435     * DA07: ACPI: EC: Add wait for irq storm
2436     * DA08: ACPI: Advertise to BIOS in _OSC: _OST on _PPC changes
2437     * DA09: ACPI: Remove unnecessary cast
2438     * DA10: ACPI: don't cond_resched if irq is disabled
2439     * DA11: eeepc-laptop: disable cpu speed control on EeePC 701
2440     * DA12: eeepc-laptop: dmi blacklist to disable pci hotplug code
2441     * DA13: eeepc-laptop: switch to using sparse keymap library
2442     * DA14: eeepc-laptop: add hotplug_disable parameter
2443     * DA15: eeepc-laptop: disable wireless hotplug for 1201N
2444     * DA16: ACPI: Fix section mismatch error for acpi_early_processor_set_pdc()
2445     * DG01: drm-intel updates
2446     * DN01: iwlwifi: Fix throughput stall issue in HT mode for 5000 series
2447     * DP06: sony-laptop: fix using of uninitialized variable
2448     - drop merged patch:
2449     * DG02: drm: i915: disable LVDS downclock by default
2450    
2451     * Fri Jan 15 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc4.2.3mdv
2452     - update to 2.6.33-rc4-git2
2453     - update patches:
2454     * DM50: v4l-dvb snapshot 2010-01-15
2455     * DS01: Alsa 1.0.22+ snapshot 2010-01-15
2456     - add patches:
2457     * DG02: drm: i915: disable LVDS downclock by default (fixes flickering)
2458     * DG03: drm: radeon kms: Fix r600 blit cleanup path
2459     (fixes oops if rlc firmware is missing)
2460     * DM51: v4l-dvb snapshot buildfix
2461     - drop merged patches:
2462     * DG01: radeon kms updates
2463     * NM01-NM03: mac80211 skb buffering performance fixes
2464    
2465     * Wed Jan 13 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc4.2mdv
2466     - defconfig changes:
2467     * enable NAMESPACES support (like main kernel, noted by Thierry)
2468     * enable EXT3_DEFAULTS_TO_ORDERED as data=writeback is a security
2469     issue and makes a mess on system crash
2470     - add patches:
2471     * DG01: radeon kms updates
2472    
2473     * Wed Jan 13 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc4.1mdv
2474     - update to 2.6.33-rc4
2475     - rediff patch:
2476     * DS01: Alsa snapshot
2477    
2478     * Tue Jan 12 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc3.5.5mdv
2479     - update to 2.6.33-rc3-git5
2480     - drop patch:
2481     * AA01: 2.6.33-rc3+ git snapshot
2482    
2483     * Mon Jan 11 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc3.4mdv
2484     - update patch:
2485     * AA01: 2.6.33-rc3+ git 1b4d40a517e0657a081d5d63518c4badd31c60ea
2486     - even more drm fixes
2487     - add patch:
2488     * FS11: fix lzo compressed kernels support (due to squashfs-lzma changes)
2489     - drop merged patch:
2490     * DP02: hp-wmi: remove double kfree
2491     - update defconfigs
2492    
2493     * Thu Jan 07 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc3.3mdv
2494     - update patches:
2495     * NM01-NM03: mac80211 skb buffering performance fixes
2496     - sync with updated patches merged in wireless-2.6.git
2497     - add patches:
2498     * MC90-MC92: video4linux vloopback support
2499    
2500     * Thu Jan 07 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc3.2mdv
2501     - add patches:
2502     * AA01: 2.6.33-rc3+ git 2c1f1895ef2aa8f0e5497893eff71304aef332e1
2503     - a lot of drm fixes
2504     * NM03: mac80211 skb buffering buildfix (fixes oops on boot)
2505    
2506     * Wed Jan 06 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc3.1mdv
2507     - update to 2.6.33-rc3
2508     - add patches:
2509     * NM01, NM02: fix mac80211 skb buffering performance regression
2510    
2511     * Tue Jan 05 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc2.6.5mdv
2512     - update to 2.6.33-rc2-git6
2513     - drop patches:
2514     * AA01: 2.6.33-rc2-git2
2515     - add patches:
2516     * AX01: fix un-bootable dell systems due to unactivated iommu
2517     * DS50: add Broadcom CrystalHD support
2518     * FS10: squashfs lzma support
2519     - update defconfigs
2520    
2521     * Thu Dec 31 2009 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc2.4mdv
2522     - add patches:
2523     * AA01: 2.6.33-rc2-git2
2524     * DP02: hp-wmi: remove double kfree
2525     - rediff patches:
2526     * DS01: Alsa 1.0.22+ snapshot
2527     * KP01: Tuxonice support
2528     - drop patches:
2529     * DP01: acpi wmi revert: wmi: (fixed differently upstream)
2530     - update defconfigs
2531    
2532     * Mon Dec 28 2009 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc2.3mdv
2533     - add patches:
2534     * DM50: v4l-dvb snapshot 2009-12-28
2535     * DS01: Alsa 1.0.22+ snapshot 2009-12-28
2536     - update patches:
2537     * DI01: lirc for 2.6.33-rc2
2538     * DS10: Alsa unstable Via 1732
2539     * KP01: tuxonice 3.0.99.44 for-2.6.33-rc2
2540     - drop patches:
2541     * DI02: lirc buildfix (merged in DI01)
2542     * DS05: alsa hda ad codec fix (merged in DS01)
2543     * KP02: tuxonice buildfix (merged in KP01)
2544     - update defconfigs
2545    
2546     * Sat Dec 26 2009 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc2.2mdv
2547     - add patches:
2548     * DP01: acpi revert: wmi: free the allocated acpi objects through
2549     wmi_get_event_data (fixes non-booting hp and dell laptops)
2550     * DS05: alsa: hda: disable trigger at pin sensing on AD codecs
2551     (fixes constant load on HP laptops with AD codec)
2552    
2553     * Fri Dec 25 2009 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc2.1mdv
2554     - update to 2.6.33-rc2
2555    
2556     * Thu Dec 24 2009 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc1.4.3mdv
2557     - update to 2.6.33-rc1-git4
2558     - add patches:
2559     * DI02: lirc buildfix
2560     * FS02: unionfs buildfix
2561    
2562     * Tue Dec 22 2009 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc1.2.2mdv
2563     - update to 2.6.33-rc1-git2
2564    
2565     * Fri Dec 18 2009 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc1.1mdv
2566     - update to 2.6.33-rc1
2567     - update spec file
2568     * dont ship score arch in -source and -devel rpms
2569     * add /virt and /include/generated to -devel rpms
2570     * add config.mk to -devel rpms
2571     - update defconfigs
2572     * desktop kernel now supports 24 cores/siblings
2573     * server kernel now supports 48 cores/siblings
2574     - update patches:
2575     * DM10: dmraid45 support for 2.6.33-rc1 (disabled for now, as its broken)
2576     * FR01: reiser4 for 2.6.33-rc1 (from mmotm)
2577     * FS01: unionfs 2.5.3 for 2.6.33-rc1
2578     * KP01: tuxonice 3.0.99.43 for 2.6.33-rc1
2579     * MB14: ndiswrapper cmpxchg8b fix (from main)
2580     - add patches:
2581     * FR02-FR26: reiser4 fixes from mmotm tree
2582     * KP02: fix tuxonice build
2583     - rediff patches
2584     * DP05: samsung backlight support
2585     * MB02: 3rdparty merge
2586     - drop patches merged upstream:
2587     * AX01: stack protetctor detection
2588     * DA01: AMD SB900 support
2589     * DA02: nVidia AHCI generic support
2590     * DA10-DA17: ACPICA 20090903
2591     * DC01-DC02: cpuidle fixes
2592     * DG01-DG10: drm updates and nouveau
2593     * DH02: ingnore HID_DG_INRANGE
2594     * DH10-DH13: coretemp atom/penryn/lynnfield support
2595     * DG20-DG21: asus_atk0110 update
2596     * DM50-DM51: v4l-dvb snapshot
2597     * DM55: bttv ir fix
2598     * DN01: ppp HSUPA support
2599     * DN10-DN36: ath9k fixes
2600     * DN50: hostap fix
2601     * DP02: dell-laptop rfkill fix
2602     * DP05: samsung backlight support
2603     * DS01-DS02: Alsa 1.0.21+ snapshot
2604     * FC01: chrdev update
2605     * FS10: xfs bugfix
2606     * KH01: hrtimer update
2607     * KS01-KS03: kernel sched updates
2608     * MC30-MC34 drbd
2609     * NI20: net splice fix
2610    
2611     * Mon Dec 14 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.8-1mdv
2612     - update to 2.6.31.8 final
2613     - drop patches:
2614     * AA01: 2.6.31.8-rc1
2615     - update patches:
2616     * MC50: DazukoFS 3.1.2
2617    
2618     * Fri Dec 11 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.7-1mdv
2619     - update to 2.6.31.7
2620     - add patches:
2621     * AA01: 2.6.31.8-rc1 (includes a _big_ ext4 update)
2622     - rediff patches:
2623     * DA10: acpi release 20090903
2624     * DG01: drm-next
2625     * DM50: v4l-dvb 2009-11-30
2626     * DS01: Alsa 1.0.21+ 2009-11-30
2627     - drop merged patches:
2628     * DM20: md: add cond_resched to raid1 and raid10
2629     * DM21: md: dont clear endpoint for resync when resync is interrupted
2630     * DM22: md: raid5: make sure curr_sync_completes is uptodate when
2631     reshape starts
2632     * DN02: bonding: modify hash transmit policies to use the packets
2633     source mac address
2634     * DN51: b43: work around mac80211 race condition
2635     * DN52: iwlwifi: fix issue on file transfer stalled in ht mode
2636     * DN53: iwlwifi: use rts-cts as the preferred protection mechanism
2637     for 6000 series
2638     * DS20: gdth: prevent negative offsets in ioctl (CVE-2009-3080)
2639     * NI21: ipv4: additional update of dev_net dev to struct net in
2640     ip_fragment null ptr oops fix
2641     * NM01: mac80211: fix two remote exploits
2642     * NM02: mac80211: fix spurious delba handling
2643     * NR01: rfkill: fix miscdev ops
2644    
2645     * Fri Dec 4 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.6-7mdv
2646     - add patches:
2647     * DM21: md: dont clear endpoint for resync when resync is interrupted
2648     * DM22: md: raid5: make sure curr_sync_completes is uptodate when
2649     reshape starts
2650     * DM55: bttv: add missing i2c addr to probe for ir (A. Williamson / J.Wilson)
2651     * DN02: bonding: modify hash transmit policies to use the packets
2652     source mac address
2653     * DN51: b43: work around mac80211 race condition
2654     * DN52: iwlwifi: fix issue on file transfer stalled in ht mode
2655     * DN53: iwlwifi: use rts-cts as the preferred protection mechanism
2656     for 6000 series
2657     * DS20: gdth: prevent negative offsets in ioctl (CVE-2009-3080)
2658     * NI21: ipv4: additional update of dev_net dev to struct net in
2659     ip_fragment null ptr oops fix
2660     * NM01: mac80211: fix two remote exploits
2661     * NM02: mac80211: fix spurious delba handling
2662     * NR01: rfkill: fix miscdev ops
2663    
2664     * Mon Nov 30 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.6-6mdv
2665     - update patches:
2666     * DM50: v4l-dvb snapshot 2009-11-30
2667     * DM51: v4l-dvb snapshot buildfix
2668     * DS01: Alsa 1.0.21+ snapshot 2009-11-30
2669     * DS02: Alsa 1.0.21+ snapshot buildfix
2670     * DS10: Alsa 1.0.21+ unstable via-1732 (Envy II) 2009-11-30
2671     - drop patches:
2672     * DS21-DS51: alsa hda via updates (merged in DS01)
2673     - update defconfigs
2674    
2675     * Mon Nov 30 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.6-5mdv
2676     - add patches:
2677     * DA16: acpi: more fixes to ACPICA Release 20090903
2678     - update patches:
2679     * DI01: lirc updates as of 2009-11-27
2680     - drop patches:
2681     * DA17: acpi: silence _BIF warn (merged in DA16)
2682     * DG01: drm-next update (replaced by DG01 from Fedora)
2683     * DG04: drm-nouveau (replaced by DG07 from Fedora)
2684     - sync drm patches with Fedora 12 kernel 2.6.31.6-153
2685     * DG01: drm-next 44c83571
2686     * DG02: drm: radeon hdp cache flush
2687     * DG03: drm: conservative fallback modes
2688     * DG04: drm: edid retry
2689     * DG05: drm: edid header fixup
2690     * DG06: drm: default mode 1024x768
2691     * DG07: drm: nouveau
2692     * DG08: drm: i915 resume force mode
2693     * DG09: drm: intel no tv hotplug
2694     * DG10: drm: i915 fix tvmode oops
2695    
2696     * Sun Nov 22 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.6-4mdv
2697     - Release to 2010.0 updates
2698     - add patches:
2699     * DM20: md: add cond_resched to raid1 and raid10
2700     * DN50: hostap: Revert a toxic part of the conversion to
2701     net_device_ops (fixes MDV #55805, KBZ #14000)
2702     - update patches:
2703     * FR01: reiser4 for 2.6.31 final
2704     - drop patches:
2705     * FR02: reiser4 compiler fix, merged in FR01
2706    
2707     * Thu Nov 19 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.6-3mdv
2708     - add patches:
2709     * DN01: ppp: enlarge upload buffer to cope with HSUPA connections
2710     * DP05: add samsung backlight support
2711     * FS10: xfs: fix bug in log recover with quota
2712     * MC50-MC52: add DazukoFS 3.1.1 (#24333)
2713     - update patches:
2714     * KP01: TuxOnIce 3.0.1 for 2.6.31.6
2715    
2716     * Sun Nov 15 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.6-2mdv
2717     - Release to updates
2718    
2719     * Tue Nov 10 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.6-1mdv
2720     - update to 2.6.31.6
2721     * CVE-2009-3547, CVE-2009-3612, CVE-2009-3621, CVE-2009-3624
2722     - include btcx-risc.h and bt848.h in kernel-devel, they are now
2723     required by bttvp.h which is already included and required by
2724     dkms-lirc-gpio (Anssi, #54907)
2725     - add patches:
2726     * DA15: acpi: more fixes to ACPICA Release 20090903
2727     * DN36: wireless: ath9k: fix misplaced semicolon on rate control
2728     - drop patches merged upstream:
2729     * AX20: x86: kernel e820 pad ram_alignment at 64MB
2730     * DA03: sata_nv: make sure link is brough up online when
2731     skipping hardreset
2732     * DA20: acpi: revert 'eeepc laptop prevent a panic when
2733     disabling RT2860 wireless when associated'
2734     * DC03: cpuidle: always return with interrupts enabled
2735     - rediff patches:
2736     * DA10, DA13, DA14: ACPICA Release 20090903
2737    
2738     * Sat Oct 24 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.5-1mdv
2739     - update to 2.6.31.5 final
2740     - drop patch AA01: 2.6.31.5-rc1
2741    
2742     * Wed Oct 21 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.4-4mdv
2743     - add patches:
2744     * DA20: revert part of DA14: eeepc-laptop: prevent a panic when
2745     disabling RT2860 wireless when associated (it breaks
2746     eeepc-laptop with other wireless hw)
2747    
2748     * Sat Oct 17 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.4-3mdv
2749     - add patches:
2750     * AA01: 2.6.31.5-rc1
2751     * DA02: ahci: Add the generic nVidia ahci chipset id
2752     * DA03: sata_nv: make sure link is brough up online when
2753     skipping hardreset
2754     - drop patches merged upstream:
2755     * DN01: e1000e jumbo frame fix
2756     * DP10: Intel iommu vt-d bugfix
2757     - rediff patches:
2758     * disable-mrproper-in-devel-rpms
2759     * disable-prepare-scripts-configs-in-devel-rpms
2760    
2761     * Thu Oct 15 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.4-2mdv
2762     - add patches:
2763     * DA14: acpi: more fixes to ACPICA Release 20090903
2764     * DA17: acpi: silence _BIF warning
2765     * DS51: alsa hda via: Remove 48k sample rate limit for spdif
2766    
2767     * Tue Oct 13 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.4-1mdv
2768     - update to 2.6.31.4 final
2769     - drop merged patches:
2770     * AA01: 2.6.31.4-rc2
2771     - drop patch:
2772     * DH20: asus_atk0110 Asus p7p55d support
2773     (replaced by DH20, DH21 that got merged upstream)
2774     - add patches:
2775     * DH20: hwmon: asus_atk0110: Refactor the code
2776     * DH21: hwmon: asus_atk0110: enable the EC
2777    
2778     * Sun Oct 11 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.3-2mdv
2779     - add patches:
2780     * AA01: 2.6.31.4-rc2 (CVE-2009-2903)
2781     * DA13: more fixes to ACPICA 20090903 release
2782     * DS21: alsa hda via: remove unused IS_VT17xxVENDORID macro
2783     * DS22: alsa hda via: change get_codec_type argument to hda_codec-type
2784     * DS23: alsa hda via: add VT1708B-CE codec support
2785     * DS24: alsa hda via: limit VT1702 AA Path-max volume
2786     * DS25: alsa hda via: add VIA_CTL_WIDGET_ANALOG_MUTE control type
2787     * DS26: alsa hda via: add low current mode for power saving
2788     * DS27: alsa hda via: remove unused argument of via_new_analog_input
2789     * DS28: alsa hda via: change VT1708S & VT1702 hp mode controls
2790     * DS29: alsa hda via: rewrite via_independent_hp_put
2791     * DS30: alsa hda via: add smart5.1 function
2792     * DS31: alsa hda via: when changing input source, update power state
2793     * DS32: alsa hda via: add VIA_JACK_EVENT process in via_unsol_event
2794     * DS33: alsa hda via: refresh front playback mute in via_hp_automute
2795     * DS34: alsa hda via: add jack detect feature for VT1708
2796     * DS35: alsa hda via: modify vt1708_set_pinconfig_connect function
2797     * DS36: alsa hda via: replace via_playback_pcm_prepare cleanup
2798     * DS37: alsa hda via: add 2nd SPDIF out for VT1708S and VT1702
2799     * DS38: alsa hda via: modify vt1708_auto_create_multi_out_ctls
2800     * DS39: alsa hda via: modify vt1709_auto_create_multi_out_ctls
2801     * DS40: alsa hda via: replace MIC_BOOST_VOLUME
2802     * DS41: alsa hda via: move backdoor verbs to vt17xx_volume_init_verb
2803     * DS42: alsa hda via: add VT1718S support
2804     * DS43: alsa hda via: add VT1828S and VT2020 support
2805     * DS44: alsa hda via: add VT1716S support
2806     * DS45: alsa hda via: add VT2002P support
2807     * DS46: alsa hda via: add VT1812 support
2808     * DS47: alsa hda via: rename vt1708_control_templates
2809     * DS48: alsa hda via: change PW4 connect select default to MW0
2810     * DS49: alsa hda via: comments update copyright changeset etc
2811     * DS50: alsa hda via: only cosmetic changes
2812     - rediff patches:
2813     * DA12: acpica 20090903 part3
2814     * DS01: alsa 1.0.21+ snapshot
2815     - drop patches merged in the new DA13:
2816     * DA13: acpi: ec: rewrite dmi checks
2817     * DA14: acpi: ec: dont parse DSDT for EC early init on Compal
2818     * DA15: acpi: ec: restart command even if no interrupts from ec
2819     * DA17: acpi: kill overly verbose throttling states log messages
2820     * DA21: sony-laptop: remove device_ctrl and the SPIC mini drivers
2821     * DA22: sony-laptop: SPIC unset IRQF_SHARED, set IRQF_DISABLED
2822     * DA23: sony-laptop: remove _INI call at init time
2823     * DA24: sony-laptop: Dont unregister the SPIC driver if it wasnt registered
2824    
2825     * Thu Oct 8 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.3-1mdv
2826     - update to 2.6.31.3 (tty_port bug)
2827    
2828     * Mon Oct 5 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.2-1mdv
2829     - update to 2.6.31.2 final
2830     - drop patches:
2831     * AA01: 2.6.31.2-rc1
2832     - add patches:
2833     * AX20: kernel: e820: pad ram_alignment at 64MB (mdv #54137, kbz #13940)
2834     * DC01: cpuidle: fix the menu governor to boost io performance
2835     * DC02: cpuidle: menu governor: reduce latency on exit
2836     * DC03: cpuidle: always return with interrupts enabled
2837     - redo the wireless ath9k patches based on fixes merged in 2.6.32-rc1 (#52739)
2838     * DN10: ath9k: downgrade ASSERT in ath_clone_txbuf
2839     * DN11: ath9k: make sure we configure a non-zero beacon interval
2840     * DN12: ath9k: differentiate quality reporting between legacy and HT conf
2841     * DN13: ath9k: remove unnecessary STATION mode check
2842     * DN14: ath9k: stop ani when the STA gets disconnected
2843     * DN15: ath9k: fix race condition in SCANNING state check during ANI calibration
2844     * DN16: ath9k: handle different TX and RX streams properly
2845     * DN17: ath9k: downgrade assert in rc.c for invalid rate
2846     * DN18: ath9k: manipulate and report the correct RSSI
2847     * DN19: ath9k: fix RX stucks during heavy traffic in HT40 mode
2848     * DN20: ath9k: fix TX hang issue with Atheros chipsets
2849     * DN21: ath9k: remove bogus assert in ath_clone_txbuf
2850     * DN22: ath9k: handle tx desc shortage more appropriately
2851     * DN23: ath9k: do not stop the queues in driver stop
2852     * DN24: ath9k: trivial fix in Kconfig
2853     * DN25: ath9k: update beacon RSSI
2854     * DN26: ath9k: fix bug in PCI resume
2855     * DN27: ath9k: set HW state properly
2856     * DN28: ath9k: fix TX poll cancelling
2857     * DN29: ath9k: fix bug in retrieving average beacon rssi
2858     * DN30: ath9k: fix read buffer overflow
2859     * DN31: ath9k: claim irq for ath9k not ath for pci
2860     * DN32: ath9k: fix bug in ANI channel handling
2861     * DN33: ath9k: do a full reset for AR9280
2862     * DN34: ath9k: disable autosleep feature by default
2863     * DN35: ath9k: fix RFKILL bugs
2864    
2865     * Mon Oct 5 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-12mdv
2866     - update patches:
2867     * DH20: hwmon: add Asus P7P55D support to asus_atk0110 v6
2868    
2869     * Sat Oct 3 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-11mdv
2870     - update patches:
2871     * DA13: acpi: ec: rewrite dmi checks
2872     * DA15: acpi: ec: restart command even if no interrupts from ec
2873     - add patches:
2874     * DA14: acpi: ec: dont parse DSDT for EC early init on Compal
2875     * DA16: acpi: get rid of registered as cooling_deviceX messages
2876     * DA17: acpi: kill overly verbose throttling states log messages
2877     * DN01: net: e1000e jumbo frames no longer work
2878     * KH01: hrtimer: eliminate needless reprogramming of clock events
2879     * NI20: net: splice from tcp to pipe should take into account O_NONBLOCK
2880    
2881     * Fri Oct 2 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-10mdv
2882     - revert patches:
2883     * DH20: hwmon: add Asus P7P55D support to asus_atk0110 v5 -> v3
2884    
2885     * Fri Oct 2 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-9mdv
2886     - add patches:
2887     * AA01: 2.6.31.2-rc1
2888     * DM51: v4l-dvb snapshot buildfix
2889     * DS02: Alsa snapshot buildfix
2890     - update patches:
2891     * DG01: drm-next 2009-10-02
2892     * DG04: drm-nouveau 2009-10-02
2893     * DH20: hwmon: add Asus P7P55D support to asus_atk0110 v5
2894     * DM50: v4l-dvb snapshot 2009-10-02
2895     * DP03: acerhdf: Limit modalias matching to supported boards
2896     * DS01: Alsa 1.0.21+ snapshot 2009-10-02
2897     * DS10: Alsa 1.0.21+ unstable Via vt1732 (Envy24-II)
2898     - refiff patches:
2899     * DA10: acpica 20090903
2900     - drop patches merged in 2.6.31.2-rc1
2901     * AX02: x86: increase min_gap to include randomized stack
2902     * DA02: ahci: restore pci_intx handling
2903     * DA50: pata_amd: do not filter out valid modes in nv_mode_filter
2904     * DC01: driver core: add new device to bus's list before probing
2905     * DG11: drm: i915: remove restore in resume
2906     * DG12: drm: i915: only destroy a constructed mmap offset
2907     * DG13: drm: i915: prevent fifo calculation overflows on 32 bits with
2908     high dotclocks
2909     * DG14: drm: i915: add buffer to inactive list immediately during fault
2910     * DG15: drm: i915: check that the relocation points to within the target
2911     * DG16: drm: i915: fix typo for wrong lvds clock setting on igdng
2912     * DG17: drm: i915: fix ssc frequence for igdng
2913     * DG18: drm: i915: remove dac disable in crt force detect on igdng
2914     * DG19: drm: i915: fix lvds panel fitting on arrandale
2915     * DV01: fbcon: only unbind from console if successfully registered
2916     * FC10: cifs: re-enable lanman security
2917     * FI01: fs: make sure data stored into inode is properly seen before
2918     unlocking new inode
2919    
2920     * Thu Oct 1 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-8mdv
2921     - add patches:
2922     * DA02: ahci: restore pci_intx handling
2923     * FC10: cifs: re-enable lanman security
2924     - revert patches:
2925     * DH20: hwmon: add Asus P7P55D support to asus_atk0110 v4 -> v3
2926    
2927     * Thu Oct 1 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-7mdv
2928     - add patches:
2929     * AX02: x86: increase min_gap to include randomized stack
2930     * DA50: pata_amd: do not filter out valid modes in nv_mode_filter
2931     * DG11: drm: i915: remove restore in resume
2932     * DG12: drm: i915: only destroy a constructed mmap offset
2933     * DG13: drm: i915: prevent fifo calculation overflows on 32 bits with
2934     high dotclocks
2935     * DG14: drm: i915: add buffer to inactive list immediately during fault
2936     * DG15: drm: i915: check that the relocation points to within the target
2937     * DG16: drm: i915: fix typo for wrong lvds clock setting on igdng
2938     * DG17: drm: i915: fix ssc frequence for igdng
2939     * DG18: drm: i915: remove dac disable in crt force detect on igdng
2940     * DG19: drm: i915: fix lvds panel fitting on arrandale
2941     * DP03: acerhdf: Limit modalias matching to supported boards
2942     * DV01: fbcon: only unbind from console if successfully registered
2943     * FI01: fs: make sure data stored into inode is properly seen before
2944     unlocking new inode
2945     - update patches:
2946     * DH20: hwmon: add Asus P7P55D support to asus_atk0110 v4
2947    
2948     * Tue Sep 29 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-6mdv
2949     - add patches:
2950     * DA14: acpi: ec: Restart command even if no interrupts from ec
2951    
2952     * Tue Sep 29 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-5mdv
2953     - switch to xz compressed patch tarball
2954     - add patches:
2955     * DA13: acpi: ec: rewrite dmi checks
2956     * SM01: compress kernel modules on 'make modules_install' instead
2957     of after (in spec), as it makes the kernel build require less
2958     disk space, and also benefits people building their own kernels
2959     from source (#54028)
2960     - update patches:
2961     * DH20: hwmon: add Asus P7P55D support to asus_atk0110 v3
2962     - enable in defconfigs:
2963     * PRINTK_TIME (for easier debugging)
2964     * TIMER_STATS (for powertop)
2965    
2966     * Mon Sep 28 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-4mdv
2967     - add patches:
2968     * DA12: more fixes to ACPICA Release 20090903
2969     * DA21: sony-laptop: remove device_ctrl and the SPIC mini drivers
2970     * DA22: sony-laptop: SPIC unset IRQF_SHARED, set IRQF_DISABLED
2971     * DA23: sony-laptop: remove _INI call at init time
2972     * DA24: sony-laptop: Dont unregister the SPIC driver if it wasnt registered
2973     - drop patches:
2974     * KS10: disable NEW_FAIR_SLEEPERS, as it does not play nice with
2975     quad core systems...
2976    
2977     * Sat Sep 26 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-3mdv
2978     - update patches:
2979     * DM50: v4l-dvb snapshot 2009-09-26
2980     * DS01: Alsa 1.0.21+ snapshot 2009-09-26
2981     * DS10: Alsa 1.0.21+ unstable Via vt1732 (Envy24-II)
2982     - update defconfigs
2983    
2984     * Sat Sep 26 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-2mdv
2985     - drop patches:
2986     * DH10: old Atom coretemp support
2987     * DH11: old Lynnfield coretemp support
2988     - add patches:
2989     * DA11: fixes to ACPICA Release 20090903
2990     * DC01: driver core: add new device to bus's list before probing
2991     * DH10: hwmon: coretemp: enable the Intel Atom support
2992     * DH11: hwmon: coretemp: Fix Atom CPUs support
2993     * DH12: hwmon: coretemp: Add support for Penryn mobile CPUs
2994     * DH13: hwmon: coretemp: Add Lynnfield CPU support
2995     * KS01: sched: Introduce SCHED_RESET_ON_FORK scheduling policy
2996     * KS02: sched: Clean up SCHED_RESET_ON_FORK
2997     * KS03: sched: Add SCHED_RESET_ON_FORK functionality for nice
2998     * KS10: sched: Disable NEW_FAIR_SLEEPERS
2999     - update patches:
3000     * KP01: TuxOnIce 3.0.1 for 2.6.31.1
3001     * NB10: clean ndiswrapper tarball (remove headers generated at buildtime)
3002     - rename patches:
3003     * DH12 is now DH20: Asus P7P55D support
3004    
3005     * Thu Sep 24 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-1mdv
3006     - update to 2.6.31.1 final
3007     - drop patches:
3008     * AA01: 2.6.31.1-rc1
3009     - update patches:
3010     * FS01: unionfs 2.5.3
3011     - Disable otus staging driver: ar9170 in wireless tree should
3012     already handle it. Also Kconfig otus description states that it
3013     needs a special wpa_supplicant. (Herton, main kernel)
3014     - Disable build of aedsp16 oss driver: the snd-sc6000 alsa driver
3015     should now handle all support for same cards it supports, as
3016     stated in kernel changelog. (Herton, main kernel)
3017    
3018     * Tue Sep 22 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-8mdv
3019     - update patches:
3020     * DH12: hwmon: add Asus P7P55D support to asus_atk0110 v2
3021    
3022     * Sun Sep 20 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-7mdv
3023     - add patches:
3024     * DA10: ACPICA Release 20090903 + ACPI 4.0 support
3025     * DH12: hwmon: add Asus P7P55D support to asus_atk0110
3026     - update defconfigs
3027    
3028     * Sat Sep 19 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-6mdv
3029     - update patches:
3030     * DG01: drm-next 2009-09-18
3031     * KP01: TuxOnIce 3.0.1 for 2.6.31
3032     - drop patches:
3033     * DG11: drm/radeon/kms: radeon_get_clock_info() call move,
3034     merged in the updated drm-next checkout
3035     - require kernel-firmware-20090604-4mnb that has the firmware
3036     from drm-next 2009-09-18
3037    
3038     * Sat Sep 19 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-5mdv
3039     - require kernel-firmware-20090604-3mnb that has the fixed
3040     radeon firmware tarball
3041     - require mkinitrd-6.0.92-12mnb wich has fixed hotplug firmware
3042     loading for radeon drivers
3043     - fix warnings when not building source/devel rpms (noted by Thierry)
3044     - spec cleanups
3045     - update patches:
3046     * DM50: v4l-dvb snapshot 2009-09-19
3047     * DS01: Alsa 1.0.21+ snapshot 2009-09-19
3048     - update defconfigs
3049    
3050     * Thu Sep 17 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-4mdv
3051     - add patches:
3052     * DG11: drm/radeon/kms: Move radeon_get_clock_info() call
3053     out of radeon_clocks_init() (Thierry)
3054     * DH11: hwmon: add Intel Lynnfield support to coretemp
3055     - require kernel-firmware >= 20090604-2mnb to get the radeon
3056     firmware that is now splitted out in drm-next
3057    
3058     * Thu Sep 17 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-3mdv
3059     - add patches:
3060     * AA01: 2.6.31.1-rc1
3061     * DA01: ahci: Add AMD SB900 SATA/IDE controller support
3062     * DG10: intel agp/drm: Fix the pre-9xx chipset flush
3063     - update patches:
3064     * DG04: drm-nouveau
3065     * DI01: lirc 2009-09-03
3066     - disable radeon kernel modesetting as userspace cant handle it
3067    
3068     * Fri Sep 11 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-2mdv
3069     - update patches:
3070     * DG01: drm-next
3071     * DG07: drm-page-flip
3072     - drop patches:
3073     * DG02: drm-r600-kms (merged in DG01)
3074     * DG03: drm-rv710-ucode-fix (merged in DG01)
3075     * DG09: drm-intel-pm (broken)
3076     - update defconfigs
3077    
3078     * Thu Sep 10 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-1mdv
3079     - update to 2.6.31 final
3080    
3081     * Sun Sep 6 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc9.1mdv
3082     - update to 2.6.31-rc9
3083     - drop merged patches:
3084     * AA01: 2.6.21-rc8-git1
3085     * DG08: drm-intel-next
3086     - update patches:
3087     * DM50: v4l-dvb snapshot 2009-09-06
3088     * DS01: Alsa 1.0.21+ snapshot 2009-09-06
3089     - update defconfigs
3090    
3091     * Mon Aug 31 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc8.5mdv
3092     - bump release to get past BS (rc8.4mdv only partially uploaded)
3093    
3094     * Sun Aug 30 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc8.4mdv
3095     - add patches:
3096     * AA01: 2.6.31-rc8-git1
3097     * AX01: detect stack protector support for i386 builds on x86_64
3098     * FR02: reiser4: add missing parenthesis to avoid compiler confusion
3099     - drop patches:
3100     * FN01-FN03: inotify fixes, merged upstream
3101    
3102     * Fri Aug 28 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc8.3mdv
3103     - add patches:
3104     * FN02: inotify: fix length reporting and size checking
3105     * FN03: inotify: update the group mask on mark addition
3106    
3107     * Fri Aug 28 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc8.2mdv
3108     - add patches:
3109     * FC01: implement __[un]register_chrdev support
3110     * FN01: fix inotify regression in -rc8 causing boot hang/failure
3111     - update patches:
3112     * DI01: lirc support
3113     * DM50: v4l-dvb snapshot 2009-08-28
3114     * DS01: Alsa 1.0.20+ snapshot 2009-08-28
3115     - resync drm tree with fedora 2.6.31-rc7-git6
3116     * DG01: drm-next
3117     * DG02: drm-r600-kms
3118     * DG03: drm-rv710-ucode-fix
3119     * DG04: drm-nouveau
3120     * DG05: drm-i915-resume-force-mode
3121     * DG06: drm-intel-big-hammer
3122     * DG07: drm-page-flip
3123     * DG08: drm-intel-next
3124     * DG09: drm-intel-pm
3125     - update defconfigs
3126    
3127     * Fri Aug 28 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc8.1mdv
3128     - update to 2.6.31-rc8
3129     - drop patch AA00: rc7-git-current
3130    
3131     * Thu Aug 27 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc7.5.2mdv
3132     - update to 2.6.31-rc7-git5
3133     - add patch AA00: rc7-git-current
3134     - update defconfigs:
3135     support 16 physical/virtual processors/cores on -desktop kernel
3136     unset UEVENT_HELPER_PATH
3137     make AGP builtin
3138     disable a lot of non-x86 drivers
3139    
3140     * Sat Aug 22 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc7.1mdv
3141     - update to 2.6.31-rc7
3142     - drop merged patces:
3143     * DS05: Toshiba Pro A210 ids in Alsa hda codec
3144     - update patches:
3145     * DM50: v4l-dvb snapshot 2009-08-22
3146     * DS01: Alsa 1.0.20+ 2009-08-22
3147     - add patches:
3148     * DP10: add workaround for broken bioses on vt-d enabled hardware
3149     * DN10: ath9k: downgrade ASSERT in ath_clone_txbuf
3150     * DN11: ath9k: manipulate and report the correct RSSI
3151     * DN12: ath9k: RX stucks during heavy traffic in HT40 mode
3152     * DN13: ath9k: handle tx desc shortage more appropriately
3153     * DN14: ath9k: trivial fix in Kconfig
3154     * DN15: ath9k: update beacon RSSI
3155     * DN16: ath9k: fix bug in PCI resume
3156     * DN17: ath9k: set HW state properly
3157     * DN18: ath9k: fix bug in retrieving average beacon rssi
3158     - enable ATH5K_DEBUG, ATH9K_DEBUG
3159    
3160     * Sun Aug 16 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc6.2mdv
3161     - update patches:
3162     * DM50: v4l-dvb snapshot 2009-08-15
3163     * DS01: Alsa 1.0.20+ snapshot 2009-08-15
3164     * DS10: Alsa 1.0.20+ unstable Via vt1732 (Envy24-II)
3165     - disable MAC80211_DEFAULT_PS (powersaving) as it's known to cause
3166     instabilities and performance regressions on atleast iwlwifi drivers.
3167    
3168     * Fri Aug 14 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc6.1mdv
3169     - update to 2.6.31-rc6
3170    
3171     * Thu Aug 13 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc5.9.7mdv
3172     - update to 2.6.31-rc5-git9
3173     - update patch:
3174     * DG02: drm: nouveau git 2009-08-12
3175    
3176     * Tue Aug 11 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc5.7.6mdv
3177     - update to 2.6.31-rc5-git7
3178    
3179     * Sat Aug 8 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc5.5.5mdv
3180     - update to 2.6.31-rc5-git5
3181     - drop merged patches:
3182     * DG01: drm: radeon updates
3183     * NC01: net: core lockdep bug
3184    
3185     * Fri Aug 7 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc5.3.4mdv
3186     - add patches:
3187     * DG01: drm: radeon rs880 pci ids, radeon kms TTM patch,
3188     radeon kms suspend/resume fix.
3189     * NC01: fix lockdep bug in net core
3190     - update patches:
3191     * DG02: drm: nouveau git 2009-08-07
3192    
3193     * Wed Aug 5 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc5.3.3mdv
3194     - update to 2.6.31-rc5-git3
3195     - update patches:
3196     * KP01: TuxOnIce 3.0.1+ for 2.6.31-rc5
3197     * MC40: fsc_btns 2.1.0
3198     - rediff patches:
3199     * DS01: Alsa 1.0.20+ update
3200     * MC41: fsc_btns Kconfig & Makefile fix
3201     - drop patches:
3202     * MB30-MB33: acerhk in 3rdparty, as everything it can is now
3203     supported by acer-wmi + rfkill utility
3204     * MC42: fsc_btns buildfix
3205    
3206     * Tue Aug 4 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc5.2.2mdv
3207     - update to 2.6.31-rc5-git2
3208    
3209     * Sat Aug 1 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc5.1mdv
3210     - update to 2.6.31-rc5
3211     - update patches:
3212     * DG02: nouveau git 2009-08-01
3213     * DM50: v4l-dvb snapshot 2009-07-31
3214     * DS01: Alsa 1.0.20+ snapshot 2009-07-31
3215     * DS10: Alsa 1.0.20+ unstable Via vt1732 (Envy24-II)
3216     - drop patches:
3217     * DG10: nouveau buildfix
3218     * DM51: dvb: af9015 eeprom_dump temp buffer fix (merged in DM50)
3219     * DS11: Alsa 1.0.20+ unstable cirrus cs420x (merged in DS01)
3220     - update defconfigs
3221    
3222     * Thu Jul 30 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc4.4.5mdv
3223     - update to 2.6.31-rc4-git4
3224     - drop patch AA00: 2.6.31-rc4-git1
3225     - add patch DG10: fix nouveau build
3226    
3227     * Tue Jul 28 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc4.4mdv
3228     - add patches:
3229     AA00: 2.6.31-rc4-git1
3230     DM51: dvb: af9015: avoid magically sized temporary buffer in eeprom_dump
3231     DP02: dell-laptop: Fix rfkill state setting
3232     - drop merged patches:
3233     * DP01: acer-wmi reversed rfkill fix
3234     * NR01: rfkill_set_states fix
3235     - rediff patches:
3236     * DM50: v4l-dvb snapshot
3237     * DS01: Alsa 1.0.20+ snapshot
3238    
3239     * Sat Jul 25 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc4.3mdv
3240     - add patch KP10: re-export find_task_by_vpid symbol for fglrx
3241    
3242     * Fri Jul 24 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc4.2mdv
3243     - update patches:
3244     * DG02: nouveau support
3245     * DM50: v4l-dvb snapshot 2009-07-24
3246     * DS01: Alsa 1.0.20+ snapshot 2009-07-24
3247     * DS10: Alsa 1.0.20+ unstable via-vt1732
3248     * DS11: Alsa 1.0.20+ unstable cirrus-cs420x
3249     * KP01: TuxOnIce 3.0.1 (fixed, and re-enabled in laptop kernel)
3250     - disable SND_PCSP (F. Himpe, #52432)
3251     - update defconfigs
3252    
3253     * Thu Jul 23 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc4.1mdv
3254     - update to 2.6.31-rc4
3255     - add patch DH02: make hid-ntrig ignore HID_DG_INRANGE (O. Thauvin)
3256     - update defconfigs
3257    
3258     * Mon Jul 20 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc3.4.3mdv
3259     - update to 2.6.31-rc3-git4
3260    
3261     * Thu Jul 16 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc3.3.2mdv
3262     - update to 2.6.31-rc3-git3
3263     - add patches:
3264     * DP01: fix acer-wmi reversed rfkill
3265     * NR01: rfkill: fix rfkill_set_states to set the hw state
3266    
3267     * Tue Jul 14 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc3.1mdv
3268     - update to 2.6.31-rc3
3269     - update defconfigs
3270    
3271     * Sun Jul 12 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc2.8.3mdv
3272     - update to 2.6.31-rc2-git8
3273     - rediff patch DS01: Alsa 1.0.20+ snapshot
3274     - add patch:
3275     * MB14: fix ndiswrapper to build on ix86 with recent cmpxchg8b changes
3276     - disable broken patch:
3277     * CE02: Acpi DSDT initrd support (breaks boot on x86_64)
3278     - enable in defconfigs:
3279     * DMAR_BROKEN_GFX_WA, RFKILL_INPUT
3280     - disable in defconfigs:
3281     * DMAR_DEFAULT_ON
3282    
3283     * Fri Jul 10 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc2.5.2mdv
3284     - update to 2.6.31-rc2-git5
3285    
3286     * Fri Jul 10 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc2.4.1mdv
3287     - update to 2.6.31-rc2-git4
3288     - drop patches merged upstream:
3289     * DC01: avoid oom lockup on /dev/zero
3290     * DG06-DG26: drm updates
3291     * DH15: asus hwmon atk0110 support
3292     * DH20: wacom bluetooth support
3293     * DI10: wacom intuos4 support
3294     * DN16: r8169: use family-specific defaults for unknown chips
3295     * DS02: Alsa buildfixes
3296     * DU01: qcserial support
3297     * FN01: nfsd: report short writes
3298     * FS15: ext4: Avoid corrupting the uninitialized bit in the extent
3299     during truncate
3300     - update patches:
3301     * CE02: Acpi DSDT support (from main)
3302     * DG02: drm: nouveau (2.6.31-0.42.rc2.fc12)
3303     * DG03: drm: no gem on i8xx (2.6.31-0.42.rc2.fc12)
3304     * DG04: drm: i915 resume force mode (2.6.31-0.42.rc2.fc12)
3305     * DG05: drm: intel big hammer (2.6.31-0.42.rc2.fc12)
3306     * DI01: input: lirc (2.6.31-0.42.rc2.fc12)
3307     * DM10: dm-raid45 support
3308     * DM50: v4l-dvb snapshot 2009-07-09
3309     * DS01: Alsa 1.0.20+ snapshot 2009-07-09
3310     * FR01: Reiser4 support
3311     * MB10-MB13: Ndiswrapper 1.55 (from main)
3312     * MC30-MC34: Drbd 8.3.2 (from main)
3313     - add patches:
3314     * MB33: acerhk proc_dir_entry owner buildfix (from main)
3315     - drop unneeded patches:
3316     * DN01: bonding module alias
3317     * DN10: net: revert forcedeth power down phy when interface is down
3318     * DS04: sound: usb-gadget gmidi buildfix with updated alsa
3319     - disable broken patches:
3320     * DG00: drm: drm-next
3321     * DG01: drm: radeon modesetting
3322     * FS01: unionfs 2.5.2
3323     * KP01: tuxonice 3.0.1
3324     * MM01: saner vm settings
3325     - disable in defconfigs:
3326     * LIRC_I2C, LIRC_ZILOG, STLC45XX, VT6655 (broken)
3327     - update defconfigs
3328    
3329     * Fri Jul 3 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.6-1mdv
3330     - update to 2.6.29.6
3331     - update patches:
3332     * DM50: v4l-dvb snapshot 2009-07-03
3333     * DM51: v4l-dvb snapshot 2009-07-03 buildfix
3334     * DS01: Alsa 1.0.20+ snapshot 2009-07-03
3335     * DS02: Alsa 1.0.20+ snapshot 2009-07-03 buildfix
3336     * DS10: Alsa 1.0.20+ unstable 2009-07-03 via-vt1732
3337     - add patches:
3338     * DS11: Alsa 1.0.20+ unstable 2009-07-03 cirrus-cs420x
3339     - drop patches merged upstream:
3340     * DN15: net: r8169: fix crash when large packets are received
3341     * FS10: fs: jbd: fix race in buffer processing in commit code
3342     - re-enable in 64bit server kernels:
3343     * NUMA, K8_NUMA, X86_64_ACPI_NUMA, NODES_SPAN_OTHER_NODES
3344     * NODES_SHIFT=6, NEED_MULTIPLE_NODES, MIGRATION
3345     * HAVE_ARCH_EARLY_PFN_TO_NID, ACPI_NUMA
3346     - update defconfigs
3347    
3348     * Fri Jun 26 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.5-3mdv
3349     - reenable in defconfigs:
3350     * TASKSTATS, TASK_DELAY_ACCT, TASK_XACCT, TASK_IO_ACCOUNTING
3351     * AUDIT, AUDITSYSCALL, AUDIT_TREE, AUDIT_GENERIC
3352    
3353     * Mon Jun 22 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.5-2mdv
3354     - full resync of drm with Fedora 2.6.29.5-191.fc11:
3355     * DG00: drm-next
3356     * DG01: drm modesetting radeon
3357     * DG02: drm nouveau
3358     * DG03: drm no gem on i8xx
3359     * DG04: drm i915 resume force mode
3360     * DG05: drm intel big hammer
3361     * DG06: drm intel lying systems without lvds
3362     * DG07: drm intel gen3 fb hack
3363     * DG08: drm intel hdmi edid fix
3364     * DG09: drm intel tiling transition
3365     * DG10: drm intel next
3366     * DG11: drm intel debugfs ringbuffer
3367     * DG12: drm edid ignore tiny modes
3368     * DG13: drm intel include 965gme pci id
3369     * DG14: drm intel gem use dma32 on pae
3370     * DG15: drm intel i8xx cursors
3371     * DG16: drm intel vmalloc
3372     * DG17: drm copyback ioctl data to userspace regardless of retcode
3373     * DG18: drm i915 apply a big hammer to 865 gem object
3374     * DG19: drm i915 fix tiling pitch
3375     * DG20: drm intel set domain on fault
3376     * DG21: drm modesetting radeon fixes
3377     * DG22: drm radeon fix ring commit
3378     * DG23: drm radeon new pciids (RV740)
3379     * DG24: drm dont frob i2c
3380     * DG25: drm connector dpms fix
3381     * DG26: drm intel tv fix
3382     - add patches:
3383     * DC01: avoid lockup on OOM with /dev/zero
3384     * DN16: r8169: use family-specific defaults for unknown chips
3385     * FN01: nfsd: report short writes count to the client
3386     * MM01: set saner vm settings: raise default dirty level, lower swappiness
3387     - Disable COMEDI_PCI_DRIVERS. At least one module built with it enabled
3388     (s626) claims the pci id 1131:7146 for all subvendors and subdevice ids.
3389     The problem is that this will clash with many media/dvb cards. (#51314)
3390    
3391     * Thu Jun 18 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.5-1mdv
3392     - update to 2.6.29.5 (CVE-2009-1630, CVE-2009-1385)
3393     - drop patches merged upstream:
3394     * AA01: 2.6.29.5-rc1
3395     - add patches:
3396     * FS15: ext4: Avoid corrupting the uninitialized bit in the extent
3397     during truncate
3398     - update patches:
3399     * DM50: v4l-dvb snapshot 2009-06-18
3400     * DS01: Alsa 1.0.20+ snapshot 2009-06-18
3401     * DS02: ALsa snapshot buildfix
3402     * DS10: Alsa 1.0.20+ unstable addon: via vt1732 (Envy24-II)
3403     * FS01: unionfs 2.5.2
3404     - rediff patches:
3405     * DS05: add Toshiba Pro A210 to quirk table
3406     - update defconfigs
3407    
3408     * Wed Jun 10 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.4-7mdv
3409     - add patches:
3410     * DN15: net: r8169: fix crash when large packets are received
3411     * FS10: fs: jbd: fix race in buffer processing in commit code
3412     - more defconfig optimizations:
3413     * disable in defconfigs:
3414     * DETECT_SOFTLOCKUP, EARLY_PRINTK, SCHED_DEBUG, SCHEDSTATS, TIMER_STATS
3415     * JFS_STATISTICS, OCFS2_FS_STATS, CIFS_STATS
3416     * enable in defconfigs:
3417     * SND_HDA_RECONFIG, INTR_REMAP
3418    
3419     * Tue Jun 9 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.4-6mdv
3420     - more defconfig optimizations:
3421     * disable in defconfigs:
3422     * AUDIT, AUDITSYSCALL, AUDIT_TREE, AUDIT_GENERIC
3423     * PARAVIRT_GUEST, VMI, KVM_CLOCK, KVM_GUEST, LGUEST_GUEST
3424     * PARAVIRT, PARAVIRT_CLOCK, NETLABEL, NETFILTER_DEBUG
3425     * IP_NF_SECURITY, IP6_NF_SECURITY, IWLWIFI_DEBUG, IWL3945_DEBUG
3426     * HISAX_DEBUG, SECURITY, SECURITY_NETWORK, SECURITY_NETWORK_XFRM
3427     * SECURITY_PATH, SECURITY_FILE_CAPABILITIES, SECURITY_DEFAULT_MMAP_MIN_ADDR
3428     * NUMA, K8_NUMA, X86_64_ACPI_NUMA, NODES_SPAN_OTHER_NODES, NODES_SHIFT
3429     * NEED_MULTIPLE_NODES, MIGRATION, HAVE_ARCH_EARLY_PFN_TO_NID, ACPI_NUMA
3430     * enable in defconfigs:
3431     * JFS_SECURITY, DIRECT_GBPAGES
3432    
3433     * Tue Jun 9 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.4-5mdv
3434     - add patches:
3435     * AA00: 2.6.29.5-rc1
3436     * LG01: add note about latencytop bloat in Kconfig.debug
3437     - drop patches merged upstream:
3438     * AA01-AA27: Stable Queue patches
3439     * FE02-FE09: ext4 fixes
3440     - rediff patches:
3441     * DG00: drm-next
3442     - disable in defconfigs:
3443     * LATENCYTOP - it bloats task_struct by effectively quadrupling
3444     the size of an otherwise lean task_struct
3445    
3446     * Mon Jun 8 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.4-4mdv
3447     - Release to Updates
3448    
3449     * Mon Jun 1 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.4-3mdv
3450     - resync drm patches with Fedora 2.6.29.4-167.fc11
3451     * DG01: drm: no gem on i8xx
3452     * DG03: drm: nouveau
3453     * DG10: drm: i915: apply a big hammer to 865 gem object
3454     * DG20: drm: copyback ioctl data to userspace regardless of retcode
3455     * DG21: drm: i915: fix tiling pitch
3456     * DG22: drm: intel: set domain on fault
3457     - enable in defconfigs:
3458     * PCSPKR_PLATFORM, X86_CHECK_BIOS_CORRUPTION, EFI, IPV6_ROUTER_PREF,
3459     * IPV6_ROUTE_INFO, IPV6_OPTIMISTIC_DAD, IPV6_MROUTE, IPV6_PIMSM_V2,
3460     * IP_VS_IPV6, SCTP_HMAC_MD5, SERIAL_8250_RSA, CIFS_EXPERIMENTAL,
3461     * CIFS_DFS_UPCALL
3462     - disable in defconfigs:
3463     * CONFIG_SYSFS_DEPRECATED_V2, KALLSYMS_EXTRA_PASS, SCTP_HMAC_NONE,
3464     * WIRELESS_OLD_REGULATORY
3465     - set as module in defconfigs
3466     * IDE
3467    
3468     * Sun May 31 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.4-2mdv
3469     - stable queue patches:
3470     * AA01: xfrm: wrong hash value for temporary sa
3471     * AA02: tcp: fix-msg_peek-race-check
3472     * AA03: tcp: fix 2 iw selection
3473     * AA04: net: fix skb_seq_read returning wrong offset length for page
3474     frag data
3475   500 Internal Server Error

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at root@localhost to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.

Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.