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

Contents of /updates/5/kernel-tmb/current/SPECS/kernel-tmb.spec

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1171394 - (show annotations) (download)
Thu Oct 12 16:52:04 2017 UTC (6 years, 6 months ago) by tmb
File size: 355802 byte(s)
update to 4.4.92
1 #
2 # *tmb* series kernels now use kernel.org versioning
3 #
4 %define kernelversion 4
5 %define patchlevel 4
6 # sublevel is now used for -stable patches
7 %define sublevel 92
8 # extstable is for extended stable patches
9 %define extstable 0
10
11 # Package release
12 %define mgarel 1
13
14 # kernel Makefile extraversion is substituted by
15 # kpatch/kgit wich are either 0 (empty), rc (kpatch), git (kgit)
16 %define kpatch 0
17 # kernel.org -gitX patch (only the number after "git")
18 %define kgit 0
19
20 # Patch tarball tag
21 %define ktag tmb
22 # kernel base name (also name of srpm)
23 %define kname kernel-%{ktag}
24
25 # release defines
26 %define rpmtag %{distsuffix}%{mgaver}
27 %if %kpatch
28 %if %kgit
29 %define rpmrel %mkrel 0.%{kpatch}.%{kgit}.%{mgarel}
30 %else
31 %define rpmrel %mkrel 0.%{kpatch}.%{mgarel}
32 %endif
33 %else
34 %define rpmrel %mkrel %{mgarel}
35 %endif
36
37 # fakerel and fakever never change, they are used to fool
38 # rpm/urpmi/smart
39 %define fakever 1
40 %define fakerel %mkrel 1
41
42 # version defines
43 %if %extstable
44 %define kversion %{kernelversion}.%{patchlevel}.%{sublevel}.%{extstable}
45 %else
46 %define kversion %{kernelversion}.%{patchlevel}.%{sublevel}
47 %endif
48 %define kverrel %{kversion}-%{rpmrel}
49
50 # When we are using a pre/rc patch, the tarball is a sublevel -1
51 %if %kpatch
52 %if %sublevel
53 %define tar_ver %{kernelversion}.%{patchlevel}
54 %else
55 %define tar_ver %{kernelversion}.%(expr %{patchlevel} - 1)
56 %endif
57 %define patch_ver %{kversion}-%{kpatch}-%{ktag}%{mgarel}
58 %else
59 %define tar_ver %{kernelversion}.%{patchlevel}
60 %define patch_ver %{kversion}-%{ktag}%{mgarel}
61 %endif
62
63 # Used for not making too long names for rpms or search paths
64 %if %kpatch
65 %if %kgit
66 %define buildrpmrel 0.%{kpatch}.%{kgit}.%{mgarel}%{rpmtag}
67 %else
68 %define buildrpmrel 0.%{kpatch}.%{mgarel}%{rpmtag}
69 %endif
70 %else
71 %define buildrpmrel %{mgarel}%{rpmtag}
72 %endif
73 %define buildrel %{kversion}-%{buildrpmrel}
74
75 # having different top level names for packges means that you have to remove them by hard :(
76 %define top_dir_name %{kname}-%{_arch}
77
78 %define build_dir ${RPM_BUILD_DIR}/%{top_dir_name}
79 %define src_dir %{build_dir}/linux-%{tar_ver}
80
81 # disable useless debug rpms...
82 %define _enable_debug_packages %{nil}
83 %define debug_package %{nil}
84
85 # Build defines
86 %define build_doc 0
87 %define build_source 1
88 %define build_devel 1
89 %define build_debug 0
90
91 # xz compress modules
92 %define build_modxz 1
93
94 # Build desktop586 (i586 / 4GB)
95 %ifarch %{ix86}
96 %define build_desktop586 0
97 %endif
98
99 # Build desktop (i686 / 4GB) / x86_64
100 %define build_desktop 1
101
102 # Build laptop (i686 / 4GB)/ x86_64
103 %ifarch %{ix86} x86_64
104 %define build_laptop 0
105 %endif
106
107 # Build realtime (i686 / 4GB)/x86_64
108 %define build_realtime 0
109
110 # Build server (i686 / 64GB)/x86_64
111 %define build_server 0
112
113 # End of user definitions
114 %{?_without_desktop586: %global build_desktop586 0}
115 %{?_without_desktop: %global build_desktop 0}
116 %{?_without_laptop: %global build_laptop 0}
117 %{?_without_realtime: %global build_realtime 0}
118 %{?_without_server: %global build_server 0}
119 %{?_without_doc: %global build_doc 0}
120 %{?_without_source: %global build_source 0}
121 %{?_without_devel: %global build_devel 0}
122 %{?_without_debug: %global build_debug 0}
123
124 %{?_with_desktop586: %global build_desktop586 1}
125 %{?_with_desktop: %global build_desktop 1}
126 %{?_with_laptop: %global build_laptop 1}
127 %{?_with_realtime: %global build_realtime 1}
128 %{?_with_server: %global build_server 1}
129 %{?_with_doc: %global build_doc 1}
130 %{?_with_source: %global build_source 1}
131 %{?_with_devel: %global build_devel 1}
132 %{?_with_debug: %global build_debug 1}
133
134 # For the .nosrc.rpm
135 %define build_nosrc 0
136 %{?_with_nosrc: %global build_nosrc 1}
137
138 %define kmake %make
139 # there are places where parallel make don't work
140 %define smake make
141
142 # Parallelize xargs invocations on smp machines
143 %define kxargs xargs %([ -z "$RPM_BUILD_NCPUS" ] \\\
144 && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\
145 [ "$RPM_BUILD_NCPUS" -gt 1 ] && echo "-P $RPM_BUILD_NCPUS")
146
147 #
148 # SRC RPM description
149 #
150 Summary: Linux kernel built for %vendor with modifications by %{ktag}
151 Name: %{kname}
152 Version: %{kversion}
153 Release: %{rpmrel}
154 License: GPLv2
155 Group: System/Kernel and hardware
156 ExclusiveArch: %{ix86} x86_64
157 ExclusiveOS: Linux
158 URL: http://www.kernel.org
159
160 ####################################################################
161 #
162 # Sources
163 #
164 ### This is for full SRC RPM
165 Source0: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/linux-%{tar_ver}.tar.xz
166 Source1: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/linux-%{tar_ver}.tar.sign
167 ### This is for stripped SRC RPM
168 %if %build_nosrc
169 NoSource: 0
170 %endif
171 # This is for disabling mrproper in -devel rpms
172 Source2: disable-mrproper-prepare-scripts-configs-in-devel-rpms.patch
173
174 Source4: README.kernel-%{ktag}-sources
175
176 Source100: linux-%{patch_ver}.tar.xz
177 Source101: linux-%{patch_ver}.tar.xz.asc
178 Source102: %{kname}.patchlist
179
180 ####################################################################
181 #
182 # Patches
183
184 #
185 # Patch0 to Patch100 are for core kernel upgrades.
186 #
187
188 # Pre linus patch: ftp://ftp.kernel.org/pub/linux/kernel/v3.0/testing
189
190 %if %kpatch
191 %if %sublevel
192 Patch2: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/stable-review/patch-%{kversion}-%{kpatch}.xz
193 Source11: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/stable-review/patch-%{kversion}-%{kpatch}.sign
194 %else
195 Patch1: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/testing/patch-%{kernelversion}.%{patchlevel}-%{kpatch}.xz
196 Source10: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/testing/patch-%{kernelversion}.%{patchlevel}-%{kpatch}.sign
197 %endif
198 %endif
199 %if %kgit
200 Patch2: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/snapshots/patch-%{kernelversion}.%{patchlevel}-%{kpatch}-git%{kgit}.xz
201 Source11: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/snapshots/patch-%{kernelversion}.%{patchlevel}-%{kpatch}-git%{kgit}.sign
202 %endif
203 %if %sublevel
204 %if %kpatch
205 %define prev_sublevel %(expr %{sublevel} - 1)
206 %if %prev_sublevel
207 Patch1: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/patch-%{kernelversion}.%{patchlevel}.%{prev_sublevel}.xz
208 Source10: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/patch-%{kernelversion}.%{patchlevel}.%{prev_sublevel}.sign
209 %endif
210 %else
211 Patch1: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/patch-%{kernelversion}.%{patchlevel}.%{sublevel}.xz
212 Source10: ftp://ftp.kernel.org/pub/linux/kernel/v%{kernelversion}.%{patchlevel}/patch-%{kernelversion}.%{patchlevel}.%{sublevel}.sign
213 %endif
214 %endif
215 %if %extstable
216 Patch3: patch-%{kernelversion}.%{patchlevel}.%{sublevel}.%{extstable}.patch
217 %endif
218
219 #END
220 ####################################################################
221
222 # Defines for the things that are needed for all the kernels
223 #
224 %define common_description_kernel The kernel package contains the Linux kernel (vmlinuz), the core of your \
225 %vendor Linux operating system. The kernel handles the basic functions \
226 of the operating system: memory allocation, process allocation, device \
227 input and output, etc.
228
229 ### Global Requires/Provides
230 %define requires1 bootloader-utils >= 1.16-1
231 %define requires2 dracut >= 038-21
232 %define requires3 kmod >= 15-2.3
233 %define requires4 sysfsutils >= 2.1.0-16
234 %define requires5 kernel-firmware >= 20160409-1
235
236 %define kprovides1 %{kname} = %{kverrel}
237 %define kprovides2 kernel = %{tar_ver}
238 %define kprovides3 alsa
239 %define kprovides_server drbd-api = 88
240
241 # conflict dkms packages that dont support kernel-4.4
242 %define kconflicts1 dkms-broadcom-wl < 6.30.223.271-4
243 %define kconflicts2 dkms-fglrx < 15.302-4
244 %define kconflicts3 dkms-nvidia-current < 352.79-1
245 %define kconflicts4 dkms-nvidia340 < 340.96-1
246 %define kconflicts5 dkms-nvidia304 < 304.131-1
247 %define kconflicts6 dkms-virtualbox < 5.0.6-1
248 %define kconflicts7 dkms-xtables-addons < 2.10-1
249 # not supported by x11-server-1.16
250 %define kconflicts8 dkms-nvidia173 <= 173.14.39
251 # (tmb) nvidia96xx does not support this kernel or x11-server-1.13
252 %define kconflicts9 dkms-nvidia96xx <= 96.43.23
253 # (tmb) conflict too old lvm2 rules to make upgrades work (tv, mga #9536)
254 %define kconflicts10 lvm2 < 2.02.98-3
255 # (tmb) conflict too old drakxtools-backend to avoid bogus root=/dev/ (#9536)
256 %define kconflicts11 drakxtools-backend < 15.37-1
257 # (tmb) conflict older btrfs-progs to get the new in same transaction and in initrd
258 %define kconflicts12 btrfs-progs < 4.4.1-1
259 # (tmb) conflict too old plymouth (mga#15486)
260 %define kconflicts13 plymouth < 0.8.6.1-13
261 # (tmb) conflict too old radeon-firmware to get the uvd firmwares in initrd
262 %define kconflicts14 radeon-firmware < 20160429-1
263 # (tmb) conflict old firmware to get the firmwares in initrd
264 %define kconflicts15 kernel-firmware-nonfree < 20160409-1
265 # (tmb) conflict old microcode to get updated ones in initrd for early loading
266 %define kconflicts16 microcode < 0.20170707-1
267 # (tmb) conflict old theme to get mga5 theme in initrd
268 %define kconflicts17 mageia-gfxboot-theme < 4.5.6.6-1
269 # (tmb) conflict too old grub2(-efi)
270 %define kconflicts18 grub2 < 2.02-0.git9752.18
271 %define kconflicts19 grub2-efi < 2.02-0.git9752.18
272 # (tmb) conflict too old efibootmgr
273 %define kconflicts20 efibootmgr < 0.11.0-7
274 # (tmb) conflict for vmmouse breakage (mga#16954)
275 %define kconflicts21 x11-driver-input-vmmouse < 13.1.0-1
276
277 Autoreqprov: no
278 BuildRequires: gcc >= 4.8.2-3.1 kmod >= 15-2.3 bc
279 # for unversioned kmod provides (mga#14235)
280 BuildRequires: rpm-mageia-setup-build >= 1.197-1.1
281
282 %description
283 %common_description_kernel
284
285
286 # mkflavour() name flavour processor
287 # name: the flavour name in the package name
288 # flavour: first parameter of CreateKernel()
289 %define mkflavour() \
290 %package -n %{kname}-%{1}-%{buildrel} \
291 Version: %{fakever} \
292 Release: %{fakerel} \
293 Summary: %{expand:%{summary_%(echo %{1})}} \
294 Group: System/Kernel and hardware \
295 Provides: %{kname}-%{1} \
296 Provides: %kprovides1 %kprovides2 %kprovides3 \
297 %{expand:%%{?kprovides_%{1}:Provides: %{kprovides_%{1}}}} \
298 Provides: should-restart = system \
299 Requires(pre): %requires1 %requires2 %requires3 %requires4 \
300 Requires: %requires2 %requires5 \
301 Conflicts: %kconflicts1 %kconflicts2 %kconflicts3 \
302 Conflicts: %kconflicts4 %kconflicts5 %kconflicts6 \
303 Conflicts: %kconflicts7 %kconflicts8 %kconflicts9 \
304 Conflicts: %kconflicts10 %kconflicts11 %kconflicts12 \
305 Conflicts: %kconflicts13 %kconflicts14 %kconflicts15 \
306 Conflicts: %kconflicts16 %kconflicts17 %kconflicts18 \
307 Conflicts: %kconflicts19 %kconflicts20 %kconflicts21 \
308 Recommends: crda iw cpupower \
309 Recommends: %{kname}-%{1}-latest \
310 %ifarch %{ix86} \
311 Conflicts: arch(x86_64) \
312 %endif \
313 %description -n %{kname}-%{1}-%{buildrel} \
314 %common_description_kernel %{expand:%{info_%(echo %{1})}} \
315 \
316 %if %build_devel \
317 %package -n %{kname}-%{1}-devel-%{buildrel} \
318 Version: %{fakever} \
319 Release: %{fakerel} \
320 Summary: The kernel-devel files for %{kname}-%{1}-%{buildrel} \
321 Group: Development/Kernel \
322 Requires: glibc-devel ncurses-devel make gcc perl \
323 %ifarch %{ix86} \
324 Conflicts: arch(x86_64) \
325 %endif \
326 Provides: kernel-devel = %{kverrel} \
327 Recommends: %{kname}-%{1}-devel-latest \
328 %description -n %{kname}-%{1}-devel-%{buildrel} \
329 This package contains the kernel-devel files that should be enough to build \
330 3rdparty drivers against for use with %{kname}-%{1}-%{buildrel}. \
331 \
332 If you want to build your own kernel, you need to install the full \
333 %{kname}-source-%{buildrel} rpm. \
334 %endif \
335 \
336 %package -n %{kname}-%{1}-latest \
337 Version: %{kversion} \
338 Release: %{rpmrel} \
339 Summary: Virtual rpm for latest %{kname}-%{1} \
340 Group: System/Kernel and hardware \
341 Requires: %{kname}-%{1}-%{buildrel} \
342 Obsoletes: %{kname}-%{1}-smp-latest <= 2.6.22-0.rc5.%{expand:%mkrel 1} \
343 %ifarch %{ix86} \
344 Conflicts: arch(x86_64) \
345 %endif \
346 %description -n %{kname}-%{1}-latest \
347 This package is a virtual rpm that aims to make sure you always have the \
348 latest %{kname}-%{1} installed... \
349 \
350 %if %build_devel \
351 %package -n %{kname}-%{1}-devel-latest \
352 Version: %{kversion} \
353 Release: %{rpmrel} \
354 Summary: Virtual rpm for latest %{kname}-%{1}-devel \
355 Group: Development/Kernel \
356 Requires: %{kname}-%{1}-devel-%{buildrel} \
357 Obsoletes: %{kname}-%{1}-smp-devel-latest <= 2.6.22-0.rc5.%{expand:%mkrel 1} \
358 %ifarch %{ix86} \
359 Conflicts: arch(x86_64) \
360 %endif \
361 %description -n %{kname}-%{1}-devel-latest \
362 This package is a virtual rpm that aims to make sure you always have the \
363 latest %{kname}-%{1}-devel installed... \
364 %endif \
365 \
366 %post -n %{kname}-%{1}-%{buildrel} -f kernel_files.%{1}-post \
367 %posttrans -n %{kname}-%{1}-%{buildrel} -f kernel_files.%{1}-posttrans \
368 %preun -n %{kname}-%{1}-%{buildrel} -f kernel_files.%{1}-preun \
369 %postun -n %{kname}-%{1}-%{buildrel} -f kernel_files.%{1}-postun \
370 \
371 %if %build_devel \
372 %post -n %{kname}-%{1}-devel-%{buildrel} -f kernel_devel_files.%{1}-post \
373 %preun -n %{kname}-%{1}-devel-%{buildrel} -f kernel_devel_files.%{1}-preun \
374 %endif \
375 \
376 %files -n %{kname}-%{1}-%{buildrel} -f kernel_files.%{1} \
377 %files -n %{kname}-%{1}-latest \
378 \
379 %if %build_devel \
380 %files -n %{kname}-%{1}-devel-%{buildrel} -f kernel_devel_files.%{1} \
381 %files -n %{kname}-%{1}-devel-latest \
382 %endif
383
384
385 #
386 # kernel-desktop586: i586, smp-alternatives, 4GB
387 #
388 %ifarch %{ix86}
389 %if %build_desktop586
390 %define summary_desktop586 Linux kernel for desktop use with i586 and up to 4GB RAM
391 %define info_desktop586 This kernel is compiled for desktop use, single or \
392 multiple i586 processor(s)/core(s) and less than 4GB RAM (usually 3-3.5GB \
393 detected, if you need/want to use all 4GB or more, install %{kname}-server),\
394 using full preempt, BFS cpu scheduler and cfq i/o scheduler. \
395 This kernel relies on in-kernel smp alternatives to switch between up & smp \
396 mode depending on detected hardware. To force the kernel to boot in single \
397 processor mode, use the "nosmp" boot parameter.
398 %mkflavour desktop586
399 %endif
400 %endif
401
402 #
403 # kernel-desktop: i686, smp-alternatives, 4 GB / x86_64
404 #
405 %if %build_desktop
406 %ifarch %{ix86}
407 %define summary_desktop Linux Kernel for desktop use with i686 and up to 4GB RAM
408 %define info_desktop This kernel is compiled for desktop use, single or \
409 multiple i686 processor(s)/core(s) and less than 4GB RAM (usually 3-3.5GB \
410 detected, if you need/want to use all 4GB or more, install %{kname}-server), \
411 using full preempt, BFS cpu scheduler and cfq i/o scheduler. \
412 This kernel relies on in-kernel smp alternatives to switch between up & smp \
413 mode depending on detected hardware. To force the kernel to boot in single \
414 processor mode, use the "nosmp" boot parameter.
415 %else
416 %define summary_desktop Linux Kernel for desktop use with %{_arch}
417 %define info_desktop This kernel is compiled for desktop use, single or \
418 multiple %{_arch} processor(s)/core(s), using full preempt, BFS cpu \
419 scheduler and cfq i/o scheduler. \
420 This kernel relies on in-kernel smp alternatives to switch between up & smp \
421 mode depending on detected hardware. To force the kernel to boot in single \
422 processor mode, use the "nosmp" boot parameter.
423 %endif
424 %mkflavour desktop
425 %endif
426
427 #
428 # kernel-laptop: i686, smp-alternatives, 4GB / x86_64
429 #
430 %if %build_laptop
431 %ifarch %{ix86}
432 %define summary_laptop Linux kernel for laptop use with i686 and up to 4GB
433 %define info_laptop This kernel is compiled for laptop use, single or \
434 multiple i686 processor(s)/core(s) and less than 4GB RAM (usually 3-3.5GB \
435 detected, if you need/want to use all 4GB or more, install %{kname}-server), \
436 using HZ_250 to save battery, voluntary preempt, BFS cpu scheduler, \
437 cfq i/o scheduler and some other laptop-specific optimizations. \
438 If you want to sacrifice battery life for performance, you better use the \
439 %{kname}-desktop. \
440 This kernel relies on in-kernel smp alternatives to switch between up & smp \
441 mode depending on detected hardware. To force the kernel to boot in single \
442 processor mode, use the "nosmp" boot parameter. \
443 NOTE! This kernel also uses TuxOnIce by default.
444 %else
445 %define summary_laptop Linux kernel for laptop use with %{_arch}
446 %define info_laptop This kernel is compiled for laptop use, single or \
447 multiple %{_arch} processor(s)/core(s), using HZ_250 to save battery, \
448 voluntary preempt, BFS cpu scheduler, cfq i/o scheduler and some other \
449 laptop-specific optimizations. If you want to sacrifice battery life for \
450 performance, you better use the %{kname}-desktop. \
451 This kernel relies on in-kernel smp alternatives to switch between up & smp \
452 mode depending on detected hardware. To force the kernel to boot in single \
453 processor mode, use the "nosmp" boot parameter. \
454 NOTE! This kernel also uses TuxOnIce by default.
455 %endif
456 %mkflavour laptop
457 %endif
458
459 %if %build_realtime
460 %ifarch %{ix86}
461 %define summary_realtime Linux Kernel for desktop use with i686 & 4GB RAM
462 %define info_realtime This kernel is compiled for desktop use, single or \
463 multiple i686 processor(s)/core(s) and less than 4GB RAM, using full \
464 preempt and realtime, BFS cpu scheduler and cfq i/o scheduler. \
465 This kernel relies on in-kernel smp alternatives to switch between up & smp \
466 mode depending on detected hardware. To force the kernel to boot in single \
467 processor mode, use the "nosmp" boot parameter.
468 %else
469 %define summary_realtime Linux Kernel for desktop use with %{_arch}
470 %define info_realtime This kernel is compiled for desktop use, single or \
471 multiple %{_arch} processor(s)/core(s), using full preempt and realtime, \
472 BFS cpu scheduler and cfq i/o scheduler. \
473 This kernel relies on in-kernel smp alternatives to switch between up & smp \
474 mode depending on detected hardware. To force the kernel to boot in single \
475 processor mode, use the "nosmp" boot parameter.
476 %endif
477 %mkflavour realtime
478 %endif
479
480 #
481 # kernel-server: i686, smp-alternatives, 64 GB /x86_64
482 #
483 %if %build_server
484 %ifarch %{ix86}
485 %define summary_server Linux Kernel for server use with i686 & 64GB RAM
486 %define info_server This kernel is compiled for server use, single or \
487 multiple i686 processor(s)/core(s) and up to 64GB RAM using PAE, using \
488 no preempt, BFS cpu scheduler and cfq i/o scheduler. \
489 This kernel relies on in-kernel smp alternatives to switch between up & smp \
490 mode depending on detected hardware. To force the kernel to boot in single \
491 processor mode, use the "nosmp" boot parameter.
492 %else
493 %define summary_server Linux Kernel for server use with %{_arch}
494 %define info_server This kernel is compiled for server use, single or \
495 multiple %{_arch} processor(s)/core(s), using no preempt, BFS cpu scheduler \
496 and cfq i/o scheduler. \
497 This kernel relies on in-kernel smp alternatives to switch between up & smp \
498 mode depending on detected hardware. To force the kernel to boot in single \
499 processor mode, use the "nosmp" boot parameter.
500 %endif
501 %mkflavour server
502 %endif
503
504 #
505 # kernel-source
506 #
507 %if %build_source
508 %package -n %{kname}-source-%{buildrel}
509 Version: %{fakever}
510 Release: %{fakerel}
511 Requires: glibc-devel, ncurses-devel, make, gcc, perl, diffutils
512 Summary: The Linux source code for %{kname}-%{buildrel}
513 Group: Development/Kernel
514 Autoreqprov: no
515 Provides: kernel-source = %{kverrel}
516 Buildarch: noarch
517
518 %description -n %{kname}-source-%{buildrel}
519 The %{kname}-source package contains the source code files for the %{ktag}
520 series Linux kernel. Theese source files are only needed if you want to
521 build your own custom kernel that is better tuned to your particular hardware.
522
523 If you only want the files needed to build 3rdparty (nVidia, Ati, dkms-*,...)
524 drivers against, install the *-devel-* rpm that is matching your kernel.
525
526
527 %post -n %{kname}-source-%{buildrel}
528 for i in /lib/modules/%{kversion}-%{ktag}-*-%{buildrpmrel}; do
529 if [ -d $i ]; then
530 if [ ! -L $i/build -a ! -L $i/source ]; then
531 ln -sf /usr/src/%{kversion}-%{ktag}-%{buildrpmrel} $i/build
532 ln -sf /usr/src/%{kversion}-%{ktag}-%{buildrpmrel} $i/source
533 fi
534 fi
535 done
536
537 %preun -n %{kname}-source-%{buildrel}
538 for i in /lib/modules/%{kversion}-%{ktag}-*-%{buildrpmrel}/{build,source}; do
539 if [ -L $i ]; then
540 if [ "$(readlink $i)" = "/usr/src/%{kversion}-%{ktag}-%{buildrpmrel}" ]; then
541 rm -f $i
542 fi
543 fi
544 done
545 exit 0
546
547 #
548 # kernel-source-latest: virtual rpm
549 #
550 %package -n %{kname}-source-latest
551 Version: %{kversion}
552 Release: %{rpmrel}
553 Summary: Virtual rpm for latest %{kname}-source
554 Group: Development/Kernel
555 Requires: %{kname}-source-%{buildrel}
556 Buildarch: noarch
557
558 %description -n %{kname}-source-latest
559 This package is a virtual rpm that aims to make sure you always have the
560 latest %{kname}-source installed...
561 %endif
562
563 #
564 # kernel-doc: documentation for the Linux kernel
565 #
566 %if %build_doc
567 %package -n %{kname}-doc
568 Version: %{kversion}
569 Release: %{rpmrel}
570 Summary: Various documentation bits found in the %{kname} source
571 Group: Documentation
572 Buildarch: noarch
573
574 %description -n %{kname}-doc
575 This package contains documentation files from the %{kname} source.
576 Various bits of information about the Linux kernel and the device drivers
577 shipped with it are documented in these files. You also might want install
578 this package if you need a reference to the options that can be passed to
579 Linux kernel modules at load time.
580 %endif
581
582 #
583 # End packages - here begins build stage
584 #
585 %prep
586 %setup -q -n %top_dir_name -c
587
588 %setup -q -n %top_dir_name -D -T -a100
589
590 %define patches_dir ../%{patch_ver}/
591
592 cd %src_dir
593
594 %if %sublevel
595 %if %kpatch
596 %if %prev_sublevel
597 %patch1 -p1
598 %endif
599 %patch2 -p1
600 %else
601 %patch1 -p1
602 %endif
603 %else
604 %if %kpatch
605 %patch1 -p1
606 %endif
607 %endif
608 %if %kgit
609 %patch2 -p1
610 %endif
611 %if %extstable
612 %patch3 -p1
613 %endif
614
615 %{patches_dir}/scripts/apply_patches
616
617
618 # PATCH END
619
620 #
621 # Setup Begin
622 #
623
624 # Prepare all the variables for calling create_configs
625 %if %build_debug
626 %define debug --debug
627 %else
628 %define debug --no-debug
629 %endif
630
631 %{patches_dir}/scripts/create_configs %debug --user_cpu="%{_arch}"
632
633 # make sure the kernel has the sublevel we know it has...
634 LC_ALL=C perl -p -i -e "s/^SUBLEVEL.*/SUBLEVEL = %{sublevel}/" Makefile
635
636 # get rid of unwanted files
637 find . -name '*~' -o -name '*.orig' -o -name '*.append' |%kxargs rm -f
638
639
640 %build
641 # Common target directories
642 %define _kerneldir /usr/src/%{kversion}-%{ktag}-%{buildrpmrel}
643 %define _bootdir /boot
644 %define _modulesdir /lib/modules
645
646 # Directories definition needed for building
647 %define temp_root %{build_dir}/temp-root
648 %define temp_source %{temp_root}%{_kerneldir}
649 %define temp_boot %{temp_root}%{_bootdir}
650 %define temp_modules %{temp_root}%{_modulesdir}
651
652
653 PrepareKernel() {
654 name=$1
655 extension=$2
656 echo "Make dep for kernel $extension"
657 %smake -s mrproper
658
659 if [ -z "$name" ]; then
660 cp arch/x86/configs/%{_arch}_defconfig-desktop .config
661 else
662 cp arch/x86/configs/%{_arch}_defconfig-$name .config
663 fi
664
665 # make sure EXTRAVERSION says what we want it to say
666 %if %extstable
667 LC_ALL=C perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = .%{extstable}-$extension/" Makefile
668 %else
669 LC_ALL=C perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = -$extension/" Makefile
670 %endif
671
672 %smake oldconfig
673 }
674
675
676 BuildKernel() {
677 KernelVer=$1
678 echo "Building kernel $KernelVer"
679
680 %kmake -s all
681
682 # Start installing stuff
683 install -d %{temp_boot}
684 install -m 644 System.map %{temp_boot}/System.map-$KernelVer
685 install -m 644 .config %{temp_boot}/config-$KernelVer
686
687 cp -f arch/%{_arch}/boot/bzImage %{temp_boot}/vmlinuz-$KernelVer
688
689 # modules
690 install -d %{temp_modules}/$KernelVer
691 %smake INSTALL_MOD_PATH=%{temp_root} KERNELRELEASE=$KernelVer modules_install
692
693 # remove /lib/firmware, we use a separate kernel-firmware
694 rm -rf %{temp_root}/lib/firmware
695 }
696
697
698 SaveDevel() {
699 devel_flavour=$1
700
701 DevelRoot=/usr/src/%{kversion}-%{ktag}-$devel_flavour-%{buildrpmrel}
702 TempDevelRoot=%{temp_root}$DevelRoot
703
704 mkdir -p $TempDevelRoot
705 for i in $(find . -name 'Makefile*'); do cp -R --parents $i $TempDevelRoot;done
706 for i in $(find . -name 'Kconfig*' -o -name 'Kbuild*' -o -name config.mk); do cp -R --parents $i $TempDevelRoot;done
707 cp -fR include $TempDevelRoot
708 cp -fR scripts $TempDevelRoot
709 %ifarch %{ix86} x86_64
710 cp -fR arch/x86/kernel/asm-offsets.{c,s} $TempDevelRoot/arch/x86/kernel/
711 cp -fR arch/x86/kernel/asm-offsets_{32,64}.c $TempDevelRoot/arch/x86/kernel/
712 cp -fR arch/x86/entry/syscalls/syscall* $TempDevelRoot/arch/x86/entry/syscalls/
713 cp -fR arch/x86/include $TempDevelRoot/arch/x86/
714 cp -fR arch/x86/tools $TempDevelRoot/arch/x86/
715 %else
716 cp -fR arch/%{_arch}/kernel/asm-offsets.{c,s} $TempDevelRoot/arch/%{_arch}/kernel/
717 cp -fR arch/%{_arch}/include $TempDevelRoot/arch/%{_arch}/
718 %endif
719 cp -fR kernel/bounds.c $TempDevelRoot/kernel/
720 cp -fR tools/include $TempDevelRoot/tools/
721 cp -fR .config Module.symvers $TempDevelRoot
722 cp -fR 3rdparty/mkbuild.pl $TempDevelRoot/3rdparty/
723
724 # Needed for truecrypt build (Danny)
725 cp -fR drivers/md/dm.h $TempDevelRoot/drivers/md/
726
727 # Needed for lguest
728 cp -fR drivers/lguest/lg.h $TempDevelRoot/drivers/lguest/
729
730 # needed by include/generated/timeconst.h
731 cp -fR kernel/time/timeconst.bc $TempDevelRoot/kernel/time/
732
733 # Needed for lirc_gpio (Anssi Hannula, #39004, #54907)
734 cp -fR drivers/media/pci/bt8xx/bttv{,p}.h $TempDevelRoot/drivers/media/pci/bt8xx/
735 cp -fR drivers/media/pci/bt8xx/bt848.h $TempDevelRoot/drivers/media/pci/bt8xx/
736 cp -fR drivers/media/common/btcx-risc.h $TempDevelRoot/drivers/media/common/
737
738 # Needed for external dvb tree (#41418)
739 cp -fR drivers/media/dvb-core/*.h $TempDevelRoot/drivers/media/dvb-core/
740 cp -fR drivers/media/dvb-frontends/lgdt330x.h $TempDevelRoot/drivers/media/dvb-frontends/
741
742 # add acpica header files, needed for fglrx build
743 cp -fR drivers/acpi/acpica/*.h $TempDevelRoot/drivers/acpi/acpica/
744
745 for i in alpha arc arm arm26 arm64 avr32 blackfin c6x cris frv h8300 hexagon ia64 \
746 microblaze mips m32r m68k m68knommu metag mn10300 nios2 openrisc parisc \
747 powerpc ppc s390 sh sh64 score sparc tile unicore32 v850 xtensa; do
748 rm -rf $TempDevelRoot/arch/$i
749 done
750
751 %ifnarch %{ix86} x86_64
752 rm -rf $TempDevelRoot/arch/x86
753 %endif
754
755 rm -rf $TempDevelRoot/include/kvm/arm*
756 rm -rf $TempDevelRoot/include/soc/tegra
757
758 # Clean the scripts tree, and make sure everything is ok (sanity check)
759 # running prepare+scripts (tree was already "prepared" in build)
760 pushd $TempDevelRoot >/dev/null
761 %smake -s prepare scripts clean
762 popd >/dev/null
763
764 rm -f $TempDevelRoot/.config.old
765
766 # fix permissions
767 chmod -R a+rX $TempDevelRoot
768
769 # disable mrproper in -devel rpms
770 patch -p1 -d $TempDevelRoot -i %{SOURCE2}
771
772 kernel_devel_files=../kernel_devel_files.$devel_flavour
773
774
775 ### Create the kernel_devel_files.*
776 cat > $kernel_devel_files <<EOF
777 %dir $DevelRoot
778 %dir $DevelRoot/arch
779 %dir $DevelRoot/include
780 $DevelRoot/3rdparty
781 $DevelRoot/Documentation
782 $DevelRoot/arch/Kconfig
783 $DevelRoot/arch/um
784 %ifarch %{ix86} x86_64
785 $DevelRoot/arch/x86
786 %endif
787 $DevelRoot/block
788 $DevelRoot/certs
789 $DevelRoot/crypto
790 $DevelRoot/drivers
791 $DevelRoot/firmware
792 $DevelRoot/fs
793 $DevelRoot/include/Kbuild
794 $DevelRoot/include/acpi
795 $DevelRoot/include/asm-generic
796 $DevelRoot/include/clocksource
797 $DevelRoot/include/config
798 $DevelRoot/include/crypto
799 $DevelRoot/include/drm
800 $DevelRoot/include/dt-bindings
801 $DevelRoot/include/generated
802 $DevelRoot/include/keys
803 $DevelRoot/include/kvm
804 $DevelRoot/include/linux
805 $DevelRoot/include/math-emu
806 $DevelRoot/include/media
807 $DevelRoot/include/memory
808 $DevelRoot/include/misc
809 $DevelRoot/include/net
810 $DevelRoot/include/pcmcia
811 $DevelRoot/include/ras
812 $DevelRoot/include/rdma
813 $DevelRoot/include/rxrpc
814 $DevelRoot/include/scsi
815 $DevelRoot/include/soc
816 $DevelRoot/include/sound
817 $DevelRoot/include/target
818 $DevelRoot/include/trace
819 $DevelRoot/include/uapi
820 $DevelRoot/include/video
821 $DevelRoot/include/xen
822 $DevelRoot/init
823 $DevelRoot/ipc
824 $DevelRoot/kernel
825 $DevelRoot/lib
826 $DevelRoot/mm
827 $DevelRoot/net
828 $DevelRoot/samples
829 $DevelRoot/scripts
830 $DevelRoot/security
831 $DevelRoot/sound
832 $DevelRoot/tools
833 $DevelRoot/usr
834 $DevelRoot/virt
835 $DevelRoot/.config
836 $DevelRoot/Kbuild
837 $DevelRoot/Kconfig
838 $DevelRoot/Makefile
839 $DevelRoot/Module.symvers
840 %doc README.kernel-%{ktag}-sources
841 EOF
842
843
844 ### Create -devel Post script on the fly
845 cat > $kernel_devel_files-post <<EOF
846 if [ -d /lib/modules/%{kversion}-%{ktag}-$devel_flavour-%{buildrpmrel} ]; then
847 rm -f /lib/modules/%{kversion}-%{ktag}-$devel_flavour-%{buildrpmrel}/{build,source}
848 ln -sf $DevelRoot /lib/modules/%{kversion}-%{ktag}-$devel_flavour-%{buildrpmrel}/build
849 ln -sf $DevelRoot /lib/modules/%{kversion}-%{ktag}-$devel_flavour-%{buildrpmrel}/source
850 fi
851 EOF
852
853
854 ### Create -devel Preun script on the fly
855 cat > $kernel_devel_files-preun <<EOF
856 if [ -L /lib/modules/%{kversion}-%{ktag}-$devel_flavour-%{buildrpmrel}/build ]; then
857 rm -f /lib/modules/%{kversion}-%{ktag}-$devel_flavour-%{buildrpmrel}/build
858 fi
859 if [ -L /lib/modules/%{kversion}-%{ktag}-$devel_flavour-%{buildrpmrel}$devel_cpu/source ]; then
860 rm -f /lib/modules/%{kversion}-%{ktag}-$devel_flavour-%{buildrpmrel}/source
861 fi
862 exit 0
863 EOF
864 }
865
866
867 CreateFiles() {
868 kernel_flavour=$1
869
870 kernel_files=../kernel_files.$kernel_flavour
871
872
873 ### Create the kernel_files.*
874 cat > $kernel_files <<EOF
875 %{_bootdir}/System.map-%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}
876 %{_bootdir}/config-%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}
877 %{_bootdir}/vmlinuz-%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}
878 %dir %{_modulesdir}/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/
879 %{_modulesdir}/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/kernel
880 %{_modulesdir}/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/modules.*
881 %doc README.kernel-%{ktag}-sources
882 EOF
883
884
885 ### Create kernel Post script
886 cat > $kernel_files-post <<EOF
887 /sbin/installkernel -L %{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}
888 pushd /boot > /dev/null
889 if [ -L vmlinuz-%{ktag}-$kernel_flavour ]; then
890 rm -f vmlinuz-%{ktag}-$kernel_flavour
891 fi
892 ln -sf vmlinuz-%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel} vmlinuz-%{ktag}-$kernel_flavour
893 if [ -L initrd-%{ktag}-$kernel_flavour.img ]; then
894 rm -f initrd-%{ktag}-$kernel_flavour.img
895 fi
896 ln -sf initrd-%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}.img initrd-%{ktag}-$kernel_flavour.img
897 popd > /dev/null
898 %if %build_devel
899 # create kernel-devel symlinks if matching -devel- rpm is installed
900 if [ -d /usr/src/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel} ]; then
901 rm -f /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/{build,source}
902 ln -sf /usr/src/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel} /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/build
903 ln -sf /usr/src/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel} /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/source
904 fi
905 %endif
906 %if %build_source
907 # create kernel-source symlinks only if matching -devel- rpm is not installed
908 if [ -d /usr/src/%{kversion}-%{ktag}-%{buildrpmrel} -a ! -d /usr/src/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel} ]; then
909 rm -f /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/{build,source}
910 ln -sf /usr/src/%{kversion}-%{ktag}-%{buildrpmrel} /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/build
911 ln -sf /usr/src/%{kversion}-%{ktag}-%{buildrpmrel} /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/source
912 fi
913 %endif
914 EOF
915
916 ### Create kernel Posttran script
917 cat > $kernel_files-posttrans <<EOF
918 if [ -x /usr/sbin/dkms_autoinstaller -a -d /usr/src/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel} ]; then
919 /usr/sbin/dkms_autoinstaller start %{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}
920 fi
921 EOF
922
923 ### Create kernel Preun script on the fly
924 cat > $kernel_files-preun <<EOF
925 /sbin/installkernel -R %{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}
926 pushd /boot > /dev/null
927 if [ -L vmlinuz-%{ktag}-$kernel_flavour ]; then
928 if [ "$(readlink vmlinuz-%{ktag}-$kernel_flavour)" = "vmlinuz-%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}" ]; then
929 rm -f vmlinuz-%{ktag}-$kernel_flavour
930 fi
931 fi
932 if [ -L initrd-%{ktag}-$kernel_flavour.img ]; then
933 if [ "$(readlink initrd-%{ktag}-$kernel_flavour.img)" = "initrd-%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}.img" ]; then
934 rm -f initrd-%{ktag}-$kernel_flavour.img
935 fi
936 fi
937 popd > /dev/null
938 %if %build_devel
939 if [ -L /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/build ]; then
940 rm -f /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/build
941 fi
942 if [ -L /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/source ]; then
943 rm -f /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}/source
944 fi
945 %endif
946 exit 0
947 EOF
948
949
950 ### Create kernel Postun script on the fly
951 cat > $kernel_files-postun <<EOF
952 /sbin/kernel_remove_initrd %{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel}
953 rm -rf /lib/modules/%{kversion}-%{ktag}-$kernel_flavour-%{buildrpmrel} > /dev/null
954 EOF
955 }
956
957
958 CreateKernel() {
959 flavour=$1
960
961 PrepareKernel $flavour %{ktag}-$flavour-%{buildrpmrel}
962
963 BuildKernel %{kversion}-%{ktag}-$flavour-%{buildrpmrel}
964 %if %build_devel
965 SaveDevel $flavour
966 %endif
967 CreateFiles $flavour
968 }
969
970
971 ###
972 # DO it...
973 ###
974
975
976 # Create a simulacro of buildroot
977 rm -rf %{temp_root}
978 install -d %{temp_root}
979
980
981 #make sure we are in the directory
982 cd %src_dir
983
984 %ifarch %{ix86}
985 %if %build_desktop586
986 CreateKernel desktop586
987 %endif
988 %endif
989
990 %if %build_desktop
991 CreateKernel desktop
992 %endif
993
994 %if %build_laptop
995 CreateKernel laptop
996 %endif
997
998 %if %build_realtime
999 CreateKernel realtime
1000 %endif
1001
1002 %if %build_server
1003 CreateKernel server
1004 %endif
1005
1006
1007 # kernel-source is shipped as a clean source tree, with no preparation
1008 %if %build_source
1009 PrepareKernel "" %{buildrpmrel}%{ktag}custom
1010 %smake -s mrproper
1011 %endif
1012
1013
1014 ###
1015 ### install
1016 ###
1017 %install
1018 install -m 644 %{SOURCE4} .
1019
1020 cd %src_dir
1021
1022 # Directories definition needed for installing
1023 %define target_source %{buildroot}%{_kerneldir}
1024 %define target_boot %{buildroot}%{_bootdir}
1025 %define target_modules %{buildroot}%{_modulesdir}
1026
1027 # We want to be able to test several times the install part
1028 rm -rf %{buildroot}
1029 cp -a %{temp_root} %{buildroot}
1030
1031 # Create directories infastructure
1032 %if %build_source
1033 install -d %{target_source}
1034
1035 tar cf - . | tar xf - -C %{target_source}
1036 chmod -R a+rX %{target_source}
1037
1038 # we remove all the source files that we don't ship
1039 # first architecture files
1040 for i in alpha arc arm arm26 arm64 avr32 blackfin c6x cris frv h8300 hexagon ia64 \
1041 microblaze mips m32r m68k m68knommu metag mn10300 nios2 openrisc parisc \
1042 powerpc ppc s390 sh sh64 score sparc tile v850 xtensa unicore32; do
1043 rm -rf %{target_source}/arch/$i
1044 done
1045
1046 %ifnarch %{ix86} x86_64
1047 rm -rf %{target_source}/arch/x86
1048 %endif
1049
1050 rm -rf %{target_source}/include/kvm/arm*
1051
1052 # other misc files
1053 rm -f %{target_source}/{.config.old,.config.cmd,.mailmap,.missing-syscalls.d,arch/.gitignore,.get_maintainer.ignore}
1054 rm -rf %{target_source}/.tmp_depmod/
1055
1056 #endif %build_source
1057 %endif
1058
1059 # compressing modules
1060 %if %{build_modxz}
1061 find %{target_modules} -name "*.ko" | %kxargs xz -6e
1062 %else
1063 find %{target_modules} -name "*.ko" | %kxargs gzip -9
1064 %endif
1065
1066 # We used to have a copy of PrepareKernel here
1067 # Now, we make sure that the thing in the linux dir is what we want it to be
1068 for i in %{target_modules}/*; do
1069 rm -f $i/build $i/source
1070 done
1071
1072 # sniff, if we compressed all the modules, we change the stamp :(
1073 # we really need the depmod -ae here
1074 pushd %{target_modules}
1075 for i in *; do
1076 /sbin/depmod -ae -b %{buildroot} -F %{target_boot}/System.map-$i $i
1077 echo $?
1078 done
1079
1080 # create modules.description
1081 for i in *; do
1082 pushd $i
1083 echo "Creating modules.description for $i"
1084 modules=`find . -name "*.ko.[g,x]z"`
1085 echo $modules | %kxargs /sbin/modinfo \
1086 | perl -lne 'print "$name\t$1" if $name && /^description:\s*(.*)/; $name = $1 if m!^filename:\s*(.*)\.k?o!; $name =~ s!.*/!!' > modules.description
1087 popd
1088 done
1089 popd
1090
1091
1092 # We don't want to remove this, the whole reason of its existence is to be
1093 # able to do several rpm --short-circuit -bi for testing install
1094 # phase without repeating compilation phase
1095 #rm -rf %{temp_root}
1096
1097 ###
1098 ### source and doc file lists
1099 ###
1100 %if %build_source
1101 %files -n %{kname}-source-%{buildrel}
1102 %dir %{_kerneldir}
1103 %dir %{_kerneldir}/arch
1104 %dir %{_kerneldir}/include
1105 %{_kerneldir}/3rdparty
1106 %{_kerneldir}/Documentation
1107 %{_kerneldir}/arch/Kconfig
1108 %{_kerneldir}/arch/um
1109 %ifarch %{ix86} x86_64
1110 %{_kerneldir}/arch/x86
1111 %endif
1112 %{_kerneldir}/block
1113 %{_kerneldir}/certs
1114 %{_kerneldir}/crypto
1115 %{_kerneldir}/drivers
1116 %{_kerneldir}/firmware
1117 %{_kerneldir}/fs
1118 %{_kerneldir}/include/Kbuild
1119 %{_kerneldir}/include/acpi
1120 %{_kerneldir}/include/asm-generic
1121 %{_kerneldir}/include/clocksource
1122 %{_kerneldir}/include/crypto
1123 %{_kerneldir}/include/drm
1124 %{_kerneldir}/include/dt-bindings
1125 %{_kerneldir}/include/keys
1126 %{_kerneldir}/include/kvm
1127 %{_kerneldir}/include/linux
1128 %{_kerneldir}/include/math-emu
1129 %{_kerneldir}/include/media
1130 %{_kerneldir}/include/memory
1131 %{_kerneldir}/include/misc
1132 %{_kerneldir}/include/net
1133 %{_kerneldir}/include/pcmcia
1134 %{_kerneldir}/include/ras
1135 %{_kerneldir}/include/rdma
1136 %{_kerneldir}/include/rxrpc
1137 %{_kerneldir}/include/scsi
1138 %{_kerneldir}/include/soc
1139 %{_kerneldir}/include/sound
1140 %{_kerneldir}/include/target
1141 %{_kerneldir}/include/trace
1142 %{_kerneldir}/include/uapi
1143 %{_kerneldir}/include/video
1144 %{_kerneldir}/include/xen
1145 %{_kerneldir}/init
1146 %{_kerneldir}/ipc
1147 %{_kerneldir}/kernel
1148 %{_kerneldir}/lib
1149 %{_kerneldir}/mm
1150 %{_kerneldir}/net
1151 %{_kerneldir}/samples
1152 %{_kerneldir}/scripts
1153 %{_kerneldir}/security
1154 %{_kerneldir}/sound
1155 %{_kerneldir}/tools
1156 %{_kerneldir}/usr
1157 %{_kerneldir}/virt
1158 %{_kerneldir}/.gitignore
1159 %{_kerneldir}/COPYING
1160 %{_kerneldir}/CREDITS
1161 %{_kerneldir}/Kbuild
1162 %{_kerneldir}/Kconfig
1163 %{_kerneldir}/MAINTAINERS
1164 %{_kerneldir}/Makefile
1165 %{_kerneldir}/README
1166 %{_kerneldir}/REPORTING-BUGS
1167 %doc README.kernel-%{ktag}-sources
1168
1169 %files -n %{kname}-source-latest
1170 %endif
1171
1172 %if %build_doc
1173 %files -n %{kname}-doc
1174 %doc linux-%{tar_ver}/Documentation/*
1175 %endif
1176
1177 %changelog
1178 * Thu Oct 12 2017 Thomas Backlund <tmb@mageia.org> 4.4.92-1.mga5
1179 - update to 4.4.92
1180
1181 * Wed Sep 27 2017 Thomas Backlund <tmb@mageia.org> 4.4.89-1.mga5
1182 - update to 4.4.89
1183
1184 * Fri Sep 15 2017 Thomas Backlund <tmb@mageia.org> 4.4.88-2.mga5
1185 - fix conflicts on kernel-firmware-nonfree and microcode
1186
1187 * Thu Sep 14 2017 Thomas Backlund <tmb@mageia.org> 4.4.88-1.mga5
1188 - update to 4.4.88
1189 - enable CC_STACKPROTECTOR_STRONG
1190
1191 * Sun Sep 10 2017 Thomas Backlund <tmb@mageia.org> 4.4.87-1.mga5
1192 - update to 4.4.87
1193
1194 * Sun Aug 13 2017 Thomas Backlund <tmb@mageia.org> 4.4.82-1.mga5
1195 - update to 4.4.82
1196
1197 * Fri Jul 28 2017 Thomas Backlund <tmb@mageia.org> 4.4.79-1.mga5
1198 - update to 4.4.79
1199 - drop merged patches:
1200 * AA01-AA07
1201 - force new HT fixed microcode in initrd
1202
1203 * Mon Jun 26 2017 Thomas Backlund <tmb@mageia.org> 4.4.74-1.mga5
1204 - update to 4.4.74
1205 - add patches:
1206 * AA01-AA07: -stable queue fixes
1207 * BX01: xen-blkback: don't leak stack data via response ring (XSA-216)
1208
1209 * Wed Jun 14 2017 Thomas Backlund <tmb@mageia.org> 4.4.72-1.mga5
1210 - update to 4.4.72
1211 - add patches:
1212 * MB40-MB41: add rtl8812 support (mga#21043)
1213
1214 * Fri May 26 2017 Thomas Backlund <tmb@mageia.org> 4.4.70-1.mga5
1215 - update to 4.4.70
1216 - enable CIFS_SMB2 (mga#20886)
1217
1218 * Sun May 14 2017 Thomas Backlund <tmb@mageia.org> 4.4.68-1.mga5
1219 - update to 4.4.68
1220
1221 * Thu Mar 30 2017 Thomas Backlund <tmb@mageia.org> 4.4.59-1.mga5
1222 - update to 4.4.59
1223 - drop merged patches:
1224 * AA01-AA22
1225
1226 * Sat Mar 18 2017 Thomas Backlund <tmb@mageia.org> 4.4.55-1.mga5
1227 - update to 4.4.55
1228 - drop merged patches:
1229 * AA01-AA30
1230 - add patches:
1231 * AA01-AA22: post 4.4.55 current -stable queue
1232
1233 * Wed Mar 15 2017 Thomas Backlund <tmb@mageia.org> 4.4.54-1.mga5
1234 - update to 4.4.54
1235 - drop merged patches:
1236 * DS01-DS02, ND01, MW10
1237 - update patches:
1238 * NW20: wireguard support
1239 - add patches:
1240 * AA01-AA30: current -stable queue
1241
1242 * Fri Feb 24 2017 Thomas Backlund <tmb@mageia.org> 4.4.50-2.mga5
1243 - add patches:
1244 * DS01: Fix missing sanity check in /dev/sg
1245 * DS02: scsi: don't BUG_ON() empty DMA transfers
1246 * ND01: rtlwifi: rtl_usb: Fix missing entry in USB driver's private data
1247 * NW10: dccp: fix freeing skb too early for IPV6_RECVPKTINFO (CVE-2017-6074)
1248
1249 * Sun Feb 19 2017 Thomas Backlund <tmb@mageia.org> 4.4.50-1.mga5
1250 - update to 4.4.50
1251 - drop merged/obsolete patches:
1252 * DG04
1253 - add patches:
1254 * NI30: tcp: fix mark propagation with fwmark_reflect enabled
1255 * NW20: WireGuard VPN support
1256
1257 * Fri Dec 16 2016 Thomas Backlund <tmb@mageia.org> 4.4.39-1.mga5
1258 - update to 4.4.39
1259 - drop merged patches:
1260 * DB10
1261 - add patches:
1262 * DG04: revert 'drm/radeon/si_dpm: workaround for SI kicker'
1263 (added in upstrean 4.4.31) as it breaks Dell Precision M4800 (mga#19892)
1264 * DG12: drm/i915: skip the first 4k of stolen memory on everything >= gen8
1265
1266 * Sun Dec 11 2016 Thomas Backlund <tmb@mageia.org> 4.4.38-1.mga5
1267 - update to 4.4.38
1268 - add patches:
1269 * DB10: zram: restrict add/remove attributes to root only
1270 * DI01-DI02: fix for HID gamepad DragonRise (mga#19853)
1271
1272 * Tue Nov 15 2016 Thomas Backlund <tmb@mageia.org> 4.4.32-1.mga5
1273 - update to 4.4.32
1274 - drop merged patches:
1275 * DN01, FR10
1276
1277 * Sat Oct 22 2016 Thomas Backlund <tmb@mageia.org> 4.4.26-1.mga5
1278 - update to 4.4.26
1279 - drop merged patches:
1280 * AX10, BS01, DG13, DH02, DM31, DP01, LA01, NI21
1281 - add patches:
1282 * DN01: net: add recursion limit to GRO (CVE-2016-7039)
1283 * KP00: revert: 'PM / hibernate: Fix rtree_next_node() to avoid walking
1284 off list ends'
1285 - enable STRICT_DEVMEM as a security hardening
1286 - disable FW_LOADER_USER_HELPER_FALLBACK again (un-intentionally
1287 enabled in 4.4 series upgrade) that slows down boot or even makes
1288 wireless connection fail with drivers with multiple possible
1289 firmwares (mga#19390).
1290
1291 * Tue Jul 26 2016 Thomas Backlund <tmb@mageia.org> 4.4.16-1.mga5
1292 - update to 4.4.16
1293 - drop merged patch:
1294 * DH01
1295 - add patches:
1296 * FR10: reiserfs: switch to generic_{get,set,remove}xattr()
1297 * NI21: tcp: make challenge acks less predictable (CVE-2016-5389, CVE-2016-5969)
1298 * NW01: iwlwifi: add new 8260 PCI IDs
1299
1300 * Sat Jun 11 2016 Thomas Backlund <tmb@mageia.org> 4.4.13-1.mga5
1301 - update to 4.4.13
1302 - drop merged patch:
1303 * FP01
1304 - add patches:
1305 * AX10: x86/mm/32: Enable full randomization on i386 and X86_32 (CVE-2016-3672)
1306 * BS01: scsi: ignore errors from scsi_dh_add_device()
1307 * DH01: HID: multitouch: enable palm rejection if device implements confidence usage
1308 * DH02: HID: sony: do not bail out when the sixaxis refuses the output report
1309 * DP01: PNP: Add Broadwell to Intel MCH size workaround
1310 * DP02: PNP: Add Haswell-ULT to Intel MCH size workaround
1311
1312 * Thu May 19 2016 Thomas Backlund <tmb@mageia.org> 4.4.11-1.mga5
1313 - update to 4.4.11
1314 - drop merged patches:
1315 * CA01, DM30, DS01, DS10, MM01
1316
1317 * Fri May 13 2016 Thomas Backlund <tmb@mageia.org> 4.4.10-1.mga5
1318 - update to 4.4.10
1319 - drop merged patches:
1320 * DG12
1321 - add patches:
1322 * CA01: crypto: hash - Fix page length clamping in hash walk
1323 * DM30: Revert "[media] videobuf2-v4l2: Verify planes array in buffer dequeueing"
1324 * DM31: vb2: core: Skip planes array verification if pb is NULL
1325 * DM32: [media] videobuf2-v4l2: Verify planes array in buffer dequeueing v2
1326 * DS01: qla1280: Don't allocate 512kb of host tags
1327 * DS10: ALSA: hda - Fix broken reconfig
1328 * LA01: KEYS: Fix ASN.1 indefinite length object parsing (CVE-2016-0758)
1329 * MM01: zsmalloc: fix zs_can_compact() integer overflow
1330 - re-enable VM86 that got disabled in 4.1 -> 4.4 transition
1331
1332 * Tue May 3 2016 Thomas Backlund <tmb@mageia.org> 4.4.9-1.mga5
1333 - update to 4.4.9
1334 - drop merged patches:
1335 * AA01-AB10, AX01, FE01
1336
1337 * Mon May 2 2016 Thomas Backlund <tmb@mageia.org> 4.4.8-4.mga5
1338 - add patches:
1339 * AA27-AAB10: fixes from -stable queue
1340
1341 * Fri Apr 29 2016 Thomas Backlund <tmb@mageia.org> 4.4.8-3.mga5
1342 - add patches:
1343 * AA01-AA26: fixes from -stable queue
1344 * DM10: PM / QoS: Add pm_qos_cancel_request_lazy() that doesnt sleep
1345 * DM11: mmc: sdhci: get runtime pm when sdio irq is enabled
1346 * DM12: mmc: sdhci: Support maximum DMA latency request via PM QOS
1347 * DM13: mmc: sdhci-acpi: Fix device hang on Intel BayTrail
1348 * DM14: mmc: sdhci-pci: Fix device hang on Intel BayTrail
1349 * FP01: pipe: limit the per-user amount of pages allocated in pipes
1350 (CVE-2016-2847)
1351 * MB30: add rtl8723bs wifi support
1352
1353 * Mon Apr 25 2016 Thomas Backlund <tmb@mageia.org> 4.4.8-2.mga5
1354 - add patches:
1355 * AX01: x86/mm/kmmio: Fix mmiotrace for hugepages
1356 * DC01: crypto: talitos - fix crash in talitos_cra_init()
1357 * DC02: crypto: talitos - fix AEAD tcrypt tests
1358 * DG02: drm/radeon: Update radeon_get_vblank_counter_kms()
1359 * DG03: drm/radeon: Drop unnecessary unsigned int < 0 check
1360 * DG10: drm/i915: Fix RPS pointer passed from wait_ioctl to i915_wait_request
1361 * DG11: drm/i915/bxt: constify bxt stepping info
1362 * DG12: drm/i915/skl: Fix DMC load on Skylake J0 and K0
1363 * DG13: drm/i915/skl: Add missing SKL ids
1364
1365 * Wed Apr 20 2016 Thomas Backlund <tmb@mageia.org> 4.4.8-1.mga5
1366 - update to 4.4.8
1367 - add patches:
1368 * FE01: ext4: fix NULL pointer dereference in ext4_mark_inode_dirty()
1369 * DG01: Revert "drm/radeon: disable runtime pm on PX laptops without
1370 dGPU power control"
1371
1372 * Tue Apr 12 2016 Thomas Backlund <tmb@mageia.org> 4.4.7-1.mga5
1373 - update to 4.4.7
1374
1375 * Sat Apr 9 2016 Thomas Backlund <tmb@mageia.org> 4.4.6-1.mga5
1376 - update to 4.4.6
1377 - update conflicts/requires on firmware, microcode and dkms
1378 packages for kernel 4.4+ series
1379 - update patches:
1380 * BB01-BB03: BFQ I/O scheduler v7r11
1381 * CK01: -ck patchset including BFS 467
1382 * FR01: reiser4 support
1383 * KP01: TuxOnIce support for 4.4 series
1384 - make psmouse modular (mga#15660)
1385 - update defconfigs and filelists
1386
1387 * Wed Jan 20 2016 Thomas Backlund <tmb@mageia.org> 4.1.15-2.mga5
1388 - add patches:
1389 * NN01: netfilter: nf_nat_redirect: add missing NULL pointer check
1390 * SK02: KEYS: Fix keyring ref leak in join_session_keyring() (CVE-2016-0728)
1391
1392 * Fri Dec 25 2015 Thomas Backlund <tmb@mageia.org> 4.1.15-1.mga5
1393 - update to 4.1.15
1394 - drop merged /obsolete patches:
1395 * AX10, BM01-BM04, CK02, DG01-DG04, DG07, DG20-DG30, DG40, DI01, DM10, DM11
1396 * DN10, DN12, DU01-DU02, DV10, FA01, FB01-FB02, FE01, FE10-FE11
1397 - update patches:
1398 * BB01-BB03: BFQ patchset v7r8-4.1
1399 * CK01: 4.1-ck2 patchset including BFS 464
1400 * FR01: reiser4 support
1401 - rebase paches:
1402 * MB02: 3rdparty merge
1403 - add patches:
1404 * AA01-AA13: stable queue fixes
1405 * BS01-BS02: SCSI: Fix NULL pointer dereference in RTPM of block layer
1406 * CK02: fix BFS scheduler for changes to should_resched() in 4.1.12
1407 * DA01: ahci: Fix softreset failed issue of Port Multiplier
1408 * DA02: sata_sil: disable trim
1409 * DB01: silence DT errors on non-DT 32bit systems (mga#17010)
1410 * DG01: drm/nouveau/bios/fan: hardcode the fan mode to linear
1411 * DG02: drm/ttm: Fix a read/write lock imbalance (fixes vmgfx hang)
1412 * DM10: md: remove check for MD_RECOVERY_NEEDED in action_store (reshape fix)
1413 * DM20: airspy: increase USB control message buffer size (fw load hang fix)
1414 * MB14: ndiswrapper buildfix
1415 * NW01-NW08: QCA6174 fixes (mga#16915)
1416 * NW20: rtlwifi: rtl8821ae: Fix lockups on boot
1417 * NX20: xen/events/fifo: Consume unprocessed events when a CPU dies
1418 - add security fixes:
1419 * AX10: KVM: svm: unconditionally intercept #DB (CVE-2015-8104)
1420 * DM21: media/vivid-osd: fix info leak in ioctl (CVE-2015-7884)
1421 * DS10: staging/dgnc: fix info leak in ioctl (CVE-2015-7885)
1422 * FO01: ovl: fix permission checking for setattr (CVE-2015-8660)
1423 * NX01-NX07: xen paravirtualized drivers incautious about shared memory contents
1424 (CVE-2015-8550 / XSA-155)
1425 * NX11-NX15: xen pciback missing sanity checks leading to crash
1426 (CVE-2015-8551,CVE-2015-8552 / XSA-157)
1427 * SK01: KEYS: Don't permit request_key() to construct a new keyring (CVE-2015-7872)
1428 - enable DRM_I915_PRELIMINARY_HW_SUPPORT for Skylake support (mga#17174)
1429 - update conflicts on old dkms and firmware packages
1430 - update defconfigs
1431 - update filelists
1432
1433 * Fri May 22 2015 Thomas Backlund <tmb@mageia.org> 3.19.8-1.mga5
1434 - update to 3.19.8
1435 - drop merged patches:
1436 * AX01-AX02, DG05-DG06, DN01, DN11, DN13, DU03-DU04
1437 - add patches:
1438 * AX10: x86/spinlocks: Fix regression in spinlock contention detection
1439 * BM01: blk-mq: fix CPU hotplug handling
1440 * BM02: blk-mq: fix race between timeout and CPU hotplug
1441 * BM03: blk-mq: fix FUA request hang
1442 * BM04: blk-mq: don't lose requests if a stopped queue restarts
1443 * DG20: drm/radeon: Use drm_calloc_ab for CS relocs
1444 * DG21: drm/radeon: adjust pll when audio is not enabled
1445 * DG22: drm/radeon: add SI DPM quirk for Sapphire R9 270 Dual-X 2G GDDR5
1446 * DG23: drm/radeon: fix lockup when BOs aren't part of the VM on release
1447 * DG24: drm/radeon: reset BOs address after clearing it.
1448 * DG25: drm/radeon: check new address before removing old one
1449 * DG26: drm/radeon: disable semaphores for UVD V1 (v2)
1450 * DG27: drm/radeon: fix userptr BO unpin bug v3
1451 * DG28: drm/radeon: make VCE handle check more strict
1452 * DG29: drm/radeon: make UVD handle checking more strict
1453 * DG30: drm/radeon: more strictly validate the UVD codec
1454 * DG40: drm: Zero out invalid vblank timestamp in drm_update_vblank_count
1455 * DM10: md/raid5: don't record new size if resize_stripes fails.
1456 * DM11: md/raid0: fix restore to sector variable in
1457 * DV10: vhost/scsi: potential memory corruption
1458 * FA01: aio: fix serial draining in exit_aio()
1459 * FB01: Btrfs: fix BUG_ON in btrfs_orphan_add() when delete unused
1460 * FB02: btrfs: unlock i_mutex after attempting to delete subvolume during send
1461 * FE01: efivarfs: Ensure VariableName is NUL-terminated
1462 * FE10: ext4: fix data corruption caused by unwritten and delayed
1463 * FE11: ext4: move check under lock scope to close a race.
1464
1465 * Mon Mar 30 2015 Thomas Backlund <tmb@mageia.org> 3.19.3-1.mga5
1466 - update to 3.19.3
1467 - update patches:
1468 * BB01-BB03: BFQ block scheduler
1469 * CK01: Con Colivas -ck patchset including BFS cpu scheduler
1470 * FR01: reiser4 support
1471 - only build kernel-tmb-desktop
1472 * support 64GB RAM even on i586
1473 - add patches:
1474 * AX01-AX02: restore mwait_idle() support
1475 * DG01: drm/i915: Make sample_c messages go faster on Haswell
1476 * DG02: drm/i915: Improve HiZ throughput on Cherryview
1477 * DG03: drm/i915: Enable the HiZ RAW Stall Optimization on Broadwell
1478 * DG04: drm/i915: Ensure the HiZ RAW Stall Optimization is on for Cherryview
1479 * DG05: drm/i915: Align initial plane backing objects correctly
1480 * DG06: drm/i915: Push vblank enable/disable past encoder->enable/disable
1481 * DG07: drm/i915: Revert back to legacy turbo for vlv, fixes random crashes
1482 * DI01: Input: psmouse - support for the FocalTech PS/2 protocol extensions
1483 * DN01: net/tg3: Hold tp->lock before calling tg3_halt() from tg3_init_one()
1484 * DN10: net/wireless/ath9k: Update PCI IDs for AR9565
1485 * DN11: net/wireless/rtlwifi: Improve handling of IPv6 packets
1486 * DN12: net/wireless/brcmfmac: Add support for bcm43340/1 wireless chipsets
1487 * DN13: net/wireless/iwlwifi: mvm: BT Coex - fix a NULL pointer exception
1488 * DS01: alsa: Add VT1613 AC97 codec support
1489 * DU01: usb/xhci: remove unused parameter 'xhci' in function xhci_handshake()
1490 * DU02: usb/xhci: clean up work to remove unused parameters for functions in xhci-mem.c
1491 * DU03: usb/xhci: handle Config Error Change (CEC) in xhci driver
1492 * DU04: usb/xhci: apply XHCI_AVOID_BEI quirk to all Intel xHCI controllers
1493 * DV01: video: fbdev: fix possible null dereference
1494 * FR02: reiser4 buildfixes for kernel 3.19
1495 - update conflicts on old dkms and firmware packages
1496 - update defconfigs
1497 - update filelists
1498
1499 * Sat Jan 17 2015 Thomas Backlund <tmb@mageia.org> 3.18.3-1.mga5
1500 - update to 3.18.3
1501 - update patches:
1502 * BB01-BB03: BFQ I/O sceduler v7r7 for 3.18
1503 * CK01: -ck patchset including BFS cpu scheduler 0.460
1504 * FR01: reiser4 support
1505 - drop merged patches
1506 * CK02: BFS scheduler update
1507 * DA01-DA02: acpi blacklist updates
1508 * DM13-DM14: mdadm fixes
1509 * FN10: fsnotify umount hang fix
1510 * FO01-FO09: overlay filesystem support
1511 * NC01-NC02: duplicate symlinks fix
1512 - disable KP01 (TuxOnIce support, currently broken)
1513 - update defconfigs
1514 - update filelists
1515
1516 * Sat Jan 17 2015 Thomas Backlund <tmb@mageia.org> 3.14.29-1.mga5
1517 - update to 3.14.29
1518 - drop merged patch FN01
1519 - add patches:
1520 * FN10: fsnotify: next_i is freed during fsnotify_unmount_inodes
1521 * NC01: net: prevent of emerging cross-namespace symlinks
1522 * NC02: net: fix creation adjacent device symlinks
1523 - make INTEL_MEI modular (mga#14469)
1524
1525 * Sun Nov 2 2014 Thomas Backlund <tmb@mageia.org> 3.14.23-1.mga5
1526 - update to 3.14.23
1527 - rebuild for unversioned kmod provides (mga#14235)
1528 - drop merged patch DN02
1529
1530 * Thu Oct 16 2014 Thomas Backlund <tmb@mageia.org> 3.14.22-1.mga5
1531 - update to 3.14.22
1532 - add patches:
1533 * FN01: mnt: Prevent pivot_root from creating a loop in the mount
1534 tree (CVE-2014-7970)
1535 * FN02: fs: Add a missing permission check to do_umount (CVE-2014-7975)
1536 - drop merged patces:
1537 * DM10-DM12, DN01
1538 - disable X86_SYSFB as it breaks KMS on some systems (mga#13098)
1539
1540 * Sun Sep 7 2014 Thomas Backlund <tmb@mageia.org> 3.14.18-1.mga5
1541 - update to 3.14.18
1542 - drop merged patches
1543 * AA01-AA45: -stable queue
1544
1545 * Sat Aug 30 2014 Thomas Backlund <tmb@mageia.org> 3.14.17-2.mga5
1546 - add patches:
1547 * AA01-AA45: stable queue fixes including some CVEs
1548 * CK02: update bfs scheduler to 454
1549 * DM10: md/raid6: avoid data corruption during recovery of double-degraded RAID6
1550 * DM11: md/raid10: fix memory leak when reshaping a RAID10
1551 * DM12: md/raid10: Fix memory leak when raid10 reshape completes
1552 * DM13: md/raid10: avoid memory leak on error path during reshape
1553 * DM14: md/raid10: always initialise ->state on newly allocated r10_bio
1554 * DN01: revert 'iwlwifi: dvm: don't enable CTS to self' as it is reported to
1555 cause a big packet loss on some hw
1556
1557 * Fri Aug 29 2014 Thomas Backlund <tmb@mageia.org> 3.14.17-1.mga5
1558 - update to 3.14.17
1559 - drop merged patches
1560 - update conflicts on dkms packages supporting 3.14 series kernels
1561 - update defconfigs
1562
1563 * Sun Jun 1 2014 Thomas Backlund <tmb@mageia.org> 3.14.5-1.mga5
1564 - update to 3.14.5
1565 - drop merged / obsolete patches:
1566 * AX10-AX11: restored mwait_idle()
1567 * AX16: AMD F16h Erratum792
1568 * DA21: sata_sis pm support
1569 * DI01-DI03: ALPS updates
1570 * DN01: asix bugfix
1571 * FS01-FS02: squashfs multi-decompressor support
1572 - update patches:
1573 * CK01: -ck1 patchset
1574 * FO01-FO09: overlayfs support
1575 * FR01: reiser4 support
1576 * KP01: TuxOnIce support
1577 - add patches:
1578 * DM10: md/raid10: call wait_barrier() for each request submitted
1579 * DN01: iwlwifi: mvm: disable beacon filtering
1580 * DS10: ALSA: hda - Fix onboard audio on Intel H97/Z97 chipsets
1581 * FK01: kernfs: add back missing error check in kernfs_fop_mmap()
1582 * MB13: ndiswrapper buildfix
1583 * BB01-BB03: BFQ io scheduler support (set as default)
1584 - update defconfigs
1585 - disable AUDITSYSCALL as its broken beyond repair
1586 (avoids CVE-2014-3917, and other upcoming CVEs)
1587
1588 * Fri May 16 2014 Thomas Backlund <tmb@mageia.org> 3.12.20-1.mga4
1589 - update to 3.12.20
1590 - drop merged patch: NI50
1591 - require fixed kmod
1592
1593 * Thu Apr 24 2014 Thomas Backlund <tmb@mageia.org> 3.12.18-1.mga4
1594 - update to 3.12.18
1595 - enable Intel P-state driver (mga#13080)
1596
1597 * Sat Apr 12 2014 Thomas Backlund <tmb@mageia.org> 3.12.17-1.mga4
1598 - update to 3.12.17
1599 - drop merged patches:
1600 * AA01-AA07, AX6, AX20, DG11, DN04, DN10, DU01, DU02, DU10, NR01
1601 . add patch:
1602 * NI50: net: ping: refcount issue in ping_init_sock() function (CVE-2014-2851)
1603 - enable FB_SIMPLE 0n x86_64 too
1604
1605 * Sun Feb 2 2014 Thomas Backlund <tmb@mageia.org> 3.12.9-1.mga4
1606 - update to 3.12.9
1607 - drop perged patches:
1608 * DA10, DH01, DM10-DM13, FS10-FS12, KF01
1609 - add patches:
1610 * AA01: e1000e: fix compiler warnings
1611 * AA02: e752x_edac: Fix pci_dev usage count
1612 * AA03: drm/nouveau/bios: fix offset calculation for BMPv1 bioses
1613 * AA04: kvm: x86: fix apic_base enable check
1614 * AA05: md/raid5: fix long-standing problem with bitmap handling on write failure
1615 * AA06: mm: hugetlbfs: fix hugetlbfs optimization
1616 * AA07: mm/mempolicy.c: fix mempolicy printing in numa_maps
1617 * AX20: x86, x32: Correct invalid use of user timespec in the kernel
1618 (CVE-2014-0038)
1619
1620 * Sun Jan 19 2014 Thomas Backlund <tmb@mageia.org> 3.12.8-1.mga4
1621 - update to 3.12.8
1622 - drop patches:
1623 * DA20: Marvell 88SE9170 SATA id, merged
1624 - add patches:
1625 * AX10, AX11: x86 idle: restore mwait_idle()
1626 * AX15: x86, quirks: Add workaround for AMD F16h Erratum 792
1627 * AX16: x86, cpu: Add workaround for AMD F16h Erratum 793 (CVE-2013-6885)
1628 * DA10: revert: 'ACPI: Add BayTrail SoC GPIO and LPSS ACPI IDs' as it
1629 causes boot hangs
1630 * DH10: hwmon: (coretemp) Fix truncated name of alarm attributes
1631 * DM10: md/raid5: Fix possible confusion when multiple write errors occur
1632 * DM11: md/raid10: fix two bugs in handling of known-bad-blocks
1633 * DM12: md/raid10: fix bug when raid10 recovery fails to recover a block
1634 * DM13: md: fix problem when adding device to read-only array with bitmap
1635 * DN01: ax88179_178a: Remove AX_MEDIUM_ALWAYS_ONE bit in
1636 AX_MEDIUM_STATUS_MODE register to avoid TX throttling
1637 * DN05: via-rhine: Fix tx_timeout handling
1638 * DN10: b43: fix the wrong assignment of status.freq in b43_rx()
1639 * DU10: revert: 'usbcore: set lpm_capable field for LPM capable root hubs'
1640 (breaks some usb devices)
1641 * FS10: vfs: Fix a regression in mounting proc
1642 * FS11: vfs: In d_path don't call d_dname on a mount point
1643 * FS12: writeback: Fix data corruption on NFS
1644 * KF01: fork: Allow CLONE_PARENT after setns(CLONE_NEWPID)
1645 * NR01: net: rds: fix per-cpu helper usage
1646
1647 * Sun Jan 12 2014 Thomas Backlund <tmb@mageia.org> 3.12.7-1.mga4
1648 - update to 3.12.7
1649 - update patches:
1650 * FR01: reiser4 support
1651 - drop patches:
1652 * FR02: reiser4 fix, merged in FR01
1653 - add patches:
1654 * DA01: ACPI: Blacklist Win8 OSI for some HP laptop 2013 models
1655 * DA02: ACPI: Blacklist Win8 OSI for Asus VivoBook X202E (mga#7857)
1656 * DA20: ahci: add PCI ID for Marvell 88SE9170 SATA controller
1657 * DA21: sata_sis: add missing PM support
1658 * DI01: Input: ALPS - change secondary device's name
1659 * DI02: Input: ALPS - add support for DualPoint device on Dell XT2
1660 * DI03: Input: ALPS - add support for "Dolphin" devices
1661 * DU01: xhci: Avoid infinite loop when sg urb requires too many trbs
1662 * DU02: xhci: Set scatter-gather limit to avoid failed block writes
1663
1664 * Fri Dec 20 2013 Thomas Backlund <tmb@mageia.org> 3.12.6-1.mga4
1665 - update to 3.12.6
1666 - drop merged patches:
1667 * AX10-AX13: kvm CVE fixes
1668 * FX02: xfs CVE fix
1669
1670 * Sun Dec 15 2013 Thomas Backlund <tmb@mageia.org> 3.12.5-1.mga4
1671 - update to 3.12.5
1672 - add patches:
1673 * AX10: kvm: rtc_status.dest_map out-of-bounds access (CVE-2013-4587)
1674 * AX11: kvm: division by zero in apic_get_tmcct() (CVE-2013-6367)
1675 * AX12: kvm: cross page vapic_addr access (CVE-2013-6368)
1676 * AX13: kvm: BUG_ON() in apic_cluster_id() (CVE-2013-6376)
1677 * FR02: reiser4: add user namespace support
1678 * FX01: xfs: add capability check to free eofblocks ioctl (CVE pending)
1679 * FX02: xfs: underflow bug in xfs_attrlist_by_handle() (CVE-2013-6382)
1680 - update and enable patches:
1681 * FR01: Reiser4 support
1682 * KP01: TuxOnIce support
1683
1684 * Wed Dec 4 2013 Thomas Backlund <tmb@mageia.org> 3.12.3-1.mga4
1685 - update to 3.12.3
1686 - drop merged patches:
1687 * AA01-AA15: stable queue fixes
1688 * DB10: bluetooth suspend/resume fix
1689 * MB13-MB15: ndiswrapper buildfixes
1690 - update patches:
1691 * CK01: -ck patchset including BFS 0.444
1692 - * MB10: ndiswrapper 1.59
1693 - add patches:
1694 * FS01-FS02: squashfs multi-decompressor support
1695
1696 * Sun Nov 17 2013 Thomas Backlund <tmb@mageia.org> 3.12.0-2.mga4
1697 - add -stable queue patches:
1698 * AA01: net/mlx4_core: Fix call to __mlx4_unregister_mac
1699 * AA02: net: sctp: do not trigger BUG_ON in sctp_cmd_delete_tcb
1700 * AA03: net: flow_dissector: fail on evil iph->ihl
1701 * AA04: virtio-net: correctly handle cpu hotplug notifier during resuming
1702 * AA05: xen-netback: use jiffies_64 value to calculate credit timeout
1703 * AA06: cxgb3: Fix length calculation in write_ofld_wr() on 32-bit architectures
1704 * AA07: tcp: gso: fix truesize tracking
1705 * AA08: tcp: fix SYNACK RTT estimation in Fast Open
1706 * AA09: tcp: only take RTT from timestamps if new data is acked
1707 * AA10: tcp: do not rearm RTO when future data are sacked
1708 * AA11: ipv6: ip6_dst_check needs to check for expired dst_entries
1709 * AA12: ipv6: reset dst.expires value when clearing expire flag
1710 * AA13: hyperv-fb: add pci stub
1711 * AA14: USB: add new zte 3g-dongle's pid to option.c
1712 * AA15: ALSA: hda - hdmi: Fix reported channel map on common default layouts
1713 * DB10: bluetooth: fix suspend/resume issue
1714
1715 * Mon Nov 4 2013 Thomas Backlund <tmb@mageia.org> 3.12.0-1.mga4
1716 - update to 3.12 final
1717
1718 * Mon Oct 14 2013 Thomas Backlund <tmb@mageia.org> 3.12.0-0.rc5.1.mga4
1719 - update to 3.12-rc5
1720 - drop patches:
1721 * DN40: bcma BCM43142 support (merged)
1722 - update patches:
1723 * FO01-FO09: overlayfs support
1724 - rediff patches:
1725 * NI10: netfilter IFWLOG support
1726 - add patches:
1727 * MB15: ndiswrapper buildfix for kernel 3.12
1728 - disable patches:
1729 * CK01: BFS scheduler (needs update to support 3.12)
1730 * FR01: reiser4 support (needs update to support 3.12)
1731 * KP01: TuxOnIce support (needs update to support 3.12)
1732 - update filelists
1733 - update defconfigs
1734 - update dkms conflicts
1735
1736 * Thu Oct 3 2013 Thomas Backlund <tmb@mageia.org> 3.10.15-1.mga4
1737 - update to 3.10.15
1738 - drop merged patches:
1739 * DG01, DG02, NM01, NS01, NS02, NW01
1740
1741 * Thu Aug 22 2013 Thomas Backlund <tmb@mageia.org> 3.10.9-1.mga4
1742 - update to 3.10.9
1743 - add patches:
1744 * DG01: drm/radeon: fix WREG32_OR macro setting bits in a register
1745 * DG02: drm/radeon/r7xx: fix copy paste typo in golden register setup
1746 * NM01: mac80211: add a flag to indicate CCK support for HT clients
1747 * NS01: net_sched: psched_ratecfg_precompute() improvements
1748 * NS02: net_sched: restore "linklayer atm" handling
1749 * NW01: ath9k: Enable PLL fix only for AR9340/AR9330
1750
1751 * Sat Aug 17 2013 Thomas Backlund <tmb@mageia.org> 3.10.7-1.mga4
1752 - update to 3.10.7
1753 - drop merged/obsolete patches:
1754 * AA01-AA17: stable queue fixes
1755 * DN01-DN04: alx backport
1756 * DN22: carl9170 fix
1757 - update patches:
1758 * CK01: -ck patchset including BFS 0.440
1759 * FO01-FO09: overlayfs support
1760 * FR01: Reiser4 support
1761 * KP01: TuxOnIce support
1762 - add patches:
1763 * MB14: ndiswrapper kernel 3.10 buildfix
1764 - add support for extended stable builds
1765 - update requires on firmwares and tools
1766 - add conflicts on too old dkms, firmware and
1767 tools to get better upgrade transactions
1768 - update defconfigs
1769 - update filelists
1770
1771 * Fri Jun 28 2013 Thomas Backlund <tmb@mageia.org> 3.9.8-1.mga4
1772 - update to 3.9.8
1773 - add patches:
1774 * AA01-AA17: -stable queue fixes
1775 * DN40: bcma: add support for BCM43142 (mga#9378, mga#10611)
1776 - drop merged patches:
1777 * DN10, DN21, DN30
1778
1779 * Fri Jun 21 2013 Thomas Backlund <tmb@mageia.org> 3.9.7-1.mga4
1780 - update to 3.9.7
1781 - drop merged patches:
1782 * AA01-AA82 (stable queue fixes)
1783 - add patches:
1784 * DN10: ath9k_htc: Handle IDLE state transition properly
1785 * DN30: rtl8192cu: Fix problem in connecting to WEP or WPA(1) networks
1786
1787 * Sun Jun 2 2013 Thomas Backlund <tmb@mageia.org> 3.9.4-1.mga4
1788 - update to 3.9.4
1789 - drop merged patches:
1790 * DI01, DI10-DI12, DI20-DI22, DI30-DI31, DI40-DI41
1791 * DI50-DI64, DI70-DI75, DM10, DN10-DN14, DS10
1792 - update patches:
1793 * CK01: -ck1 patchset including BFS 0.430
1794 * FR01: Reiser4 support for kernel 3.9
1795 * KP01: TuxOnIce 3.3 for kernel 3.9
1796 - rediff patches:
1797 * FO01, FO04: overlayfs support
1798 * MB02: 3rdparty tree merge
1799 - add patches:
1800 * DN04: fix up alx AR8161 breakage (mga #10079)
1801 * MB13: ndiswrapper buildfix for kernel 3.9
1802 - update filelists
1803 - update defconfigs
1804
1805 * Sun May 12 2013 Thomas Backlund <tmb@mageia.org> 3.8.13-1.mga3
1806 - update to 3.8.13
1807 - drop merged patches:
1808 * BD01: block discard fix
1809 * DG01-DG03: drm/radeon fixes
1810 * DG12: drm/cirrus fix
1811 * DG21-DG25: drm/i915 fixes
1812 - add patches:
1813 * DI20-DI22: Input: Cypress PS2 support
1814 * DI30-DI31: Input: Cypress APA support
1815 * DI40-DI41: Input: Synaptics bugfixes
1816 * DI50-DI64: Input: ALPS Rushmore and Dolphin V1 support
1817 * DI70-DI75: Input: Wacom: DTH-2242 and 0x10d support
1818
1819 * Wed May 8 2013 Thomas Backlund <tmb@mageia.org> 3.8.12-1.mga3
1820 - update to 3.8.12
1821 - update patches:
1822 * DN01-DN03: alx ethernet support including BigFoot e2200
1823 - add patches:
1824 * DG11: drm/cirrus: Correct register values for 16bpp
1825 * DG12: drm/cirrus: deal with bo reserve fail in dirty update path
1826 * DG21: Fix detection of base of stolen memory
1827 * DG22: Use MLC (l3$) for context objects
1828 * DG23: Add no-lvds quirk for Fujitsu Esprimo Q900
1829 * DG24: Fixup Oops in the pipe config computation
1830 * DG25: set CPT FDI RX polarity bits based on VBT
1831 * DN21: carl9170: fix frame drop and WARN due to minstrel_ht change
1832 * DN22: carl9170: remove fast channel change feature (unreliable)
1833 - drop merged patches:
1834 * AA01: TTY fix
1835 * DN04: alx fix
1836
1837 * Wed May 1 2013 Thomas Backlund <tmb@mageia.org> 3.8.11-1.mga3
1838 - update to 3.8.11
1839 - drop merged patches:
1840 * AA01-AA03: stable queue fixes
1841 - add patch:
1842 * DT01: tty: fix up atime/mtime mess, take three (Linus, upstream)
1843
1844 * Sat Apr 27 2013 Thomas Backlund <tmb@mageia.org> 3.8.10-1.mga3
1845 - update to 3.8.10
1846 - drop merged / obsolete patches:
1847 * AA01-AA20: 3.8.6+ stable fixes (merged)
1848 * DP01: disable-aspm-link check for ath5k (obsolete)
1849 - add patches:
1850 * AA01: aio: fix possible invalid memory access when DEBUG is enabled
1851 * AA02: TTY: do not update atime/mtime on read/write (CVE-2013-0160)
1852 * AA03: TTY: fix atime/mtime regression
1853 * BD01: block: fix max discard sectors limit
1854 * DG01: drm/radeon: don't use get_engine_clock() on APUs (mga #8077, fdo #62493)
1855 * DG02: drm/radeon: add some new SI PCI ids
1856 * DG03: drm/radeon: add new richland pci ids
1857 * DI10-DI12: intel_idle: add Haswell support
1858 - make EFI_VARS builtin on x86_64
1859 - set DEFAULT_NLS to utf8
1860
1861 * Sun Apr 7 2013 Thomas Backlund <tmb@mageia.org> 3.8.6-1.mga3
1862 - update to 3.8.6
1863 - update patches:
1864 * CK01: -ck patchset inclunding BFS 0.428
1865 * DN01-DN02: alx ethernet driver
1866 * F01-F13: overlayfs
1867 * KP01: TuxOnIce 3.3
1868 * MB10: ndiswrapper 1.58
1869 - drop merged/obsolete patches:
1870 * AA01-AA16: stable queue fixes for 3.6 series
1871 * CK02: BFS boot fix
1872 * DM50: DVB-S builfix
1873 * DM60: rttrack buildfix
1874 * MB13, MB14: ndiswrapper buildfixes
1875 - add patches:
1876 * AA01-AA20: 3.8 -stable queue fixes
1877 * DI01: Intel Wellsburg PCH i2c support
1878 * DM10: Intel Wellsburg PCH lpc support
1879 * DN03-DN04: alx buildfixes
1880 * DN10: net: asix: init ASIX AX88772B MAC from EEPROM
1881 * DN11: net: asix: handle packets crossing URB boundaries
1882 * DN12: usb/net/asix_devices: Add USBNET HG20F9 ethernet dongle (coling)
1883 * DN13: asix cleanup
1884 * DN14: net: ax88179_178a: add ASIX AX88179_178A USB 3.0/2.0 to gigabit
1885 ethernet adapter support
1886 * DP01: PCI: Remove not needed check in disable aspm link (fixes ath5k)
1887 * DS10: Intel Wellsburg PCH alsa support
1888 * FR01: Reiser4 support
1889 - update defconfigs
1890
1891 * Thu Nov 1 2012 Thomas Backlund <tmb@mageia.org> 3.6.5-3.mga3
1892 - add patch:
1893 * DN01, DN02: alx network driver
1894
1895 * Thu Nov 1 2012 Thomas Backlund <tmb@mageia.org> 3.6.5-2.mga3
1896 - add patch:
1897 * CK02: fix some booting issues with BFS sceduler
1898
1899 * Thu Nov 1 2012 Thomas Backlund <tmb@mageia.org> 3.6.5-1.mga3
1900 - update to 3.6.5
1901 - move -doc to Documentation group
1902 - add patches:
1903 * AA01-AA16: stable queue fixes
1904 * FE01: ext4: fix unjournaled inode bitmap modification
1905 (fixes possible data corruption bug)
1906 * NI14: ipt_IFWLOG buildfix
1907 - update patches:
1908 * CK01: -ck1 patchset
1909 * FO01-FO13: overlayfs
1910 * KP01: TyxOnIce
1911 - disable patches:
1912 * DA20: acpi shuttle-wmi video blacklist (broken)
1913 - enable ZRAM support
1914 - update filelists
1915 - update defconfigs
1916
1917 * Sat Sep 15 2012 Thomas Backlund <tmb@mageia.org> 3.5.4-1.mga3
1918 - update to 3.5.4
1919 - drop merged patches:
1920 * AA01-AA85, FE01, FU01
1921
1922 * Tue Sep 11 2012 Thomas Backlund <tmb@mageia.org> 3.5.3-2.mga3
1923 - add patches:
1924 * AA01-AA85: stable queue fixes
1925 * FO01-FO13: overlayfs support (from ubuntu)
1926 * FE01: ext3: Fix fdatasync() for files with only i_size changes (mga #7343)
1927 * FU01: udf: Fix data corruption for files in ICB
1928 - drop patches:
1929 * FU01-FU04: unionfs support (broken)
1930 - update defconfigs
1931
1932 * Mon Aug 27 2012 Thomas Backlund <tmb@mageia.org> 3.5.3-1.mga3
1933 - update to 3.5.3
1934
1935 * Thu Aug 16 2012 Thomas Backlund <tmb@mageia.org> 3.5.2-1.mga3
1936 - update to 3.5.2
1937 - update patches:
1938 * CK01: ck1 patchset for 3.5 series kernels including BFS 0.424
1939 * KP01: TuxOnIce 3.3 for 3.5 series kernels
1940 - drop merged patches:
1941 * AA01-AA13: (stable queue fixes)
1942 * BS01: silencing useless scsi ioctl warnings
1943 * CK02: BFS buildfix
1944 - add patches:
1945 * FU03, FU04: unionfs buildfixes for 3.5 series kernels
1946 - update filelists
1947 - update defconfigs
1948
1949 * Sat Jul 21 2012 Thomas Backlund <tmb@mageia.org> 3.4.6-2.mga3
1950 - make CONFIG_ATA_PIIX, CONFIG_BLK_DEV_SD and CONFIG_CRC_T10DIF
1951 builtin too, so it actually can boot without initrd
1952 - disable CONFIG_LOGO for less screen flickering during boot
1953
1954 * Fri Jul 20 2012 Thomas Backlund <tmb@mageia.org> 3.4.6-1.mga3
1955 - update to 3.4.6
1956 - drop patch:
1957 * DN25: ipw2x00: add support for nl80211 clients (merged)
1958 - update patch:
1959 * CK01: -ck3 patchset including BFS v0.424
1960 - add patches:
1961 * AA01-AA13: stable queue fixes
1962 * BS01: silence useless scsi ioctl warnings
1963 * CK02: fix BFS build with sched-nohz-rewrite added in 3.4.6
1964 - make theese config options builtin in order to be able to
1965 test booting without initrd:
1966 (see: https://wiki.mageia.org/en/Feature:BootSansRamdisk)
1967 CONFIG_SCSI_MOD, CONFIG_SCSI, CONFIG_ATA, CONFIG_SATA_AHCI,
1968 CONFIG_EXT3_FS, CONFIG_EXT4_FS, CONFIG_JBD, CONFIG_JBD2,
1969 CONFIG_BTRFS_FS, CONFIG_CRYPTO_CRC32C, CONFIG_CRC16,
1970 CONFIG_LIBCRC32C, CONFIG_ZLIB_DEFLATE
1971
1972 * Sun Jul 1 2012 Thomas Backlund <tmb@mageia.org> 3.4.4-2.mga3
1973 - enable EFI_STUB support (#6598)
1974
1975 * Wed Jun 27 2012 Thomas Backlund <tmb@mageia.org> 3.4.4-1.mga3
1976 - update to 3.4.4
1977 - drop patch:
1978 * AA01: 3.4.4-rc1 (merged)
1979
1980 * Wed Jun 20 2012 Thomas Backlund <tmb@mageia.org> 3.4.3-1.mga3
1981 - update to 3.4.3
1982 - add patch:
1983 * AA01: 3.4.4-rc1
1984 - drop patch:
1985 * FE01: ext4 uninit_bg fix (merged)
1986 - update patch:
1987 * CK01: ck2 patchset including BFS 0.423
1988
1989 * Sat Jun 9 2012 Thomas Backlund <tmb@mageia.org> 3.4.2-1.mga3
1990 - update to 3.4.2
1991 - add patch:
1992 * FE01: ext4: fix the free blocks calculation for ext3
1993 file systems w/ uninit_bg
1994
1995 * Mon Jun 4 2012 Thomas Backlund <tmb@mageia.org> 3.4.1-1.mga3
1996 - update to 3.4.1
1997 - drop merged patches:
1998 * DA60, DA61: ahci/ata ids
1999 * DG01-DG04, DG20-DG21, DG40-DG44, DG60: drm backports
2000 * DN10-DN11: ath5k stablilty fixes
2001 * DS20-DS24: sound fixes
2002 - update patches:
2003 * CK01: ck1 patchset including BFS 0.422
2004 * FU01: unionfs 2.5.11
2005 * KP01: tuxonice 3.2.1
2006 * NI10-NI11: netfilter IFWLOG support
2007 * NI16: netfilter psd support
2008 - add patches:
2009 * DM60: radio-rttrack buildfix
2010 * FU02: unionfs buildfix for kernel-3.4
2011 - drop patches:
2012 * DA50: prefer ata over ide hack, needs to be fixed properly
2013 * DN20: disabling powersave on rt2800usb
2014 * LK01: lib/Kconfig.debug text update
2015 - update defconfigs
2016 - update filelists
2017
2018 * Thu May 17 2012 Thomas Backlund <tmb@mageia.org> 3.3.6-2.mga2
2019 - revert switching server kernels to SLAB allocator at it fails to boot
2020 with BFS scheduler (reported/confirmed by Charles A Edwards.on -dev ml)
2021 - add patches:
2022 * DN25: ipw2x00: add support for nl80211 clients like Network Manager (#5720)
2023 * DS20: ALSA: echoaudio: Remove incorrect part of assertion
2024 * DS21: ALSA: HDA: Lessen CPU usage when waiting for chip to respond
2025 * DS22: ALSA: hda/realtek - Add missing CD-input pin for MSI-7350 mobo
2026 * DS23: ALSA: hda/idt - Fix power-map for speaker-pins with some HP laptops
2027
2028 * Sat May 12 2012 Thomas Backlund <tmb@mageia.org> 3.3.6-1.mga2
2029 - update to 3.3.6
2030 - drop merged patches:
2031 * AA01-AA32: stable queue fixes
2032 * DP10-DP13: samsung-laptop dmitable addons
2033 - switch server kernels back to SLAB allocator as it performs better
2034 on bigger server hardware and workloads
2035
2036 * Thu May 10 2012 Thomas Backlund <tmb@mageia.org> 3.3.5-1.mga2
2037 - update to 3.3.5
2038 - drop merged patches:
2039 * DN15-DN17: iwlwifi fixes
2040 - add patches from stable queue
2041 * AA01-AA32: fixes all over
2042
2043 * Sat Apr 28 2012 Thomas Backlund <tmb@mageia.org> 3.3.4-1.mga2
2044 - update to 3.3.4
2045 - require dracut >= 017-9
2046 - add patches:
2047 * DN16: iwlwifi: use 6000G2B for 6030 device series
2048 * DN17: iwlwifi: fix hardware queue programming
2049
2050 * Mon Apr 23 2012 Thomas Backlund <tmb@mageia.org> 3.3.3-1.mga2
2051 - update to 3.3.3
2052 - add patches:
2053 * BF01: floppy: disable pnp autoloading
2054 * DN10: ath5k: do not stop queues for full calibration
2055 * DN11: ath5k: do not re-run AGC calibration periodically
2056 * DN15: iwlwifi: use correct released ucode version
2057 - update patch:
2058 * KP01: TuxOnIce 3.2.1 for kernel-3.3
2059
2060 * Tue Apr 03 2012 Thomas Backlund <tmb@mageia.org> 3.3.1-1.mga2
2061 - update to 3.3.1
2062 - drop merged patches:
2063 * DM51, SR01-SR03
2064 - update patch:
2065 * CK01: -ck1 patchset including BFS v0.420
2066 - add patches:
2067 * DA50: ata: prefer ata drivers over ide drivers when both are built (Anssi)
2068 * DA60-DA61: ata: add ide/ahci/raid mode support for Intel Lynx Point chipset
2069 * DG01-DG04: drm: add upstream drm changes to support gpu driver backports
2070 * DG20, DG21: drm/radeon: backport support for Southern Islands (HD7xxx)
2071 GPUs and Trinity APUs
2072 * DG40-DG44: drm/nouveau: backport Kepler (GTX6xx) support
2073 * DG60: drm/i915: add Ivy Bridge GT2 Server entries
2074 - update defconfigs
2075
2076 * Mon Mar 19 2012 Thomas Backlund <tmb@mageia.org> 3.3.0-1.mga2
2077 - update to 3.3 final
2078 - add patches:
2079 * DM50: media: fix initialization on Hauppauge WinTV Nova HD-S2
2080 and similar hardware
2081 * DM51: media/tda10071: correct delivery system to DVB-S/S2
2082 - update defconfigs
2083
2084 * Sun Mar 11 2012 Thomas Backlund <tmb@mageia.org> 3.3.0-0.rc7.1.mga2
2085 - update to 3.3-rc7
2086
2087 * Wed Mar 7 2012 Thomas Backlund <tmb@mageia.org> 3.3.0-0.rc6.1.mga2
2088 - update to 3.3-rc6
2089 - update patches:
2090 * FU01: unionfs 2.5.11
2091 * MB10, MB13, MB14: ndiswrapper 1.57
2092 - rediff patches:
2093 * NI15, NI16: netfilter psd support
2094 * patch disabling mrproper in -devel rpms
2095 - disable patch:
2096 * CK01: -ck1 patchset including BFS sceduler (needs update to 3.3 series)
2097 - update defconfigs
2098 - update filelists
2099
2100 * Thu Mar 1 2012 Thomas Backlund <tmb@mageia.org> 3.2.9-1.mga2
2101 - update to 3.2.9
2102 - require dracut >= 017-1
2103 - drop merged patches:
2104 * DG01, DP01, DU01, NM01
2105 - add patches:
2106 * SR01-SR03: fix nonworking r8172u wireless driver in staging (#4491)
2107
2108 * Sat Feb 25 2012 Thomas Backlund <tmb@mageia.org> 3.2.7-1.mga2
2109 - update to 3.2.7
2110 - drop merged patches AA01-AA28
2111 - add patches:
2112 * DG01: drm/radeon/kms: fix MSI re-arm on rv370+
2113 * DP01: PCI: workaround hard-wired bus number
2114 * DS20, DS21: fix nonworking r8172u wireless driver in staging (#4491)
2115 * DU01: xhci: Fix oops caused by more USB2 ports than USB3 ports
2116 * NM01: mac80211: Fix a rwlock bad magic bug
2117
2118 * Thu Feb 16 2012 Thomas Backlund <tmb@mageia.org> 3.2.6-1.mga2
2119 - update to 3.2.6
2120 - add current stable queue (28 fixes, AA01-AA28)
2121 - require dracut >= 016-1 for xz compressed modules support and
2122 other needed fixes
2123 - compress modules with xz
2124
2125 * Tue Feb 7 2012 Thomas Backlund <tmb@mageia.org> 3.2.5-1.mga2
2126 - update to 3.2.5
2127 - drop merged patch
2128 * DP01: ASPM rework
2129
2130 * Thu Jan 26 2012 Thomas Backlund <tmb@mageia.org> 3.2.2-1.mga2
2131 - update to 3.2.2 (CVE-2012-0056)
2132 - update patches:
2133 * CK01: Con Kolivas 3.2-ck1 patchset
2134 * KP01: TuxOnIce 3.2.1
2135 - require dracut instead of mkinitrd
2136 - require module-init-tools >= 3.6-14 for xz support
2137
2138 * Sun Jan 15 2012 Thomas Backlund <tmb@mageia.org> 3.2.1-1.mga2
2139 - update to 3.2.1
2140
2141 * Thu Jan 5 2012 Thomas Backlund <tmb@mageia.org> 3.2.0-1.mga2
2142 - update to 3.2
2143 - add patches:
2144 * FU02: fix unionfs build with 3.2 series kernels
2145 * MB13: fix ndiswrapper build with 3.2 series kernels
2146 - update patches:
2147 * CK01: BFS scheduler 0.416
2148 - rediff patches:
2149 * DP11, MB02, NI11, NI16, Source2
2150 - drop patches:
2151 * FB01: btrfs fix, merged
2152 - update filelists and defconfigs
2153
2154 * Thu Dec 22 2011 Thomas Backlund <tmb@mageia.org> 3.1.6-1.mga2
2155 - update to 3.1.6
2156 - drop patch DS01 (merged)
2157 - trigger dkms build in posttrans so modules get built at kernel install
2158 instead of at boot (speeds up boot time with new kernel)
2159 - update desktop(586) & laptop summaries and descriptions to point out that
2160 only 3-3.5GB RAM is detected on 32bit, and that server kernel is needed to
2161 fully support 4GB or more
2162 - switch transparent hugepages from on by default to madvise (only enabled
2163 for apps that requests it), as it fixes desktop freeze when accessing
2164 slow media such as usb (thanks to fbui/mdv mail on @cooker ml).
2165
2166 * Fri Dec 9 2011 Thomas Backlund <tmb@mageia.org> 3.1.5-1.mga2
2167 - update to 3.1.5
2168 - drop merged patches:
2169 * DG01-DG06, FX01-FX06
2170 - add patch:
2171 * DS01: ALSA: hda/realtek - Fix Oops in alc_mux_select()
2172 - clean spec: drop buildroot and defattr
2173
2174 * Tue Dec 6 2011 Thomas Backlund <tmb@mageia.org> 3.1.4-3.mga2
2175 - fix patch NI12: IFWLOG: fix return value of checkentry
2176 (not properly modified in 2.6.35+ patch, blino, #3594)
2177 - rebuild with GCC-4.6.2
2178
2179 * Wed Nov 30 2011 Thomas Backlund <tmb@mageia.org> 3.1.4-2.mga2
2180 - update patch:
2181 * CK01: upstream 3.1.0-ck2 including BFS 0.415
2182
2183 * Tue Nov 29 2011 Thomas Backlund <tmb@mageia.org> 3.1.4-1.mga2
2184 - update to 3.1.4
2185 * reverts usb patch that broke isochronous devices
2186 (i.e. webcam, audio, or other streaming devices)
2187
2188 * Mon Nov 28 2011 Thomas Backlund <tmb@mageia.org> 3.1.3-1.mga2
2189 - update to 3.1.3
2190 - add patches:
2191 * DG01: i915: Fix inconsistent backlight level during disabled
2192 * DG02: drm: fix integer overflow in drm_mode_dirtyfb_ioctl()
2193 * DG03: radeon/kms: fix up gpio i2c mask bits for r4xx for real
2194 * DG04: i915: Ivybridge still has fences
2195 * DG05: i915: Turn on a required 3D clock gating bit on Sandybridge
2196 * DG06: i915: Turn on another required clock gating bit on Sandybridge
2197 * DP01: pci: rework ASPM disable code (brings power usage back down
2198 to 2.6.37 level)
2199 * FX01: don't serialise direct IO reads on page cache checks
2200 (fixes performance regression introduced in 2.6.38)
2201 * FX02: avoid direct I/O write vs buffered I/O race
2202 * FX03: return -EIO when xfs_vn_getattr() failed
2203 * FX04: fix buffer flushing during unmount
2204 * FX05: fix possible memory corruption in xfs_readlink
2205 * FX06: use doalloc flag in xfs_qm_dqattach_one()
2206 - update patches:
2207 * FU01: unionfs 2.5.10 for 3.1.3
2208 * MB02: merge 3rdparty support
2209 * MB10-MB12: ndiswrapper 1.57-rc1
2210 - drop patches:
2211 * DS15: its replaced by SND_HDA_PREALLOC_SIZE config option
2212 * MB13-MB17: ndiswrapper fixes, merged
2213 - disable patches:
2214 * KP01: TuxOnIce support, currently broken
2215 - dont ship openrisc arch files
2216 - update defconfigs
2217
2218 * Tue Oct 25 2011 Thomas Backlund <tmb@mageia.org> 3.0.8-1.mga2
2219 - update to 3.0.8
2220 * drop merged patch: DM20
2221 - enable PM_RUNTIME and USB_SUSPEND
2222
2223 * Tue Oct 18 2011 Thomas Backlund <tmb@mageia.org> 3.0.7-1.mga2
2224 - update to 3.0.7
2225 - update patch:
2226 * CK01: 3.0.7-ck1 including BFS 0.413
2227 - re-enable usblp as it is needed by both usb-pp adapters and some printers
2228 (mga #2240, #2264) (cups is patched to work with both usblp and libusb)
2229
2230 * Tue Oct 04 2011 Thomas Backlund <tmb@mageia.org> 3.0.6-1.mga2
2231 - update to 3.0.6
2232 - add patch:
2233 * DM20: fix boot hang on uvc webcam init (mga #2425)
2234
2235 * Tue Aug 30 2011 Thomas Backlund <tmb@mageia.org> 3.0.4-1.mga2
2236 - update to 3.0.4
2237 - drop merged patch: AA01
2238
2239 * Fri Aug 19 2011 Thomas Backlund <tmb@mageia.org> 3.0.3-1.mga2
2240 - update to 3.0.3
2241 - update patches:
2242 * CK01: Con Kolivas -ck patchset including BFS
2243 * FU01: unionfs 2.5.9.2
2244 * KP01: TuxonIce 3.2
2245 - drop merged patches:
2246 * CK02, DA60-DA61, DG10-DG14, DN08, DN15-DN19, DP05-DP08
2247 * DP20-DP26, DP30, DV11, FU02-FU03, MK01, NI30-NI31
2248 - add patches:
2249 * AA01: genirq: Fix wrong bit operation
2250 * DP10-DP12: samsung-laptop: support nc110, nc210, r700, x520
2251 * DP13: samsung-laptop: fix support for older N150, N210, N220
2252 * FB01: btrfs: btrfs_calc_avail_data_space: cope with no read_write devices
2253 * MB17: ndiswrapper buildfix for 3.0
2254 * MC84: viahss buildfix for 3.0
2255 - rediff patches:
2256 * NI16: netfilter psd mdv/mga modifications
2257 - disable patches:
2258 * DV01-DV02: framebuffer oops fixes (should not be needed anymore)
2259 * FR01: reiser4 support (broken)
2260 - adapt spec for 3.0 series version changes
2261 - change kernel-tmb-source to noarch
2262 - build with -s(ilent) to only log varnings and errors
2263 - update defconfigs
2264
2265 * Sun Jun 19 2011 Thomas Backlund <tmb@mageia.org> 2.6.38.8-1.mga1
2266 - update to 2.6.38.8 (CVE-2011-1017)
2267 - drop merged patches:
2268 * AA01, DP15
2269 - add patches:
2270 * CK02: update bfs scheduler to 0.406
2271 * MK01: ksm: fix race between ksmd and exiting task (CVE-2011-2183)
2272 - add mgaver to 'uname -r'
2273
2274 * Sun May 22 2011 Thomas Backlund <tmb@mageia.org> 2.6.38.7-1.mga1
2275 - update to 2.6.38.7 (CVE-2011-1770, CVE-2011-1776, CVE-2011-1927)
2276 - drop merged patches:
2277 * DG20-DG24
2278 - update patches:
2279 * FU01, FU03: rollback unionfs to a working 2.5.8
2280 - add patches:
2281 * AA01: block: rescan partitions on invalidated devices on -ENOMEDIA too
2282 * DN17: r8169: add a new chip for RTL8105
2283 * DN18: r8169: add a new chip for RTL8168DP
2284 * DN19: r8169: add support for RTL8168E/RTL8111E
2285
2286 * Wed May 18 2011 Thomas Backlund <tmb@mageia.org> 2.6.38.6-2.mga1
2287 - disable xz module compression again as not all tools/utils can cope
2288 with it (can be enabled with '--with modxz' buildtime flag)
2289
2290 * Thu May 12 2011 Thomas Backlund <tmb@mageia.org> 2.6.38.6-1.mga1
2291 - enable xz module compression on 2011.0
2292 - update to 2.6.38.6
2293 - drop merged patches:
2294 * AX01
2295 - add patches:
2296 * DG20: drm/radeon/kms: add pci id to acer travelmate quirk for 5730
2297 * DG21: drm/radeon/kms: fix gart setup on fusion parts (v2) backport
2298 * DG22: drm/i915/dp: Be paranoid in case we disable a DP before it is attached
2299 * DG23: drm/i915/lvds: Only act on lid notify when the device is on
2300 * DG24: drm/i915: Release object along create user fb error path
2301 * DP30: revert: "dell-laptop: Toggle the unsupported hardware killswitch"
2302 as it causes regressions on existing hw (reported by Colin Guthrie)
2303 * SM02: add support for compressing modules with xz
2304 - clean /lib/modules tree on uninstall
2305 - disable ACPI_PROCFS_POWER as its obsoleted by the sysfs interface
2306 - drop hardcoded vendor references from summarys and descriptions (#1161)
2307 - drop warnings about being experimental kernel
2308
2309 * Wed May 5 2011 Thomas Backlund <tmb@mageia.org> 2.6.38.5-1.mga1
2310 - update to 2.6.38.5
2311 - add patches:
2312 * AX01: x86, AMD: K8 Rev.A-E processors are subject to erratum 400
2313 * AX05: x86, 32bit: raise default vmalloc area to 192MB (Anssi, #904)
2314 * DN15: r8169: add support for RTL8105E
2315 * DN16: r8169: be verbose when unable to load firmware
2316 * DN20: disable powersaving on rt2800 as it is broken (noted by rtp)
2317 * DP06-DP08: samsung-laptop: add support for N230, R410P
2318 * DP20-DP26: hp-wmi: add support for rfkill on HP Mini 5102 (Anssi)
2319 - update patches:
2320 * FU01: unionfs 2.5.9
2321 - drop patches:
2322 * FU03: unionfs oops fix (obsolete)
2323 - enable DEBUG_RODATA and DEBUG_SET_MODULE_RONX (tv)
2324
2325 * Sun Apr 24 2011 Thomas Backlund <tmb@mageia.org> 2.6.38.4-1.mga1
2326 - update to 2.6.38.4
2327 - update patches:
2328 * DG10: drm/i915: Fix tiling corruption from pipelined fencing
2329 * NI30, NI31: ipset 6.4
2330 - add patches:
2331 * DA60, DA61: ide/ahci/raid support for Intel Panther Point
2332 * DF01: add old ieee1394 aliases to new firewire stack
2333 * DG11: drm: Retry i2c transfer of EDID block after failure
2334 * DG12: drm/i915/dp: Sanity check eDP existence
2335 * DG13: drm/i915: Restore missing command flush before interrupt on BLT ring
2336 * DG14: drm/i915: Avoid unmapping pages from a NULL address space
2337 * DG15: drm/i915: Enable GPU semaphores by default
2338 * DM01: add dm-raid45 aliases to the new dm-raid target
2339 * DP15: intel_ips: fix monitor thread to use TASK_INTERRUPTIBLE
2340
2341 * Sat Apr 16 2011 Thomas Backlund <tmb@mageia.org> 2.6.38.3-1.mga1
2342 - update to 2.6.38.3
2343 - drop merged patches
2344
2345 * Mon Apr 11 2011 Thomas Backlund <tmb@mageia.org> 2.6.38.2-2.mga1
2346 - add -stable queue patches (31 fixes)
2347 - update patches:
2348 * CK01: Con Kolivas -ck3 patchset including bfs 0.400
2349 * FR01: reiser4 for 2.6.38 final
2350 - drop patches:
2351 * FR02: reiser4 buildfix (merged)
2352
2353 * Tue Mar 29 2011 Thomas Backlund <tmb@mageia.org> 2.6.38.2-1.mga1
2354 - update to 2.6.38.2
2355 - drop merged patches:
2356 * AX01, AX10, FS01-FS03, LD01-LD02 (xz support)
2357 * CK02 (-ck1 patchset buildfix)
2358 * DA01-DA03 (ahci ids)
2359 * DG01-DG02 (gpu fixes)
2360 * DM10-DM14 (dm-raid45, replaced by new dm-raid target)
2361 * DM20 (dm-crypt multicore support)
2362 * DP06 (samsung-laptop buildfix)
2363 * KB01 (headers_install_all export fix)
2364 * SE01 (staging fix)
2365 - rediff patches:
2366 * AI01 (Toshiba Equium A60 fix)
2367 * DV01-DV02 (framebuffer oops and deadlock fixes)
2368 * MB02 (3rdparty merge)
2369 - update patches:
2370 * CK01: Con Kolivas -ck1 patchset including BFS v363
2371 * DP05: update samsung-laptop to the one being merged in
2372 2.6.39 (replaces old samsung-backlight)
2373 * FR01-FR02: reiser4 support
2374 * FU01-FU03: unionfs 2.5.8
2375 * KP01: TuxOnIce
2376 * S2: disable mrproper on -devel rpms
2377 - add patches:
2378 * DA20: acpi video blacklist (needed for shuttle-wmi)
2379 * DG10: drm/i915: Fix pipelined fencing
2380 * DP10: shuttle-wmi support
2381 * MB16: ndiswrapper buildfix
2382 - update defconfigs and filelists
2383
2384 * Sun Mar 20 2011 Thomas Backlund <tmb@mageia.org> 2.6.37.4-1.mga1
2385 - update to 2.6.37.4 (CVE-2011-1013, CVE-2011-1019, CVE-2011-1076)
2386 - drop merged patch:
2387 * NI01
2388 - add patches:
2389 * AX10: x86, quirk: Fix SB600 revision check
2390 * DA01: ahci: AHCI mode SATA patch for Intel DH89xxCC DeviceIDs
2391 * DA02: ahci: AHCI mode SATA patch for Intel Patsburg SATA RAID controller
2392 * DA03: ahci: recognize Marvell 88se9125 PCIe SATA 6.0 Gb/s controller
2393 * DG01: drm: Hold the mode mutex whilst probing for sysfs status
2394 * DG02: drm/i915: Fix calculation of backlight value in combined mode
2395 - drop S5, not needed anymore as we ship unprepared kernel-source
2396
2397 * Sat Jan 22 2011 Thomas Backlund <tmb@mageia.org> 2.6.37.2-1.mga1
2398 - update to 2.6.37.2
2399 - rediff patch:
2400 * CK01: Con Kolivas -ck1 patchset including BFS
2401 - add patches:
2402 * CK02: adapt BFS for sched changes introduced in 2.6.37.1
2403 * AX01, FS01-FS03, LD01-LD02: XZ support for kernel, modules,
2404 initrd and squashfs (from upstream 2.6.38-rc1)
2405 * NI01: tcp: fix inet_twsk_deschedule() locking
2406 - update patches:
2407 * DV01, DV02: framebuffer deadlock and oops fixes (Herton, main kernel)
2408 * KP01: TuxOnIce 3.2rc2
2409 - drop patch:
2410 * DV10: squashfs lzma support (obsoleted by XZ support)
2411
2412 * Thu Jan 6 2011 Thomas Backlund <tmb@mandriva.org> 2.6.37-2mdv
2413 - add patch:
2414 * DV01: Fix Oops/race condition in Framebuffer with plymouthd
2415 (alissy/herton, main kernel)
2416 - update patch:
2417 * CK01: Con Kolivas ck patchset including BFS v363
2418 - drop patches:
2419 * CK02, CK03, CK05 (merged)
2420 * CK04 (not needed anymore)
2421
2422 * Wed Jan 5 2011 Thomas Backlund <tmb@mandriva.org> 2.6.37-1mdv
2423 - update to 2.6.37 final
2424 - make backport to 2010.1 possible
2425 - drop rpmtags
2426
2427 * Wed Dec 29 2010 Thomas Backlund <tmb@mandriva.org> 2.6.37-0.rc8.1mdv
2428 - update to 2.6.37-rc8
2429
2430 * Fri Dec 24 2010 Thomas Backlund <tmb@mandriva.org> 2.6.37-0.rc7.2.3mdv
2431 - update to 2.6.37-rc7-git2
2432 - drop patch:
2433 * DG01 (merged)
2434 - update patches:
2435 * FR01: reiser4 support
2436 * FR02: reiser4 buildfix for 2.6.37
2437 - add patch:
2438 * FR03: reiser4: fix entd_flush usage
2439
2440 * Wed Dec 22 2010 Thomas Backlund <tmb@mandriva.org> 2.6.37-0.rc7.2mdv
2441 - add patch:
2442 * DG01: gpu fixes from upstream, queued for 2.6.37 final
2443 - update patch:
2444 * KP01: TuxOnIce 3.2-rc2+ for 2.6.37-rc7
2445
2446 * Wed Dec 22 2010 Thomas Backlund <tmb@mandriva.org> 2.6.37-0.rc7.1mdv
2447 - update to 2.6.37-rc7
2448 - add patch:
2449 * CK05: adapt BFS for calc_global_load change
2450
2451 * Thu Dec 16 2010 Thomas Backlund <tmb@mandriva.org> 2.6.37-0.rc6.1mdv
2452 - update to 2.6.37-rc6
2453
2454 * Tue Dec 7 2010 Thomas Backlund <tmb@mandriva.org> 2.6.37-0.rc5.1mdv
2455 - update to 2.6.37-rc5
2456
2457 * Tue Nov 30 2010 Thomas Backlund <tmb@mandriva.org> 2.6.37-0.rc4.1mdv
2458 - update to 2.6.37-rc4
2459 - update patches:
2460 * DM20: dm-crypt: scale to multiple CPUs v5
2461 * NI30: ipset 4.4 (herton, main kernel)
2462 - drop patch:
2463 * NI31: ipset buildfix (merged)
2464
2465 * Thu Nov 25 2010 Thomas Backlund <tmb@mandriva.org> 2.6.37-0.rc3.2.1mdv
2466 - update to 2.6.377-rc3-git2
2467 - drop merged patches:
2468 * AM01, BC01, BL01-BL06, DC01, DC02, DC10, DF01-DF04, DG01-DG03, DG10
2469 * DI01, DS01, DS02, DS04, DS40, DS41, DV01, FB01, FE01, FN01-FN04
2470 * KR01, KS01, NI40, NI41, NM01-NM16, NW01-NW03, Source6
2471 - update patches:
2472 * FU01: unionfs 2.5.7 for 2.6.37-rc1
2473 * KP01: TuxOnIce 3.2-rc2 for 2.6.37-rc3
2474 - rediff patches:
2475 * CK01, Source2
2476 - add patches:
2477 * CK03: BFS buildfix for 2.6.37
2478 * CK04: revert kernel/stop_machine.c to 2.6.36 level (needed for BFS)
2479 * DM14: dm-raid45 buildfix for 2.6.37
2480 * FR02: reiser4 buildfix for 2.6.37
2481 * MC94: vloopback buildfix for 2.6.37
2482 * NI13: netfilter IFWLOG buildfix for 2.6.37
2483 * SE01: easycap buildfix for 2.6.37
2484 - update defconfigs
2485
2486 * Tue Nov 23 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36.1-2mdv
2487 - add patches:
2488 * BL01: block: Ensure physical block size is unsigned int
2489 * BL02: block: fix accounting bug on cross partition merges
2490 * BL03: block: Fix race during disk initialization
2491 * BL04: block: limit vec count in bio_kmalloc() and bio_alloc_map_data()
2492 * BL05: block: take care not to overflow when calculating total iov length
2493 * BL06: block: check for proper length of iov entries in blk_rq_map_user_iov()
2494 * DS04: Alsa fixes queued for 2.6.37-rc4
2495 * DV01: viafb: fix i2c_transfer error handling
2496 * FN01: NFSv4: Don't call nfs4_reclaim_complete() on receiving
2497 NFS4ERR_STALE_CLIENTID
2498 * FN02: NFSv4: Don't call nfs4_state_mark_reclaim_reboot()
2499 from error handlers
2500 * FN03: NFSv4: Fix open recovery
2501 * FN04: NFS: Don't SIGBUS if nfs_vm_page_mkwrite races with
2502 a cache invalidation
2503 * NI40: irda: Fix parameter extraction stack overflow
2504 * NI41: irda: Fix heap memory corruption in iriap.c
2505 * NM01: mac80211: minstrel_ht A-MPDU fix
2506 * NM02: mac80211: fix possible null-pointer de-reference
2507 * NM03: mac80211: fix channel assumption for association done work
2508 * NM04: mac80211: fix offchannel assumption upon association
2509 * NM05: mac80211: Fix signal strength average initialization for CQM events
2510 * NM06: mac80211: reset connection idle when going offchannel
2511 * NM07: mac80211: add helper for reseting the connection monitor
2512 * NM08: mac80211: make the beacon monitor available externally
2513 * NM09: mac80211: send last 3/5 probe requests as unicast
2514 * NM10: mac80211: disable beacon monitor while going offchannel
2515 * NM11: mac80211: use correct station flags lock
2516 * NM12: mac80211: clear txflags for ps-filtered frames
2517 * NM13: mac80211: reset probe send counter upon connection timer reset
2518 * NM14: mac80211: Fix ibss station got expired immediately
2519 * NM15: mac80211: don't sanitize invalid rates
2520 * NM16: mac80211: delete AddBA response timer
2521 * NW01: cfg80211: fix BSS double-unlinking
2522 * NW02: cfg80211: fix locking
2523 * NW03: cfg80211: fix regression on processing country IEs
2524
2525
2526 * Tue Nov 23 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36.1-1mdv
2527 - make kernel-source require diffutils as it uses both diff and cmp
2528 during build (mdv #61719)
2529 - update to 2.6.31.1
2530 - add patches:
2531 * DG03: update gpu tree to 2.6.37-rc3 level
2532 * DI01: add intel_idle fixes (Len Brown, LKML)
2533 * FE01: ext4: fix NULL pointer dereference in print_daily_error_info()
2534 * KS01: sched, cgroup: Fixup broken cgroup movement (Peter Zijlstra, LKML)
2535 - update patch:
2536 * FR01: reiser4 for 2.6.36
2537 - drop patch:
2538 * AA01
2539
2540 * Sat Nov 20 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36-5mdv
2541 - add patch:
2542 * AA01: 2.6.36.1-rc1
2543
2544 * Thu Nov 18 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36-4mdv
2545 - add patches:
2546 * CK02: bfs357 worker_fix triggering BUG_ON with wireless
2547 * DC02: update agp tree to 2.6.37-rc2 level
2548 * DG02: update gpu tree to 2.6.37-rc2 level
2549 * DS02: update Alsa tree to 2.6.37-rc2 level
2550 * FB01: btrfs tree from 2.6.37-rc1
2551 * FB02: btrfs: close_bdev_exclusive() should use the same @flags as
2552 the matching open_bdev_exclusive() (Tejun Heo, LKML)
2553 - update patches:
2554 * FU01: unionfs 2.5.7
2555
2556 * Mon Nov 1 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36-3mdv
2557 - update patch:
2558 * KP01: TuxOnIce 3.2-rc2 for 2.6.36 final
2559 - add patches:
2560 * DC01: agp tree from 2.6.37-rc1
2561 * DC10: changes from 2.6.37-rc1 needed for updated agp tree
2562 * DG01: gpu tree from 2.6.37-rc1
2563 * DG10: changes from 2.6.37-rc1 needed for updated gpu tree
2564 * DS01: Alsa tree from 2.6.37-rc1
2565 - add firewire (JuJu) fixes from upstream (Clemens Ladisch):
2566 * DF01: firewire: ohci: fix buffer overflow in AR split packet handling
2567 * DF02: firewire: ohci: fix race in AR split packet handling
2568 * DF03: firewire: ohci: avoid reallocation of AR buffers
2569 * DF04: firewire: ohci: fix race when reading count in AR descriptor
2570 - add kbuild patch:
2571 * KB01: kbuild: do not remove a.out, kvm.h and kvm_para.h on headers_install_all
2572 (Kirill A. Shutemov, LKML)
2573 - drop merged patches:
2574 * DS05-DS07
2575
2576 * Sat Oct 23 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36-2mdv
2577 - add patches:
2578 * AM01: microblaze: fix build with make 3.82
2579 * BC01: cfq: improve fsync performance for small files
2580 * DS06: ALSA: hda - Fix wrong TLV mute bit for STAC/IDT codecs
2581 (Patch by Takashi Iwai, requested by Colin Guthrie)
2582 * DS07: ALSA: tlv - Define numbers in sound/tlv.h (Takashi Iwai)
2583 - update patches:
2584 * CK01: Con Kolivas -ck1 patchset including BFS v357
2585
2586 * Thu Oct 21 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36-1mdv
2587 - update to 2.6.36 final
2588 - update patch:
2589 * DM20: dm-crypt: scale to multiple cpus v3
2590 * DS05: ALSA: HDA: Sigmatel: work around incorrect master muting
2591 (patch by Clemens Ladisch, requested by Colin Guthrie)
2592 * FS10: make squashfs lzma support coexist with lzo
2593 - drop patches:
2594 * DM21-DM23: (merged in DM20)
2595 * FS09: revert of squashfs lzo support (not needed anymore)
2596 - make doc subpackage noarch
2597
2598 * Fri Oct 15 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36-0.rc8.1.1mdv
2599 - update to 2.6.36-rc8-git1
2600 - drop merged patches:
2601 * BE01, DG01, DI01, DM30, FX01
2602 - add patch:
2603 * DS05: alsa: patch_sigmatel: fix master playback volume mute
2604 (patch by Clemens Ladisch, requested by Colin Guthrie)
2605
2606 * Thu Oct 7 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36-0.rc7.1mdv
2607 - update to 2.6.36-rc7
2608 - drop merged patches:
2609 * AA01
2610 - add patches:
2611 * BE01: elevator: fix oops on early call to elevator_change() (upstream git)
2612 * DG01: drm: don't drop handle reference on unload (upstream git)
2613 drm/ttm: Fix two race conditions + fix busy codepaths (upstream git)
2614 * DI01: several input fixes from upstream git maybe ending up in 2.6.36 final
2615 * DM30: several media fixes from upstream git maybe ending up in 2.6.36 final
2616 * FX01: xfs: properly account for reclaimed inodes (upstream git)
2617 * KR01: rcu: move check from rcu_dereference_bh to rcu_read_lock_bh_held (upstream git)
2618
2619 * Sat Oct 2 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36-0.rc6.2mdv
2620 - add patches:
2621 * AA01: 2.6.36-rc6-git2
2622 * FU02: unionfs buildfix for 2.6.36
2623 * MB15: ndiswrapper buildfix for 2.6.36
2624 - re-enable unionfs and ndiswrapper build
2625
2626 * Wed Sep 29 2010 Thomas Backlund <tmb@mandriva.org> 2.6.36-0.rc6.1mdv
2627 - update to 2.6.36-rc6
2628 - drop merged patches:
2629 * AX02, DI01, DP01, DP02, DP03, FN01, FU02, FU03
2630 - disable patches:
2631 * CK01-CK04: Con Kolivas -ck1 patchset (broken)
2632 - update patches:
2633 * DM20-DM23: dm-crypt multicore scalability
2634 * FU01: unionfs 2.5.6
2635 * KP01: TuxOnIce 3.2-rc2
2636 - rediff patches
2637 * MB02: 3rdparty merge
2638 * NI11: netfilter IFWLOG
2639 * NI16: netfilter PSD
2640 - rediff source2 and source6
2641 - add patch:
2642 * FS09: revert squashfs lzo support for now in favour of lzma
2643 - remove tile arch from source/devel rpms
2644 - disable dazukofs, reiser4, unionfs and ndiswrapper for now (broken)
2645 - update defconfigs
2646
2647 * Mon Sep 27 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.6-1mdv
2648 - update to 2.6.35.6 (CVE-2010-2960)
2649
2650 * Tue Sep 21 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.5-1mdv
2651 - update to 2.6.35.5 (CVE-2010-3081, CVE-2010-3301)
2652 - drop merged patches:
2653 * AX10, DA60, DA61, DA62, DH01, DS20, DS21, DS22
2654 * FD01, FE01, FX01, FX02, FX03, MM10, NI01
2655 - rediff patch: CK01
2656
2657 * Sun Sep 12 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.4-3mdv
2658 - add patches:
2659 * DS40, DS41: Staging: Add initial release of brcm80211,
2660 the new Broadcom 802.11n wireless LAN driver.
2661 - update defconfigs:
2662 * desktop586: support 32 cpus and 4GB RAM
2663 * desktop: support 64 cpus
2664 * laptop: support 32 cpus
2665 * server: support 128 cpus
2666 - clean config scripts
2667
2668 * Sat Sep 4 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.4-2mdv
2669 - add patches:
2670 * AX10: x86, tsc, sched: Recompute cyc2ns_offset's during resume
2671 from sleep states
2672 * DA60: libata-sff: remove harmful BUG_ON from ata_bmdma_qc_issue
2673 * DA61: sata_mv: fix broken DSM/TRIM support (v2)
2674 * DA62: pata_cmd64x: revert commit d62f5576 ("pata_cmd64x: fix
2675 handling of address setup timings"), as it introduced a
2676 divide by zero fault.
2677 * DH01: hwmon: (k8temp) Differentiate between AM2 and ASB1
2678 * DS20: ALSA: HDA: Add another Sony VAIO quirk for ALC269
2679 * DS21: ALSA: HDA: Use model=auto for LG R510
2680 * DS22: ALSA: HDA: Rename iMic to Int Mic on Lenovo NB0763 so
2681 PulseAudio does not ignore it.
2682 * FD01: direct-io: move aio_complete into ->end_io
2683 * FE01: ext4: move aio completion after unwritten extent conversion
2684 * FX01: xfs: fix untrusted inode number lookup
2685 * FX02: xfs: ensure we mark all inodes in a freed cluster XFS_ISTALE
2686 * FX03: xfs: move aio completion after unwritten extent conversion
2687 * MM10: writeback: write_cache_pages doesn't terminate at nr_to_write <= 0
2688 (fixes a regression and improves writeback ~3 times on big files)
2689 * NI01: netfilter: fix CONFIG_COMPAT support
2690
2691 * Fri Aug 27 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.4-1mdv
2692 - update to 2.6.35.4 (CVE-2010-2803)
2693 * drop merged patches:
2694 AX01, FS20
2695
2696 * Sat Aug 21 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.3-2mdv
2697 - rebase patch:
2698 * CK01: fixes missing change to mm/swapfile.c causing an oops
2699 - add patches:
2700 * AX01, AX02: fixes 2.6.35.2 regression: Kernel panic or instant
2701 reboot on udev modules loading (intel-agp, i915)
2702 (kbz #16612)
2703 * FS20: NFS: Fix an Oops in the NFSv4 atomic open code
2704 * FS21: NFS: fix the return value of nfs_file_fsync()
2705
2706 * Fri Aug 20 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.3-1mdv
2707 - update to 2.6.35.3
2708 * drop merged patch: AA01
2709
2710 * Sun Aug 15 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.2-2mdv
2711 - revert samsung-backlight and samsung-laptop merge, it needs more work
2712 * re-add DP05, DP06
2713 * drop DS50
2714 - add patches:
2715 * AA01: mm: fix page table unmap for stack guard page properly
2716 (fixes 2.6.35.2 breakage (mostly triggered with PAE / HIGHPTE))
2717 * DP02: ideapad: Only allow camera state to be set to 0 or 1
2718 * DP03: ideapad: Stop using global variables
2719
2720 * Sat Aug 14 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.2-1mdv
2721 - update to 2.6.35.2 (CVE-2010-2240)
2722 - add patches:
2723 * DP01: add Lenovo IdeaPad ACPI Laptop Extras support
2724 * DS50: merge samsung-backlight with samsung-laptop that got merged upstream
2725 - drop merged patches:
2726 * AP01, DM30, DP10, KT01
2727 * DP05. DP06 (replaced by DS50)
2728 - rediff patches:
2729 * CK01, KP01
2730 - update defconfigs
2731
2732 * Tue Aug 10 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35.1-1mdv
2733 - update to 2.6.35.1
2734 - add patch:
2735 * MD30: md/raid10: fix deadlock with unaligned read during resync
2736 - update patches:
2737 * CK01: Con Colivas ck patchset including BFS v0.323
2738 * FR01: Reiser4 for 2.6.35 final
2739 * KP01: TuxOnIce 3.1.1.1 for 2.6.35 final
2740 - drop merged patches:
2741 * CK02, DG01
2742 - disable patch MM01 (transparent hugepages) for now
2743 - update defconfigs
2744
2745 * Fri Aug 6 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35-2mdv
2746 - add patches:
2747 * AP01: powerpc: fix build breakage with make 3.82 (Sam Ravnborg)
2748 * CK01: add back and re-enable BFS v320 scheduler
2749 * CK02: sched: add above_background_load function
2750 * CK03: sched: add Auto SCHED_ISO for xorg (disabled for now)
2751 * CK04: sched: add support for custom rr_interval value,
2752 and set desktop(586) to 3 while laptop and server uses 6
2753 * DG01: radeon: add some more evergreen and r7xx pci ids
2754 * DM20: dm-crypt: Scale to multiple cpus v2 (Andi Kleen)
2755 * DM21: dm-crypt: Use generic private pointer in per-cpu struct (Milan Broz)
2756 * KT01: sched: Revert nohz_ratelimit(), as it causes excessive wakeups
2757 * MM01: mm: add transparent hugepage support (Andrea Arcangeli)
2758 - update defconfigs
2759
2760 * Mon Aug 2 2010 Thomas Backlund <tmb@mandriva.org> 2.6.35-1mdv
2761 - update to 2.6.35
2762 - drop merged patches:
2763 * AX01-AX02, AX10-AX11, AX20, DA01-DA05, DB10, DG00-DG03
2764 * DN02-DN04, DN20-DN21, FS25, FS30, KP10, MC52, MC53
2765 * NB10, NI20-NI21
2766 - disable patch:
2767 * CK01: BFS scheduler, broken for now
2768 - update patches:
2769 * DI01: lirc for 2.6.35-rc6-git
2770 * FR01: Reiser4 for 2.6.35-rc6-git
2771 * KP01: TuxOnIce 3.1.1.1 for 2.6.35-rc6-git
2772 * MC50: dazukofs 3.1.3
2773 - rediff patches:
2774 * DP05: samsung-backlight driver
2775 * FS01: unionfs 2.5.4
2776 * FS10: squashfs lzma support
2777 * MB02: 3rdparty merge
2778 * MC51: dazukofs Kconfig and Makefile
2779 - add patches:
2780 * DP06: samsung-backlight 2.6.35 buildfix
2781 * FS02: unionfs 2.6.35 buildfix
2782 * FS03: unionfs oops fix (pterjan, main kernel)
2783 * MB14: ndiswrapper 2.6.35 buildfix
2784 * MC52: dazukofs 2.6.35 buildfix
2785 * NI12: netfilter IFWLOG 2.6.35 buildfix
2786 * NI17: netfilter psd 2.6.35 buildfix
2787 * NI31: netfilter ipset 2.6.35 buildfix
2788 - merge source2 and source3 to a single patch
2789 - enable CGROUPS, update defconfigs
2790
2791 * Tue Jul 27 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34.1-3mdv
2792 - add patches:
2793 * AX20: x86: Send a SIGTRAP for user icebp traps, fixes Wine apps
2794 breakage (mdv #60067)
2795 * DG01: agp tree from 2.6.35-rc6
2796 * DG02, DG03: gpu: intel fixes from git
2797 * FS30: cifs: fix a malicious redirect problem in the DNS lookup
2798 code (CVE-2010-2524)
2799
2800 * Fri Jul 23 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34.1-2mdv
2801 - update patch:
2802 * DG00: gpu tree from 2.6.35-rc6
2803 - add patch:
2804 * NM10: bridge: fdb cleanup runs too often
2805 * NI20: tcp: tcp_synack_options() fix
2806 * NI21: tcp: use correct net ns in cookie_v4_check()
2807
2808 * Mon Jul 5 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34.1-1mdv
2809 - update to 2.6.34.1 final
2810 - drop patch:
2811 * AA01: 2.6.34.1-rc1
2812
2813 * Sun Jul 4 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-12mdv
2814 - add patch:
2815 * DG00: gpu tree from 2.6.35-rc3-git8
2816 - drop patches:
2817 * DG01-DG14, DG22: radeon evergreen patches (merged in DG00)
2818
2819 * Sat Jul 3 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-11mdv
2820 - add patch:
2821 * AA01: 2.6.34.1-rc1
2822 - rediff patch:
2823 * ck1 patchset for 2.6.34 (including BFS)
2824 - drop merged patches:
2825 * AX20, AX21, DA10, DA20, DA25, DA30, DA31, DA35, DG20, DG21, DG23
2826 * DG25, DG26, DG27, DG30, DG31, DG32, DM20, DM21, DM22, DM23, DM24
2827 * DN01, DN05, DN06, DN10, DN15, DN16, DN25, DN26, DN30, DP11, DP12
2828 * DS30, DS31, DU01, DU02, DU05, DV10, FS20, FS26, FS27, FS30, FS35
2829 * KP11, MM01, NM10, NM11, NM12, NM13, NM14
2830
2831 * Sat Jun 26 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-10mdv
2832 - add patches:
2833 * AX20: x86/amd-iommu: Fix crash when request_mem_region fails
2834 * AX21: x86/amd-iommu: Fall back to GART if initialization fails
2835 * DA10: acpi/video: fix acpi_backlight=video to correctly enable
2836 ACPI_VIDEO_BACKLIGHT_FORCE_VIDEO
2837 * DA25: ahci: add support for for JMicron JMB362
2838 * DA30: sata_nv: don't diddle with nIEN on mcp55, as it gets stuck once
2839 set, and mcp55 has its own IRQ masking mechanism so there's no
2840 reason to mess with nIEN in the first place.
2841 (fixes liteon bluray iHOS104-08 error)
2842 * DA31: sata_nv: use ata_pci_sff_activate_host() instead of
2843 ata_host_activate() (fixes IRQ assignment failure in legacy mode)
2844 * DA35: sata_via: magic vt6421 fix for transmission problems with recent
2845 WD drives
2846 * DG26: drm/radeon/kms: don't default display priority to high on rs4xx
2847 * DG27: drm/radeon/kms: release AGP bridge at suspend
2848 * DG31: drm/i915: Rebind bo if currently bound with incorrect alignment
2849 * DG32: drm/i915: Kill dangerous pending-flip debugging
2850 * DM23: md: remove unneeded sysfs files more promptly
2851 * DM24: md: set mddev readonly flag on blkdev BLKROSET ioctl
2852 * DN05: iwlwifi: add missing rcu_read_lock
2853 * DN06: iwlwifi: recalculate average tpt if not current
2854 * DN16: ath5k: retain promiscuous setting
2855 * DN25: ar9170usb: add support for more devices:
2856 * Netgear WNA1000
2857 * Proxim ORiNOCO Dual Band 802.11n USB Adapter
2858 * 3Com Dual Band 802.11n USB Adapter
2859 * H3C Dual Band 802.11n USB Adapter
2860 * WNC Generic 11n USB dongle
2861 * DN26: ar9170usb: fix panic triggered by undersized rxstream buffer
2862 * DN30: p54usb: Add device ID for Dell WLA3310 USB
2863 * DP12: pci: disable msi on AMD rs4xx internal gfx bridges
2864 * DS31: Staging: rt2870: add device ID of MelCo.,Inc. WLI-UC-G301N
2865 * DU01: usb/option: add PID for ZTE product
2866 * DU02: usb/option: OLIVETTI OLICARD100 support
2867 * DU05: usb/qcaux: add Samsung U520 device ID
2868 * DV10: V4L/DVB: uvcvideo: Prevent division by 0 when control step value is 0
2869 * FS26: ext4: check s_log_groups_per_flex in online resize cod
2870 * FS27: ext4: Make sure the MOVE_EXT ioctl can't overwrite append-only files
2871 * FS35: VFS: fix recent breakage of FS_REVAL_DOT
2872 * MM01: tmpfs: insert tmpfs cache pages to inactive list at first
2873 (fixes OOM killer triggering on parallel file copy on tmpfs)
2874 * NM14: mac80211: fix deauth before assoc
2875
2876 * Sat Jun 19 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-9mdv
2877 - add patches:
2878 * DA01: ACPI / EC / PM: Fix race between EC transactions and
2879 system suspend
2880 * DA02: ACPI / EC / PM: Fix names of functions that block/unblock
2881 EC transactions
2882 * DA03: ACPI: Unconditionally set SCI_EN on resume
2883 * DA04: suspend: Move NVS save/restore code to generic suspend
2884 functionality (#59703)
2885 * DA05: ACPI: Store NVS state even when entering suspend to RAM (#59703)
2886 * DA20: libata: disable ATAPI AN by default
2887 (Fixes issue with ATAPI devices which raise AN when hit by
2888 commands issued by open(). This leads to infinite loop of
2889 AN -> MEDIA_CHANGE uevent -> udev open() to check media -> AN)
2890 * DG30: drm/i915: Reject bind_to_gtt() early if object > aperture
2891 * DN15: ath5k: consistently use rx_bufsize for RX DMA
2892 * DN20: r8169: fix random mdio_write failures (#59723)
2893 * DN21: r8169: fix mdio_read and update mdio_write according to hw
2894 specs (#59723)
2895 * DS30: staging: vt6655: Fix kernel BUG on driver wpa initialization
2896 * FS20: Btrfs: add a permission check for setfacl (CVE-2010-2071)
2897 * FS25: ext4: Prevent creation of files larger than RLIMIT_FSIZE using
2898 fallocate (fixes Ext4 Security Bypass Vulnerability)
2899 * FS30: GFS2: Fix permissions checking for setflags ioctl (CVE-2010-1641)
2900 * NM11: mac80211: give warning if building w/out rate ctrl algorithm
2901 * NM12: mac80211: fix rts threshold check
2902 * NM13: mac80211: fix handling of 4-address-mode in ieee80211_change_iface
2903
2904 * Sun May 30 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-8mdv
2905 - add patches:
2906 * AX01: x86: Avoid hlt check for newer cpus
2907 * AX02: x86: cacheinfo: Turn off L3 cache index disable feature in
2908 virtualized environments, fixes crash on boot on xen.
2909 * AX10: x86, cpu: Add AMD core boosting feature flag to /proc/cpuinfo
2910 * AX11: powernow-k8: Add core performance boost support
2911 * DN10: ath9k_hw: fix hardware deinit panic
2912 * FR01: Reiser4 for 2.6.34 final
2913 * KP10: panic: call console_verbose() in panic to ensure a directly
2914 called panic will print a backtrace
2915 * KP11: posix_timer: Fix error path in timer_create
2916 - drop patches:
2917 * FR02-FR11 reiser4 patches (replaced by FR01)
2918
2919 * Sat May 29 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-7mdv
2920 - add patch:
2921 * DG25: drm/radeon: fix the r100/r200 ums block 0 page fix
2922 - drop patch:
2923 * DG24: drm/i915: Configure the TV sense state correctly on
2924 GM45 to make TV detection reliable (as it got reverted
2925 upstream in commit: d4b74bf07873da2e94219a7b67a334fc1c3ce649)
2926
2927 * Wed May 26 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-6mdv
2928 - add patches:
2929 * DN03: iwlwifi: Recover TX flow stall due to stuck queue
2930 * DN04: iwl3945: Eenable stuck queue detection on 3945
2931 * FS10: readd SquashFS lzma support
2932 * NM10: mac80211: Fix robust management frame handling
2933 - update patches:
2934 * FS01: unionfs 2.5.4 for 2.6.34-rc0
2935 * KP01: TuxOnIce 3.1 for 2.6.34
2936 - update defconfigs
2937
2938 * Sun May 23 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-5mdv
2939 - add patches:
2940 * DG13: radeon/kms: R3XX-R4XX fix GPU reset code
2941 * DG14: radeon/kms/atom: autoload hwmon drivers
2942
2943 * Sun May 23 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-4mdv
2944 - add patches:
2945 * DB10: firmware_class: fix memory leak introduced by the patch 6e03a201bbe:
2946 firmware: speed up request_firmware()
2947 * DG01: radeon/kms: fence cleanup + more reliable GPU lockup detection V4
2948 * DG02: radeon/kms: rename gpu_reset to asic_reset
2949 * DG03: radeon/kms: simplify & improve GPU reset V2
2950 * DG04: radeon/kms: update atombios.h power tables for evergreen
2951 * DG05: radeon/kms: add support for evergreen power tables
2952 * DG06: radeon/kms/evergreen: add gart support
2953 * DG07: radeon/kms/evergreen: add soft reset function
2954 * DG08: radeon/kms/evergreen: implement gfx init
2955 * DG09: radeon/kms/evergreen: setup and enable the Command Processor
2956 (needs the kernel-firmware-extra >= 20100429-2mnb for evergreen me/pfp firmwares)
2957 * DG10: radeon/kms/evergreen: implement irq support
2958 (needs the radeon-rlc-firmware >= 1-3mdv for evergreen rlc firmwares)
2959 * DG11: radeon/kms/evergreen: add (hotplug detect) support for digital monitors
2960 * DG12: radeon/kms/evergreen: fix cypress firmware typo
2961 * DG20: radeon/kms: reset ddc_bus in object header parsing
2962 * DG21: radeon/kms/atom: fix typo in LVDS panel info parsing
2963 * DG22: drm/edid: fix 1600x1200@75Hz
2964 * DG23: drm/edid: Fix 1024x768@85Hz
2965 * DG24: drm/i915: Configure the TV sense state correctly on GM45 to make TV detection reliable
2966 * DM20: md: Fix read balancing in RAID1 and RAID10 on drives > 2TB
2967 * DM21: md: fix counting of write targets on raid1
2968 * DM22: md: avoid possible oops and array stop on linear layout
2969 * DP10: pci: disable MSI on Via K8M800 (fixes problems with AHCI)
2970 * DP11: pci: disable MSI for MCP55 on P5N32-E SLI (fixes NIC problems)
2971
2972 * Thu May 20 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-3mdv
2973 - fix patch CK01 to actually contain BFS v318 (and not v317)
2974
2975 * Thu May 20 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-2mdv
2976 - update patch:
2977 * CK01: ck1 patchset for 2.6.34 final (including BFS v318)
2978 - drop patch:
2979 * CK02: ck patchset buildfix
2980 - enable CGROUPS on all configs (to support systemd, #59345)
2981
2982 * Mon May 17 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-1mdv
2983 - update to 2.6.34 final
2984
2985 * Sun May 16 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc7.9.5mdv
2986 - update to 2.6.34-rc7-git9
2987 - drop merged patches:
2988 * AA05: vfs fixes from stable queue
2989
2990 * Sat May 15 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc7.8.4mdv
2991 - update to 2.6.34-rc7-git8
2992 - drop merged patches:
2993 * AA01-A04: git fixes for hid, autofs, alsa, network, radeon
2994 - add patches:
2995 * AA05: vfs fixes from stable queue
2996 * DN01: iwlwifi: fix internal scan race
2997 * DN02: iwlagn: work around rate scaling reset delaY
2998
2999 * Tue May 11 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc7.3mdv
3000 - add patches:
3001 * AA03: git fixes for network queued for final
3002 * AA04: git fixes for radeon queued for final
3003
3004 * Mon May 10 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc7.2mdv
3005 - add patches:
3006 * AA01: git fixes for hid, autofs and alsa queued for final
3007 * AA02: git fixes for wireless queued for final
3008
3009 * Mon May 10 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc7.1mdv
3010 - update to 2.6.34-rc7
3011
3012 * Sat May 8 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc6.6.3mdv
3013 - update to 2.6.34-rc6-git6
3014 - disable PRINTK_TIME
3015 - update defconfigs
3016
3017 * Wed May 5 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc6.4.2mdv
3018 - update to 2.6.34-rc6-git4
3019
3020 * Fri Apr 30 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc6.1mdv
3021 - update to 2.6.34-rc6
3022 - update defconfigs
3023
3024 * Mon Apr 26 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc5.7.4mdv
3025 - update to 2.6.34-rc5-git7
3026 * fix for ipv6 boot crash
3027 * fixes ext4 corruption
3028 - drop patch:
3029 * AA01: revert: tcp bind() fix when many ports are bound (fixed in -git7)
3030
3031 * Sun Apr 25 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc5.6.3mdv
3032 - add patch:
3033 * AA01: revert: tcp bind() fix when many ports are bound (it breaks boot)
3034
3035 * Sun Apr 25 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc5.6.2mdv
3036 - update to 2.6.34-rc5-git6
3037
3038 * Tue Apr 20 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc5.1mdv
3039 - update to 2.6.34-rc5
3040 - drop merged patch:
3041 * AA01: upstream git update
3042 - enable CONFIG_KSM (mdv #58384)
3043
3044 * Sat Apr 17 2010 Thomas Backlund <tmb@mandriva.org> 2.6.34-0.rc4.4.1mdv
3045 - update to 2.6.34-rc4-git4
3046 - drop merged patches:
3047 * Patch100,101,110: Nouveau updates
3048 * AX01: HPET erratum fix
3049 * AX02, DA02: Intel Cougar Point Support
3050 * DG01-DG13: drm fixes
3051 * DM50, DM51: v4l-dvb snapshot
3052 * DN10: Atheros AR8151x support
3053 * DN15: b43 pio at runtime
3054 * DN20-DN23: iwlwifi fixes
3055 * DS01, DS02: Alsa snapshot
3056 * DS50: broadcom crystalhd
3057 * DU01: usb settling delay
3058 * FB01: btfrs fix
3059 * FC01: ceph support
3060 * FS10, FS11: squashfs lzma support
3061 * NM01-NM03: mac80211 fixes
3062 - update / add patches:
3063 * AA01: 2.6.34-r4-git4+ fixes from git (alsa, xfs, acpi, ...)
3064 * CK01, CK02: ck1 patchset (BFS scheduler) + buildfix
3065 * DM12: fix dm-raid45 build with 2.6.34
3066 * FR01-FR11: reiser4 support (from mmotm)
3067 * KP01: TucOnIce 3.1 for 2.6.34-rc4
3068 * MC53: dazuko buildfix for 2.6.34
3069 * MC83: viahss buildfix for 2.6.34
3070 * MC93: vloopback buildfix for 2.6.34
3071 - update defconfigs
3072
3073 * Sat Apr 17 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33.2-3mdv
3074 - add patches:
3075 * DG09: drm: edid quirks for envision en2028
3076 * DG10: drm: radeon: r300-ad only has one quad pipe
3077 * DG11: drm: radeon kms: fix washed-out image on legacy tv-dac
3078 * DG12: drm: radeon kms: combios: verify dac_adj values are valid
3079 * DG13: drm: i915: fix tiling limits for i915 class hw
3080 * DM11: dm-raid45 buildfix (and re-enable it on all configs)
3081
3082 * Sat Apr 10 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33.2-2mdv
3083 - update ipset conditionally:
3084 * update to 4.2 for 2010.1
3085 * keep 2.4.9 for 2010.0 backports
3086 - add patches:
3087 * DG01: drm: edid: allow certain bogus edids to hit a fixup path
3088 rather than fail
3089 * DG02: drm: radeon: add new rs880 pci id
3090 * DG03: drm: remove the edid blob stored in the edid property
3091 when it is disconnected
3092 * DG04: drm: radeon kms: never treat rs4xx as agp
3093 * DG05: drm: radeon kms: fix null pointer dereference if memory
3094 allocation failed in a simple way
3095 * DG06: drm: radeon kms: don't print error on erestartsys
3096 * DG07: drm: radeon kms: fix pal tv-out support on legacy igp chips
3097 * DG08: drm: return enodev if the inode mapping changes
3098 * DN20: iwlwifi: fix regulatory code
3099 * DN21: iwlwifi: counting number of tfds can be free for 4965
3100 * DN22: iwlwifi: check for valid qos packet before free on 4965
3101 * DN23: iwlwifi: fix range checking issue on 3945
3102 * NM01: mac80211: fix preq processing and one small bug
3103 * NM02: mac80211: move netdev queue enabling to correct spot
3104 * NM03: mac80211: tear down all agg queues when restart reconfig hw
3105
3106 * Fri Apr 2 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33.2-1mdv
3107 - update to 2.6.33.2
3108 - update patches:
3109 * DM50: v4l-dvb snapshot 2010-04-02
3110 * DM51: v4l-dvb snapshot buildfix
3111 * DS01: Alsa 1.0.22.1+ snapshot 2010-04-02
3112 * DS02: Alsa 1.0.22.1+ snapshot buildfix
3113 * DS10: Alsa 1.0.22.1+ unstable via vt1732 2010-04-02
3114 - rediff P100 (nouveau update for 2010.1)
3115 - update defconfigs
3116
3117 * Sun Mar 21 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33.1-1mdv
3118 - update to 2.6.33.1
3119 - update patches:
3120 * DM50: v4l-dvb: snapshot 2010-03-21
3121 * DS01: Alsa 1.0.22.1+ snapshot 2010-03-21
3122 * DS10: Alsa 1.0.22.1+ unstable via 1732
3123 * KP01: TuxOnIce 3.1 for 2.6.33
3124 - drop merged patches:
3125 * DA01: ahci: disable FPDMA auto-activate on nVidia AHCI
3126 * DM51: v4l-dvb snapshot buildfix
3127 * SI01: security: fix error return path in ima_inode_alloc
3128 - disable patch:
3129 * DG02: drm: git snapshot 2010-03-02
3130 (introduced regression on some radeons, and broke backports
3131 for nouveau users)
3132 - add nouveau patches as conditional build so backports will work:
3133 * for 2010.1:
3134 * nouveau: git 2010-03-16 (like main kernel)
3135 * for 2010.0 backports
3136 * nouveau: add ctxprogs generator for nv50/nv8x/nv9x
3137 (readded as DG02 got disabled)
3138 - disable CONFIG_USB_PRINTER (like main kernel, #58293)
3139 - update defconfigs
3140
3141 * Sun Mar 7 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-5mdv
3142 - stop adding pcspkr to /etc/modprobe.preload as it overrides
3143 any blacklisting (Requested by Thierry)
3144 - stop adding psmouse to /etc/modprobe.preload, as it's builtin
3145 - add patches:
3146 * FC01: ceph distributed file system support v0.19
3147 (http://ceph.newdream.net/)
3148 - update patches:
3149 * FR01: reiser4 for 2.6.33
3150 * FS01: unionfs 2.5.4 for 2.6.33
3151 * KP01: TuxOnIce 3.0.99.49 for 2.6.33
3152 - drop patches:
3153 * FR02-FR26: reiser4 fixes from mmotm tree (mostly merged in FR01)
3154 * FS01: unionfs buildfix (not needed anymore)
3155
3156 * Wed Mar 3 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-4mdv
3157 - disable FB_RADEON as it might interfere with RADEON_KMS
3158 (fbcon and radeondrmfb are now the ones doing the work)
3159 - add patches:
3160 * AX05: Add Intel Cougar Point LPC and SMBus support
3161 * DU01: Lower USB storage settling delay to 1 sec (down from 5),
3162 gives faster usb storage detection
3163
3164 * Tue Mar 2 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-3mdv
3165 - add patches:
3166 * DA02: ahci: add Intel Cougar Point support
3167 * DG02: drm: git snapshot 2010-03-02
3168 - nouveau updates
3169 - radeon updates, including initial Evergreen support (Radeon HD 5xxx)
3170 - intel updates, including initial Sandybridge support
3171 - initial support for vga_switcheroo (switch between integrated
3172 and discrete GPU at runtime)
3173 - drop patch:
3174 * DG01: drm: nouveau: add ctxprogs generator for nv50/nv8x/nv9x
3175 (merged in DG02)
3176
3177 * Sat Feb 27 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-2mdv
3178 - add patches:
3179 * CK01: 2.6.33-ck1 patchset (BFS sceduler + optimizations)
3180 * DA01: ahci: disable FPDMA auto-activate on nVidia AHCI
3181 * FB01: btrfs: fix memory corruption on mount
3182 * SI01: security: fix error return path in ima_inode_alloc
3183 - update patches:
3184 * AX01: add HPET Erratum fix for triggering WARN_ON due to
3185 mismatch on HPET_Tn_CMP readback (replaces the earlier
3186 HPET: Drop WARN_ON for mismatch on HPET_Tn_CMP readback)
3187
3188 * Wed Feb 24 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-1mdv
3189 - update to 2.6.33 final
3190 - drop merged patches:
3191 * DA01: acpi: fixes from 2.6.33 git queue
3192 * DG02: drm-staging: fixes from 2.6.33 git queue (nouveau, vmwgfx)
3193 * DN20: iwlwifi: fixes from 2.6.33 git queue
3194
3195 * Tue Feb 23 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc8.8.3mdv
3196 - update to 2.6.33-rc8-git8
3197 - add patch:
3198 * DA01: acpi: fixes from 2.6.33 git queue
3199 * DG02: drm-staging: fixes from 2.6.33 git queue (nouveau, vmwgfx)
3200 * DN20: iwlwifi: fixes from 2.6.33 git queue
3201 - rediff patch:
3202 * DM50: v4l-dvb snapshot
3203 - drop patch:
3204 * KP10: re-export find_task_by_vpid symbol for fglrx
3205 (not needed anymore, confirmed by Anssi)
3206
3207 * Sat Feb 20 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc8.5.2mdv
3208 - update to 2.6.33-rc8-git5
3209 - add patches:
3210 * AX01: HPET: Drop WARN_ON for mismatch on HPET_Tn_CMP readback
3211 * DN15: b43: convert B43_PIO(_FORCE) to a module option (pio=1)
3212 - drop merged patches:
3213 * DN20: iwlwifi: fix broken AMSDU Rx functionality
3214 * NM01: mac80211: fix handling of null-rate control in rate_control_get_rate
3215
3216 * Sat Feb 13 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc8.1mdv
3217 - update to 2.6.33-rc8
3218 - add patches:
3219 DG01: drm: nouveau: add ctxprogs generator for nv50/nv8x/nv9x
3220 (fixes fd.o bug #23198, (Anssi, main kernel))
3221 DN10: add support for Atheros AR8151 and AR8152
3222 DN20: iwlwifi: fix broken AMSDU Rx functionality
3223 NM01: mac80211: fix handling of null-rate control in rate_control_get_rate
3224 - update patches:
3225 * MB10: ndiswrapper 1.56
3226 * MB12: ndiswrapper Makefile fix
3227 - drop merged patches:
3228 * DS20: alsa: hda-intel divide-by-zero crash fix
3229 * FC01: fs: compat_ioctl: ignore RAID_VERSION ioctl
3230 - drop unneeded patches:
3231 * MB14: ndiswrapper cmpxchg8b fix
3232
3233 * Mon Feb 8 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc7.1.2mdv
3234 - update to 2.6.33-rc7-git1
3235 - drop merged patch:
3236 * FB01: fs: freeze_bdev: dont deactivate successfully frozen MS_RDONLY sb
3237 - add patch:
3238 * FC01: fs: compat_ioctl: ignore RAID_VERSION ioctl
3239 - enable RADEON_KMS again, as it now works:
3240 * NOTE!
3241 - you need the following rpms installed to get full KMS support:
3242 x11-driver-video-ati-6.12.99-0.20100204mdv2010.1 from main/testing
3243 radeon-rlc-firmware-1-1mdv2010.1 from non-free/release
3244 - if you get problem:
3245 - you might need to remove any splash= or vga= from the
3246 kernel command line
3247 - you might need to add radeon to /etc/modprobe.preload
3248 - if you still have problems, you can disable it with radeon.modeset=0
3249 on kernel command line
3250
3251 * Sun Feb 7 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc7.1mdv
3252 - update to 2.6.33-rc7
3253 - drop merged patch:
3254 * DG01: drm-intel fixes from git
3255 - add patch:
3256 * DS20: alsa: hda-intel: avoid divide-by-zero crash (potential local DoS)
3257
3258 * Sat Feb 6 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc6.6.8mdv
3259 - add patch:
3260 * DG01: drm-intel fixes from git
3261
3262 * Sat Feb 6 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc6.6.7mdv
3263 - update to 2.6.33-rc6-git6
3264 - update patches:
3265 * KP01: TuxOnIce 3.0.99.47 for 2.6.33-rc6
3266 - drop merged patches:
3267 * DG01: drm: radeon-kms: dont call suspend path before cleaning up GPU
3268 * LI01: idr: revert misallocation bug fix
3269 - set CONFIG_SND_HDA_INPUT_BEEP_MODE=2 in defconfigs
3270
3271 * Thu Feb 4 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc6.4.6mdv
3272 - update to 2.6.33-rc6-git4
3273 - add patch:
3274 * LI01: idr: revert misallocation bug fix (it breaks X and drm)
3275 - rediff patch:
3276 * DM50: v4l-dvb snapshot
3277 - disable Radeon KMS by default again, as the libdrm we have is not
3278 new enough
3279
3280 * Wed Feb 3 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc6.3.5mdv
3281 - update to 2.6.33-rc6-git3
3282 - update defconfigs
3283
3284 * Wed Feb 3 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc6.2.4mdv
3285 - update to 2.6.33-rc6-git2
3286
3287 * Tue Feb 2 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc6.1.3mdv
3288 - add patches:
3289 * DG01: drm: radeon kms: dont call suspend path before cleaning up GPU
3290 - enable Radeon KMS by default
3291 * NOTE! you need: x11-driver-video-ati-6.12.99-0.20100202mdv2010.1
3292 from main/testing to get KMS support (if you get problem, you can
3293 disable it with radeon.modeset=0 on kernel command line)
3294
3295 * Tue Feb 2 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc6.1.2mdv
3296 - update to 2.6.33-rc6-git1
3297 - drop merged patches:
3298 * DC01: x86: agp_amd64_init regression
3299 - rediff patches:
3300 * DS01: Alsa 1.0.22+ snapshot
3301
3302 * Sat Jan 30 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc6.1mdv
3303 - update to 2.6.33-rc6
3304 - drop merged patches:
3305 * AX01: x86: pci intel ioh bus num reg accessing fix (ioh dropped as broken)
3306 * DG01: drm fixes from airlied git
3307 * DN01: iwlwifi: Fix throughput stall issue in HT mode for 5000 series
3308 * KT01: clockevent: Dont remove broadcast device when cpu is dead
3309 - update patches:
3310 * DM50: v4l-dvb snapshot 2010-01-30
3311 * DS01: Alsa 1.0.22+ snapshot 2010-01-30
3312 - add patches:
3313 * FB01: fs: freeze_bdev: dont deactivate successfully frozen MS_RDONLY sb
3314 (fixes non-bootable dmraid due to oops (#56768))
3315
3316 * Mon Jan 25 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc5.2mdv
3317 - add patches:
3318 * DC01: x86/agp: fix agp_amd64_init regression
3319 * DG01: drm: fixes from airlied git queue for 2.6.33
3320 * KT01: clockevent: Dont remove broadcast device when cpu is dead
3321 - drop patch:
3322 * DG03: drm: radeon kms: Fix r600 blit cleanup path (merged in DG01)
3323
3324 * Fri Jan 22 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc5.1mdv
3325 - update to 2.6.33-rc5
3326 - drop merged patches:
3327 * AA01-AA03: core, usb, staging fixes
3328 * DA01-DA16: acpi updates
3329 * DP06: sony-laptop fix
3330
3331 * Thu Jan 21 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc4.7.6mdv
3332 - update to 2.6.33-rc4-git7
3333 - add patches from git queue:
3334 * AA01: core fixes
3335 * AA02: usb fixes
3336 * AA03: staging fixes
3337 - update patches:
3338 * DM50: v4l-dvb snapshot 2010-01-21
3339 * DS01: Alsa 1.0.22+ snapshot 2010-01-21
3340 * KP01: TuxOnIce 3.0.99.45 for 2.6.33-rc4
3341
3342 * Sun Jan 17 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc4.4.5mdv
3343 - update to 2.6.33-rc4-git4
3344 - drop merged patch:
3345 * DG01: drm-intel updates
3346
3347 * Sat Jan 16 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc4.3.4mdv
3348 - update to 2.6.33-rc4-git3
3349 - add patches:
3350 * DA01: EC: Accelerate query execution
3351 * DA02: acpi_pad: fix error checks
3352 * DA03: ACPI video: Prune dupe video devices, unless "video.allow_duplicates"
3353 * DA04: x86, ACPI: delete acpi_boot_table_init() return value
3354 * DA05: drm_i915: Add HP nx9020_Samsung SX20S to ACPI LID quirk list
3355 * DA06: ACPI: SBS: Move SBS HC callback to faster Notify queue
3356 * DA07: ACPI: EC: Add wait for irq storm
3357 * DA08: ACPI: Advertise to BIOS in _OSC: _OST on _PPC changes
3358 * DA09: ACPI: Remove unnecessary cast
3359 * DA10: ACPI: don't cond_resched if irq is disabled
3360 * DA11: eeepc-laptop: disable cpu speed control on EeePC 701
3361 * DA12: eeepc-laptop: dmi blacklist to disable pci hotplug code
3362 * DA13: eeepc-laptop: switch to using sparse keymap library
3363 * DA14: eeepc-laptop: add hotplug_disable parameter
3364 * DA15: eeepc-laptop: disable wireless hotplug for 1201N
3365 * DA16: ACPI: Fix section mismatch error for acpi_early_processor_set_pdc()
3366 * DG01: drm-intel updates
3367 * DN01: iwlwifi: Fix throughput stall issue in HT mode for 5000 series
3368 * DP06: sony-laptop: fix using of uninitialized variable
3369 - drop merged patch:
3370 * DG02: drm: i915: disable LVDS downclock by default
3371
3372 * Fri Jan 15 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc4.2.3mdv
3373 - update to 2.6.33-rc4-git2
3374 - update patches:
3375 * DM50: v4l-dvb snapshot 2010-01-15
3376 * DS01: Alsa 1.0.22+ snapshot 2010-01-15
3377 - add patches:
3378 * DG02: drm: i915: disable LVDS downclock by default (fixes flickering)
3379 * DG03: drm: radeon kms: Fix r600 blit cleanup path
3380 (fixes oops if rlc firmware is missing)
3381 * DM51: v4l-dvb snapshot buildfix
3382 - drop merged patches:
3383 * DG01: radeon kms updates
3384 * NM01-NM03: mac80211 skb buffering performance fixes
3385
3386 * Wed Jan 13 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc4.2mdv
3387 - defconfig changes:
3388 * enable NAMESPACES support (like main kernel, noted by Thierry)
3389 * enable EXT3_DEFAULTS_TO_ORDERED as data=writeback is a security
3390 issue and makes a mess on system crash
3391 - add patches:
3392 * DG01: radeon kms updates
3393
3394 * Wed Jan 13 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc4.1mdv
3395 - update to 2.6.33-rc4
3396 - rediff patch:
3397 * DS01: Alsa snapshot
3398
3399 * Tue Jan 12 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc3.5.5mdv
3400 - update to 2.6.33-rc3-git5
3401 - drop patch:
3402 * AA01: 2.6.33-rc3+ git snapshot
3403
3404 * Mon Jan 11 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc3.4mdv
3405 - update patch:
3406 * AA01: 2.6.33-rc3+ git 1b4d40a517e0657a081d5d63518c4badd31c60ea
3407 - even more drm fixes
3408 - add patch:
3409 * FS11: fix lzo compressed kernels support (due to squashfs-lzma changes)
3410 - drop merged patch:
3411 * DP02: hp-wmi: remove double kfree
3412 - update defconfigs
3413
3414 * Thu Jan 07 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc3.3mdv
3415 - update patches:
3416 * NM01-NM03: mac80211 skb buffering performance fixes
3417 - sync with updated patches merged in wireless-2.6.git
3418 - add patches:
3419 * MC90-MC92: video4linux vloopback support
3420
3421 * Thu Jan 07 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc3.2mdv
3422 - add patches:
3423 * AA01: 2.6.33-rc3+ git 2c1f1895ef2aa8f0e5497893eff71304aef332e1
3424 - a lot of drm fixes
3425 * NM03: mac80211 skb buffering buildfix (fixes oops on boot)
3426
3427 * Wed Jan 06 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc3.1mdv
3428 - update to 2.6.33-rc3
3429 - add patches:
3430 * NM01, NM02: fix mac80211 skb buffering performance regression
3431
3432 * Tue Jan 05 2010 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc2.6.5mdv
3433 - update to 2.6.33-rc2-git6
3434 - drop patches:
3435 * AA01: 2.6.33-rc2-git2
3436 - add patches:
3437 * AX01: fix un-bootable dell systems due to unactivated iommu
3438 * DS50: add Broadcom CrystalHD support
3439 * FS10: squashfs lzma support
3440 - update defconfigs
3441
3442 * Thu Dec 31 2009 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc2.4mdv
3443 - add patches:
3444 * AA01: 2.6.33-rc2-git2
3445 * DP02: hp-wmi: remove double kfree
3446 - rediff patches:
3447 * DS01: Alsa 1.0.22+ snapshot
3448 * KP01: Tuxonice support
3449 - drop patches:
3450 * DP01: acpi wmi revert: wmi: (fixed differently upstream)
3451 - update defconfigs
3452
3453 * Mon Dec 28 2009 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc2.3mdv
3454 - add patches:
3455 * DM50: v4l-dvb snapshot 2009-12-28
3456 * DS01: Alsa 1.0.22+ snapshot 2009-12-28
3457 - update patches:
3458 * DI01: lirc for 2.6.33-rc2
3459 * DS10: Alsa unstable Via 1732
3460 * KP01: tuxonice 3.0.99.44 for-2.6.33-rc2
3461 - drop patches:
3462 * DI02: lirc buildfix (merged in DI01)
3463 * DS05: alsa hda ad codec fix (merged in DS01)
3464 * KP02: tuxonice buildfix (merged in KP01)
3465 - update defconfigs
3466
3467 * Sat Dec 26 2009 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc2.2mdv
3468 - add patches:
3469 * DP01: acpi revert: wmi: free the allocated acpi objects through
3470 wmi_get_event_data (fixes non-booting hp and dell laptops)
3471 * DS05: alsa: hda: disable trigger at pin sensing on AD codecs
3472 (fixes constant load on HP laptops with AD codec)
3473
3474 * Fri Dec 25 2009 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc2.1mdv
3475 - update to 2.6.33-rc2
3476
3477 * Thu Dec 24 2009 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc1.4.3mdv
3478 - update to 2.6.33-rc1-git4
3479 - add patches:
3480 * DI02: lirc buildfix
3481 * FS02: unionfs buildfix
3482
3483 * Tue Dec 22 2009 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc1.2.2mdv
3484 - update to 2.6.33-rc1-git2
3485
3486 * Fri Dec 18 2009 Thomas Backlund <tmb@mandriva.org> 2.6.33-0.rc1.1mdv
3487 - update to 2.6.33-rc1
3488 - update spec file
3489 * dont ship score arch in -source and -devel rpms
3490 * add /virt and /include/generated to -devel rpms
3491 * add config.mk to -devel rpms
3492 - update defconfigs
3493 * desktop kernel now supports 24 cores/siblings
3494 * server kernel now supports 48 cores/siblings
3495 - update patches:
3496 * DM10: dmraid45 support for 2.6.33-rc1 (disabled for now, as its broken)
3497 * FR01: reiser4 for 2.6.33-rc1 (from mmotm)
3498 * FS01: unionfs 2.5.3 for 2.6.33-rc1
3499 * KP01: tuxonice 3.0.99.43 for 2.6.33-rc1
3500 * MB14: ndiswrapper cmpxchg8b fix (from main)
3501 - add patches:
3502 * FR02-FR26: reiser4 fixes from mmotm tree
3503 * KP02: fix tuxonice build
3504 - rediff patches
3505 * DP05: samsung backlight support
3506 * MB02: 3rdparty merge
3507 - drop patches merged upstream:
3508 * AX01: stack protetctor detection
3509 * DA01: AMD SB900 support
3510 * DA02: nVidia AHCI generic support
3511 * DA10-DA17: ACPICA 20090903
3512 * DC01-DC02: cpuidle fixes
3513 * DG01-DG10: drm updates and nouveau
3514 * DH02: ingnore HID_DG_INRANGE
3515 * DH10-DH13: coretemp atom/penryn/lynnfield support
3516 * DG20-DG21: asus_atk0110 update
3517 * DM50-DM51: v4l-dvb snapshot
3518 * DM55: bttv ir fix
3519 * DN01: ppp HSUPA support
3520 * DN10-DN36: ath9k fixes
3521 * DN50: hostap fix
3522 * DP02: dell-laptop rfkill fix
3523 * DP05: samsung backlight support
3524 * DS01-DS02: Alsa 1.0.21+ snapshot
3525 * FC01: chrdev update
3526 * FS10: xfs bugfix
3527 * KH01: hrtimer update
3528 * KS01-KS03: kernel sched updates
3529 * MC30-MC34 drbd
3530 * NI20: net splice fix
3531
3532 * Mon Dec 14 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.8-1mdv
3533 - update to 2.6.31.8 final
3534 - drop patches:
3535 * AA01: 2.6.31.8-rc1
3536 - update patches:
3537 * MC50: DazukoFS 3.1.2
3538
3539 * Fri Dec 11 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.7-1mdv
3540 - update to 2.6.31.7
3541 - add patches:
3542 * AA01: 2.6.31.8-rc1 (includes a _big_ ext4 update)
3543 - rediff patches:
3544 * DA10: acpi release 20090903
3545 * DG01: drm-next
3546 * DM50: v4l-dvb 2009-11-30
3547 * DS01: Alsa 1.0.21+ 2009-11-30
3548 - drop merged patches:
3549 * DM20: md: add cond_resched to raid1 and raid10
3550 * DM21: md: dont clear endpoint for resync when resync is interrupted
3551 * DM22: md: raid5: make sure curr_sync_completes is uptodate when
3552 reshape starts
3553 * DN02: bonding: modify hash transmit policies to use the packets
3554 source mac address
3555 * DN51: b43: work around mac80211 race condition
3556 * DN52: iwlwifi: fix issue on file transfer stalled in ht mode
3557 * DN53: iwlwifi: use rts-cts as the preferred protection mechanism
3558 for 6000 series
3559 * DS20: gdth: prevent negative offsets in ioctl (CVE-2009-3080)
3560 * NI21: ipv4: additional update of dev_net dev to struct net in
3561 ip_fragment null ptr oops fix
3562 * NM01: mac80211: fix two remote exploits
3563 * NM02: mac80211: fix spurious delba handling
3564 * NR01: rfkill: fix miscdev ops
3565
3566 * Fri Dec 4 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.6-7mdv
3567 - add patches:
3568 * DM21: md: dont clear endpoint for resync when resync is interrupted
3569 * DM22: md: raid5: make sure curr_sync_completes is uptodate when
3570 reshape starts
3571 * DM55: bttv: add missing i2c addr to probe for ir (A. Williamson / J.Wilson)
3572 * DN02: bonding: modify hash transmit policies to use the packets
3573 source mac address
3574 * DN51: b43: work around mac80211 race condition
3575 * DN52: iwlwifi: fix issue on file transfer stalled in ht mode
3576 * DN53: iwlwifi: use rts-cts as the preferred protection mechanism
3577 for 6000 series
3578 * DS20: gdth: prevent negative offsets in ioctl (CVE-2009-3080)
3579 * NI21: ipv4: additional update of dev_net dev to struct net in
3580 ip_fragment null ptr oops fix
3581 * NM01: mac80211: fix two remote exploits
3582 * NM02: mac80211: fix spurious delba handling
3583 * NR01: rfkill: fix miscdev ops
3584
3585 * Mon Nov 30 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.6-6mdv
3586 - update patches:
3587 * DM50: v4l-dvb snapshot 2009-11-30
3588 * DM51: v4l-dvb snapshot buildfix
3589 * DS01: Alsa 1.0.21+ snapshot 2009-11-30
3590 * DS02: Alsa 1.0.21+ snapshot buildfix
3591 * DS10: Alsa 1.0.21+ unstable via-1732 (Envy II) 2009-11-30
3592 - drop patches:
3593 * DS21-DS51: alsa hda via updates (merged in DS01)
3594 - update defconfigs
3595
3596 * Mon Nov 30 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.6-5mdv
3597 - add patches:
3598 * DA16: acpi: more fixes to ACPICA Release 20090903
3599 - update patches:
3600 * DI01: lirc updates as of 2009-11-27
3601 - drop patches:
3602 * DA17: acpi: silence _BIF warn (merged in DA16)
3603 * DG01: drm-next update (replaced by DG01 from Fedora)
3604 * DG04: drm-nouveau (replaced by DG07 from Fedora)
3605 - sync drm patches with Fedora 12 kernel 2.6.31.6-153
3606 * DG01: drm-next 44c83571
3607 * DG02: drm: radeon hdp cache flush
3608 * DG03: drm: conservative fallback modes
3609 * DG04: drm: edid retry
3610 * DG05: drm: edid header fixup
3611 * DG06: drm: default mode 1024x768
3612 * DG07: drm: nouveau
3613 * DG08: drm: i915 resume force mode
3614 * DG09: drm: intel no tv hotplug
3615 * DG10: drm: i915 fix tvmode oops
3616
3617 * Sun Nov 22 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.6-4mdv
3618 - Release to 2010.0 updates
3619 - add patches:
3620 * DM20: md: add cond_resched to raid1 and raid10
3621 * DN50: hostap: Revert a toxic part of the conversion to
3622 net_device_ops (fixes MDV #55805, KBZ #14000)
3623 - update patches:
3624 * FR01: reiser4 for 2.6.31 final
3625 - drop patches:
3626 * FR02: reiser4 compiler fix, merged in FR01
3627
3628 * Thu Nov 19 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.6-3mdv
3629 - add patches:
3630 * DN01: ppp: enlarge upload buffer to cope with HSUPA connections
3631 * DP05: add samsung backlight support
3632 * FS10: xfs: fix bug in log recover with quota
3633 * MC50-MC52: add DazukoFS 3.1.1 (#24333)
3634 - update patches:
3635 * KP01: TuxOnIce 3.0.1 for 2.6.31.6
3636
3637 * Sun Nov 15 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.6-2mdv
3638 - Release to updates
3639
3640 * Tue Nov 10 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.6-1mdv
3641 - update to 2.6.31.6
3642 * CVE-2009-3547, CVE-2009-3612, CVE-2009-3621, CVE-2009-3624
3643 - include btcx-risc.h and bt848.h in kernel-devel, they are now
3644 required by bttvp.h which is already included and required by
3645 dkms-lirc-gpio (Anssi, #54907)
3646 - add patches:
3647 * DA15: acpi: more fixes to ACPICA Release 20090903
3648 * DN36: wireless: ath9k: fix misplaced semicolon on rate control
3649 - drop patches merged upstream:
3650 * AX20: x86: kernel e820 pad ram_alignment at 64MB
3651 * DA03: sata_nv: make sure link is brough up online when
3652 skipping hardreset
3653 * DA20: acpi: revert 'eeepc laptop prevent a panic when
3654 disabling RT2860 wireless when associated'
3655 * DC03: cpuidle: always return with interrupts enabled
3656 - rediff patches:
3657 * DA10, DA13, DA14: ACPICA Release 20090903
3658
3659 * Sat Oct 24 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.5-1mdv
3660 - update to 2.6.31.5 final
3661 - drop patch AA01: 2.6.31.5-rc1
3662
3663 * Wed Oct 21 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.4-4mdv
3664 - add patches:
3665 * DA20: revert part of DA14: eeepc-laptop: prevent a panic when
3666 disabling RT2860 wireless when associated (it breaks
3667 eeepc-laptop with other wireless hw)
3668
3669 * Sat Oct 17 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.4-3mdv
3670 - add patches:
3671 * AA01: 2.6.31.5-rc1
3672 * DA02: ahci: Add the generic nVidia ahci chipset id
3673 * DA03: sata_nv: make sure link is brough up online when
3674 skipping hardreset
3675 - drop patches merged upstream:
3676 * DN01: e1000e jumbo frame fix
3677 * DP10: Intel iommu vt-d bugfix
3678 - rediff patches:
3679 * disable-mrproper-in-devel-rpms
3680 * disable-prepare-scripts-configs-in-devel-rpms
3681
3682 * Thu Oct 15 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.4-2mdv
3683 - add patches:
3684 * DA14: acpi: more fixes to ACPICA Release 20090903
3685 * DA17: acpi: silence _BIF warning
3686 * DS51: alsa hda via: Remove 48k sample rate limit for spdif
3687
3688 * Tue Oct 13 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.4-1mdv
3689 - update to 2.6.31.4 final
3690 - drop merged patches:
3691 * AA01: 2.6.31.4-rc2
3692 - drop patch:
3693 * DH20: asus_atk0110 Asus p7p55d support
3694 (replaced by DH20, DH21 that got merged upstream)
3695 - add patches:
3696 * DH20: hwmon: asus_atk0110: Refactor the code
3697 * DH21: hwmon: asus_atk0110: enable the EC
3698
3699 * Sun Oct 11 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.3-2mdv
3700 - add patches:
3701 * AA01: 2.6.31.4-rc2 (CVE-2009-2903)
3702 * DA13: more fixes to ACPICA 20090903 release
3703 * DS21: alsa hda via: remove unused IS_VT17xxVENDORID macro
3704 * DS22: alsa hda via: change get_codec_type argument to hda_codec-type
3705 * DS23: alsa hda via: add VT1708B-CE codec support
3706 * DS24: alsa hda via: limit VT1702 AA Path-max volume
3707 * DS25: alsa hda via: add VIA_CTL_WIDGET_ANALOG_MUTE control type
3708 * DS26: alsa hda via: add low current mode for power saving
3709 * DS27: alsa hda via: remove unused argument of via_new_analog_input
3710 * DS28: alsa hda via: change VT1708S & VT1702 hp mode controls
3711 * DS29: alsa hda via: rewrite via_independent_hp_put
3712 * DS30: alsa hda via: add smart5.1 function
3713 * DS31: alsa hda via: when changing input source, update power state
3714 * DS32: alsa hda via: add VIA_JACK_EVENT process in via_unsol_event
3715 * DS33: alsa hda via: refresh front playback mute in via_hp_automute
3716 * DS34: alsa hda via: add jack detect feature for VT1708
3717 * DS35: alsa hda via: modify vt1708_set_pinconfig_connect function
3718 * DS36: alsa hda via: replace via_playback_pcm_prepare cleanup
3719 * DS37: alsa hda via: add 2nd SPDIF out for VT1708S and VT1702
3720 * DS38: alsa hda via: modify vt1708_auto_create_multi_out_ctls
3721 * DS39: alsa hda via: modify vt1709_auto_create_multi_out_ctls
3722 * DS40: alsa hda via: replace MIC_BOOST_VOLUME
3723 * DS41: alsa hda via: move backdoor verbs to vt17xx_volume_init_verb
3724 * DS42: alsa hda via: add VT1718S support
3725 * DS43: alsa hda via: add VT1828S and VT2020 support
3726 * DS44: alsa hda via: add VT1716S support
3727 * DS45: alsa hda via: add VT2002P support
3728 * DS46: alsa hda via: add VT1812 support
3729 * DS47: alsa hda via: rename vt1708_control_templates
3730 * DS48: alsa hda via: change PW4 connect select default to MW0
3731 * DS49: alsa hda via: comments update copyright changeset etc
3732 * DS50: alsa hda via: only cosmetic changes
3733 - rediff patches:
3734 * DA12: acpica 20090903 part3
3735 * DS01: alsa 1.0.21+ snapshot
3736 - drop patches merged in the new DA13:
3737 * DA13: acpi: ec: rewrite dmi checks
3738 * DA14: acpi: ec: dont parse DSDT for EC early init on Compal
3739 * DA15: acpi: ec: restart command even if no interrupts from ec
3740 * DA17: acpi: kill overly verbose throttling states log messages
3741 * DA21: sony-laptop: remove device_ctrl and the SPIC mini drivers
3742 * DA22: sony-laptop: SPIC unset IRQF_SHARED, set IRQF_DISABLED
3743 * DA23: sony-laptop: remove _INI call at init time
3744 * DA24: sony-laptop: Dont unregister the SPIC driver if it wasnt registered
3745
3746 * Thu Oct 8 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.3-1mdv
3747 - update to 2.6.31.3 (tty_port bug)
3748
3749 * Mon Oct 5 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.2-1mdv
3750 - update to 2.6.31.2 final
3751 - drop patches:
3752 * AA01: 2.6.31.2-rc1
3753 - add patches:
3754 * AX20: kernel: e820: pad ram_alignment at 64MB (mdv #54137, kbz #13940)
3755 * DC01: cpuidle: fix the menu governor to boost io performance
3756 * DC02: cpuidle: menu governor: reduce latency on exit
3757 * DC03: cpuidle: always return with interrupts enabled
3758 - redo the wireless ath9k patches based on fixes merged in 2.6.32-rc1 (#52739)
3759 * DN10: ath9k: downgrade ASSERT in ath_clone_txbuf
3760 * DN11: ath9k: make sure we configure a non-zero beacon interval
3761 * DN12: ath9k: differentiate quality reporting between legacy and HT conf
3762 * DN13: ath9k: remove unnecessary STATION mode check
3763 * DN14: ath9k: stop ani when the STA gets disconnected
3764 * DN15: ath9k: fix race condition in SCANNING state check during ANI calibration
3765 * DN16: ath9k: handle different TX and RX streams properly
3766 * DN17: ath9k: downgrade assert in rc.c for invalid rate
3767 * DN18: ath9k: manipulate and report the correct RSSI
3768 * DN19: ath9k: fix RX stucks during heavy traffic in HT40 mode
3769 * DN20: ath9k: fix TX hang issue with Atheros chipsets
3770 * DN21: ath9k: remove bogus assert in ath_clone_txbuf
3771 * DN22: ath9k: handle tx desc shortage more appropriately
3772 * DN23: ath9k: do not stop the queues in driver stop
3773 * DN24: ath9k: trivial fix in Kconfig
3774 * DN25: ath9k: update beacon RSSI
3775 * DN26: ath9k: fix bug in PCI resume
3776 * DN27: ath9k: set HW state properly
3777 * DN28: ath9k: fix TX poll cancelling
3778 * DN29: ath9k: fix bug in retrieving average beacon rssi
3779 * DN30: ath9k: fix read buffer overflow
3780 * DN31: ath9k: claim irq for ath9k not ath for pci
3781 * DN32: ath9k: fix bug in ANI channel handling
3782 * DN33: ath9k: do a full reset for AR9280
3783 * DN34: ath9k: disable autosleep feature by default
3784 * DN35: ath9k: fix RFKILL bugs
3785
3786 * Mon Oct 5 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-12mdv
3787 - update patches:
3788 * DH20: hwmon: add Asus P7P55D support to asus_atk0110 v6
3789
3790 * Sat Oct 3 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-11mdv
3791 - update patches:
3792 * DA13: acpi: ec: rewrite dmi checks
3793 * DA15: acpi: ec: restart command even if no interrupts from ec
3794 - add patches:
3795 * DA14: acpi: ec: dont parse DSDT for EC early init on Compal
3796 * DA16: acpi: get rid of registered as cooling_deviceX messages
3797 * DA17: acpi: kill overly verbose throttling states log messages
3798 * DN01: net: e1000e jumbo frames no longer work
3799 * KH01: hrtimer: eliminate needless reprogramming of clock events
3800 * NI20: net: splice from tcp to pipe should take into account O_NONBLOCK
3801
3802 * Fri Oct 2 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-10mdv
3803 - revert patches:
3804 * DH20: hwmon: add Asus P7P55D support to asus_atk0110 v5 -> v3
3805
3806 * Fri Oct 2 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-9mdv
3807 - add patches:
3808 * AA01: 2.6.31.2-rc1
3809 * DM51: v4l-dvb snapshot buildfix
3810 * DS02: Alsa snapshot buildfix
3811 - update patches:
3812 * DG01: drm-next 2009-10-02
3813 * DG04: drm-nouveau 2009-10-02
3814 * DH20: hwmon: add Asus P7P55D support to asus_atk0110 v5
3815 * DM50: v4l-dvb snapshot 2009-10-02
3816 * DP03: acerhdf: Limit modalias matching to supported boards
3817 * DS01: Alsa 1.0.21+ snapshot 2009-10-02
3818 * DS10: Alsa 1.0.21+ unstable Via vt1732 (Envy24-II)
3819 - refiff patches:
3820 * DA10: acpica 20090903
3821 - drop patches merged in 2.6.31.2-rc1
3822 * AX02: x86: increase min_gap to include randomized stack
3823 * DA02: ahci: restore pci_intx handling
3824 * DA50: pata_amd: do not filter out valid modes in nv_mode_filter
3825 * DC01: driver core: add new device to bus's list before probing
3826 * DG11: drm: i915: remove restore in resume
3827 * DG12: drm: i915: only destroy a constructed mmap offset
3828 * DG13: drm: i915: prevent fifo calculation overflows on 32 bits with
3829 high dotclocks
3830 * DG14: drm: i915: add buffer to inactive list immediately during fault
3831 * DG15: drm: i915: check that the relocation points to within the target
3832 * DG16: drm: i915: fix typo for wrong lvds clock setting on igdng
3833 * DG17: drm: i915: fix ssc frequence for igdng
3834 * DG18: drm: i915: remove dac disable in crt force detect on igdng
3835 * DG19: drm: i915: fix lvds panel fitting on arrandale
3836 * DV01: fbcon: only unbind from console if successfully registered
3837 * FC10: cifs: re-enable lanman security
3838 * FI01: fs: make sure data stored into inode is properly seen before
3839 unlocking new inode
3840
3841 * Thu Oct 1 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-8mdv
3842 - add patches:
3843 * DA02: ahci: restore pci_intx handling
3844 * FC10: cifs: re-enable lanman security
3845 - revert patches:
3846 * DH20: hwmon: add Asus P7P55D support to asus_atk0110 v4 -> v3
3847
3848 * Thu Oct 1 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-7mdv
3849 - add patches:
3850 * AX02: x86: increase min_gap to include randomized stack
3851 * DA50: pata_amd: do not filter out valid modes in nv_mode_filter
3852 * DG11: drm: i915: remove restore in resume
3853 * DG12: drm: i915: only destroy a constructed mmap offset
3854 * DG13: drm: i915: prevent fifo calculation overflows on 32 bits with
3855 high dotclocks
3856 * DG14: drm: i915: add buffer to inactive list immediately during fault
3857 * DG15: drm: i915: check that the relocation points to within the target
3858 * DG16: drm: i915: fix typo for wrong lvds clock setting on igdng
3859 * DG17: drm: i915: fix ssc frequence for igdng
3860 * DG18: drm: i915: remove dac disable in crt force detect on igdng
3861 * DG19: drm: i915: fix lvds panel fitting on arrandale
3862 * DP03: acerhdf: Limit modalias matching to supported boards
3863 * DV01: fbcon: only unbind from console if successfully registered
3864 * FI01: fs: make sure data stored into inode is properly seen before
3865 unlocking new inode
3866 - update patches:
3867 * DH20: hwmon: add Asus P7P55D support to asus_atk0110 v4
3868
3869 * Tue Sep 29 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-6mdv
3870 - add patches:
3871 * DA14: acpi: ec: Restart command even if no interrupts from ec
3872
3873 * Tue Sep 29 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-5mdv
3874 - switch to xz compressed patch tarball
3875 - add patches:
3876 * DA13: acpi: ec: rewrite dmi checks
3877 * SM01: compress kernel modules on 'make modules_install' instead
3878 of after (in spec), as it makes the kernel build require less
3879 disk space, and also benefits people building their own kernels
3880 from source (#54028)
3881 - update patches:
3882 * DH20: hwmon: add Asus P7P55D support to asus_atk0110 v3
3883 - enable in defconfigs:
3884 * PRINTK_TIME (for easier debugging)
3885 * TIMER_STATS (for powertop)
3886
3887 * Mon Sep 28 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-4mdv
3888 - add patches:
3889 * DA12: more fixes to ACPICA Release 20090903
3890 * DA21: sony-laptop: remove device_ctrl and the SPIC mini drivers
3891 * DA22: sony-laptop: SPIC unset IRQF_SHARED, set IRQF_DISABLED
3892 * DA23: sony-laptop: remove _INI call at init time
3893 * DA24: sony-laptop: Dont unregister the SPIC driver if it wasnt registered
3894 - drop patches:
3895 * KS10: disable NEW_FAIR_SLEEPERS, as it does not play nice with
3896 quad core systems...
3897
3898 * Sat Sep 26 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-3mdv
3899 - update patches:
3900 * DM50: v4l-dvb snapshot 2009-09-26
3901 * DS01: Alsa 1.0.21+ snapshot 2009-09-26
3902 * DS10: Alsa 1.0.21+ unstable Via vt1732 (Envy24-II)
3903 - update defconfigs
3904
3905 * Sat Sep 26 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-2mdv
3906 - drop patches:
3907 * DH10: old Atom coretemp support
3908 * DH11: old Lynnfield coretemp support
3909 - add patches:
3910 * DA11: fixes to ACPICA Release 20090903
3911 * DC01: driver core: add new device to bus's list before probing
3912 * DH10: hwmon: coretemp: enable the Intel Atom support
3913 * DH11: hwmon: coretemp: Fix Atom CPUs support
3914 * DH12: hwmon: coretemp: Add support for Penryn mobile CPUs
3915 * DH13: hwmon: coretemp: Add Lynnfield CPU support
3916 * KS01: sched: Introduce SCHED_RESET_ON_FORK scheduling policy
3917 * KS02: sched: Clean up SCHED_RESET_ON_FORK
3918 * KS03: sched: Add SCHED_RESET_ON_FORK functionality for nice
3919 * KS10: sched: Disable NEW_FAIR_SLEEPERS
3920 - update patches:
3921 * KP01: TuxOnIce 3.0.1 for 2.6.31.1
3922 * NB10: clean ndiswrapper tarball (remove headers generated at buildtime)
3923 - rename patches:
3924 * DH12 is now DH20: Asus P7P55D support
3925
3926 * Thu Sep 24 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31.1-1mdv
3927 - update to 2.6.31.1 final
3928 - drop patches:
3929 * AA01: 2.6.31.1-rc1
3930 - update patches:
3931 * FS01: unionfs 2.5.3
3932 - Disable otus staging driver: ar9170 in wireless tree should
3933 already handle it. Also Kconfig otus description states that it
3934 needs a special wpa_supplicant. (Herton, main kernel)
3935 - Disable build of aedsp16 oss driver: the snd-sc6000 alsa driver
3936 should now handle all support for same cards it supports, as
3937 stated in kernel changelog. (Herton, main kernel)
3938
3939 * Tue Sep 22 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-8mdv
3940 - update patches:
3941 * DH12: hwmon: add Asus P7P55D support to asus_atk0110 v2
3942
3943 * Sun Sep 20 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-7mdv
3944 - add patches:
3945 * DA10: ACPICA Release 20090903 + ACPI 4.0 support
3946 * DH12: hwmon: add Asus P7P55D support to asus_atk0110
3947 - update defconfigs
3948
3949 * Sat Sep 19 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-6mdv
3950 - update patches:
3951 * DG01: drm-next 2009-09-18
3952 * KP01: TuxOnIce 3.0.1 for 2.6.31
3953 - drop patches:
3954 * DG11: drm/radeon/kms: radeon_get_clock_info() call move,
3955 merged in the updated drm-next checkout
3956 - require kernel-firmware-20090604-4mnb that has the firmware
3957 from drm-next 2009-09-18
3958
3959 * Sat Sep 19 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-5mdv
3960 - require kernel-firmware-20090604-3mnb that has the fixed
3961 radeon firmware tarball
3962 - require mkinitrd-6.0.92-12mnb wich has fixed hotplug firmware
3963 loading for radeon drivers
3964 - fix warnings when not building source/devel rpms (noted by Thierry)
3965 - spec cleanups
3966 - update patches:
3967 * DM50: v4l-dvb snapshot 2009-09-19
3968 * DS01: Alsa 1.0.21+ snapshot 2009-09-19
3969 - update defconfigs
3970
3971 * Thu Sep 17 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-4mdv
3972 - add patches:
3973 * DG11: drm/radeon/kms: Move radeon_get_clock_info() call
3974 out of radeon_clocks_init() (Thierry)
3975 * DH11: hwmon: add Intel Lynnfield support to coretemp
3976 - require kernel-firmware >= 20090604-2mnb to get the radeon
3977 firmware that is now splitted out in drm-next
3978
3979 * Thu Sep 17 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-3mdv
3980 - add patches:
3981 * AA01: 2.6.31.1-rc1
3982 * DA01: ahci: Add AMD SB900 SATA/IDE controller support
3983 * DG10: intel agp/drm: Fix the pre-9xx chipset flush
3984 - update patches:
3985 * DG04: drm-nouveau
3986 * DI01: lirc 2009-09-03
3987 - disable radeon kernel modesetting as userspace cant handle it
3988
3989 * Fri Sep 11 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-2mdv
3990 - update patches:
3991 * DG01: drm-next
3992 * DG07: drm-page-flip
3993 - drop patches:
3994 * DG02: drm-r600-kms (merged in DG01)
3995 * DG03: drm-rv710-ucode-fix (merged in DG01)
3996 * DG09: drm-intel-pm (broken)
3997 - update defconfigs
3998
3999 * Thu Sep 10 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-1mdv
4000 - update to 2.6.31 final
4001
4002 * Sun Sep 6 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc9.1mdv
4003 - update to 2.6.31-rc9
4004 - drop merged patches:
4005 * AA01: 2.6.21-rc8-git1
4006 * DG08: drm-intel-next
4007 - update patches:
4008 * DM50: v4l-dvb snapshot 2009-09-06
4009 * DS01: Alsa 1.0.21+ snapshot 2009-09-06
4010 - update defconfigs
4011
4012 * Mon Aug 31 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc8.5mdv
4013 - bump release to get past BS (rc8.4mdv only partially uploaded)
4014
4015 * Sun Aug 30 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc8.4mdv
4016 - add patches:
4017 * AA01: 2.6.31-rc8-git1
4018 * AX01: detect stack protector support for i386 builds on x86_64
4019 * FR02: reiser4: add missing parenthesis to avoid compiler confusion
4020 - drop patches:
4021 * FN01-FN03: inotify fixes, merged upstream
4022
4023 * Fri Aug 28 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc8.3mdv
4024 - add patches:
4025 * FN02: inotify: fix length reporting and size checking
4026 * FN03: inotify: update the group mask on mark addition
4027
4028 * Fri Aug 28 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc8.2mdv
4029 - add patches:
4030 * FC01: implement __[un]register_chrdev support
4031 * FN01: fix inotify regression in -rc8 causing boot hang/failure
4032 - update patches:
4033 * DI01: lirc support
4034 * DM50: v4l-dvb snapshot 2009-08-28
4035 * DS01: Alsa 1.0.20+ snapshot 2009-08-28
4036 - resync drm tree with fedora 2.6.31-rc7-git6
4037 * DG01: drm-next
4038 * DG02: drm-r600-kms
4039 * DG03: drm-rv710-ucode-fix
4040 * DG04: drm-nouveau
4041 * DG05: drm-i915-resume-force-mode
4042 * DG06: drm-intel-big-hammer
4043 * DG07: drm-page-flip
4044 * DG08: drm-intel-next
4045 * DG09: drm-intel-pm
4046 - update defconfigs
4047
4048 * Fri Aug 28 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc8.1mdv
4049 - update to 2.6.31-rc8
4050 - drop patch AA00: rc7-git-current
4051
4052 * Thu Aug 27 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc7.5.2mdv
4053 - update to 2.6.31-rc7-git5
4054 - add patch AA00: rc7-git-current
4055 - update defconfigs:
4056 support 16 physical/virtual processors/cores on -desktop kernel
4057 unset UEVENT_HELPER_PATH
4058 make AGP builtin
4059 disable a lot of non-x86 drivers
4060
4061 * Sat Aug 22 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc7.1mdv
4062 - update to 2.6.31-rc7
4063 - drop merged patces:
4064 * DS05: Toshiba Pro A210 ids in Alsa hda codec
4065 - update patches:
4066 * DM50: v4l-dvb snapshot 2009-08-22
4067 * DS01: Alsa 1.0.20+ 2009-08-22
4068 - add patches:
4069 * DP10: add workaround for broken bioses on vt-d enabled hardware
4070 * DN10: ath9k: downgrade ASSERT in ath_clone_txbuf
4071 * DN11: ath9k: manipulate and report the correct RSSI
4072 * DN12: ath9k: RX stucks during heavy traffic in HT40 mode
4073 * DN13: ath9k: handle tx desc shortage more appropriately
4074 * DN14: ath9k: trivial fix in Kconfig
4075 * DN15: ath9k: update beacon RSSI
4076 * DN16: ath9k: fix bug in PCI resume
4077 * DN17: ath9k: set HW state properly
4078 * DN18: ath9k: fix bug in retrieving average beacon rssi
4079 - enable ATH5K_DEBUG, ATH9K_DEBUG
4080
4081 * Sun Aug 16 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc6.2mdv
4082 - update patches:
4083 * DM50: v4l-dvb snapshot 2009-08-15
4084 * DS01: Alsa 1.0.20+ snapshot 2009-08-15
4085 * DS10: Alsa 1.0.20+ unstable Via vt1732 (Envy24-II)
4086 - disable MAC80211_DEFAULT_PS (powersaving) as it's known to cause
4087 instabilities and performance regressions on atleast iwlwifi drivers.
4088
4089 * Fri Aug 14 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc6.1mdv
4090 - update to 2.6.31-rc6
4091
4092 * Thu Aug 13 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc5.9.7mdv
4093 - update to 2.6.31-rc5-git9
4094 - update patch:
4095 * DG02: drm: nouveau git 2009-08-12
4096
4097 * Tue Aug 11 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc5.7.6mdv
4098 - update to 2.6.31-rc5-git7
4099
4100 * Sat Aug 8 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc5.5.5mdv
4101 - update to 2.6.31-rc5-git5
4102 - drop merged patches:
4103 * DG01: drm: radeon updates
4104 * NC01: net: core lockdep bug
4105
4106 * Fri Aug 7 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc5.3.4mdv
4107 - add patches:
4108 * DG01: drm: radeon rs880 pci ids, radeon kms TTM patch,
4109 radeon kms suspend/resume fix.
4110 * NC01: fix lockdep bug in net core
4111 - update patches:
4112 * DG02: drm: nouveau git 2009-08-07
4113
4114 * Wed Aug 5 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc5.3.3mdv
4115 - update to 2.6.31-rc5-git3
4116 - update patches:
4117 * KP01: TuxOnIce 3.0.1+ for 2.6.31-rc5
4118 * MC40: fsc_btns 2.1.0
4119 - rediff patches:
4120 * DS01: Alsa 1.0.20+ update
4121 * MC41: fsc_btns Kconfig & Makefile fix
4122 - drop patches:
4123 * MB30-MB33: acerhk in 3rdparty, as everything it can is now
4124 supported by acer-wmi + rfkill utility
4125 * MC42: fsc_btns buildfix
4126
4127 * Tue Aug 4 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc5.2.2mdv
4128 - update to 2.6.31-rc5-git2
4129
4130 * Sat Aug 1 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc5.1mdv
4131 - update to 2.6.31-rc5
4132 - update patches:
4133 * DG02: nouveau git 2009-08-01
4134 * DM50: v4l-dvb snapshot 2009-07-31
4135 * DS01: Alsa 1.0.20+ snapshot 2009-07-31
4136 * DS10: Alsa 1.0.20+ unstable Via vt1732 (Envy24-II)
4137 - drop patches:
4138 * DG10: nouveau buildfix
4139 * DM51: dvb: af9015 eeprom_dump temp buffer fix (merged in DM50)
4140 * DS11: Alsa 1.0.20+ unstable cirrus cs420x (merged in DS01)
4141 - update defconfigs
4142
4143 * Thu Jul 30 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc4.4.5mdv
4144 - update to 2.6.31-rc4-git4
4145 - drop patch AA00: 2.6.31-rc4-git1
4146 - add patch DG10: fix nouveau build
4147
4148 * Tue Jul 28 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc4.4mdv
4149 - add patches:
4150 AA00: 2.6.31-rc4-git1
4151 DM51: dvb: af9015: avoid magically sized temporary buffer in eeprom_dump
4152 DP02: dell-laptop: Fix rfkill state setting
4153 - drop merged patches:
4154 * DP01: acer-wmi reversed rfkill fix
4155 * NR01: rfkill_set_states fix
4156 - rediff patches:
4157 * DM50: v4l-dvb snapshot
4158 * DS01: Alsa 1.0.20+ snapshot
4159
4160 * Sat Jul 25 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc4.3mdv
4161 - add patch KP10: re-export find_task_by_vpid symbol for fglrx
4162
4163 * Fri Jul 24 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc4.2mdv
4164 - update patches:
4165 * DG02: nouveau support
4166 * DM50: v4l-dvb snapshot 2009-07-24
4167 * DS01: Alsa 1.0.20+ snapshot 2009-07-24
4168 * DS10: Alsa 1.0.20+ unstable via-vt1732
4169 * DS11: Alsa 1.0.20+ unstable cirrus-cs420x
4170 * KP01: TuxOnIce 3.0.1 (fixed, and re-enabled in laptop kernel)
4171 - disable SND_PCSP (F. Himpe, #52432)
4172 - update defconfigs
4173
4174 * Thu Jul 23 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc4.1mdv
4175 - update to 2.6.31-rc4
4176 - add patch DH02: make hid-ntrig ignore HID_DG_INRANGE (O. Thauvin)
4177 - update defconfigs
4178
4179 * Mon Jul 20 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc3.4.3mdv
4180 - update to 2.6.31-rc3-git4
4181
4182 * Thu Jul 16 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc3.3.2mdv
4183 - update to 2.6.31-rc3-git3
4184 - add patches:
4185 * DP01: fix acer-wmi reversed rfkill
4186 * NR01: rfkill: fix rfkill_set_states to set the hw state
4187
4188 * Tue Jul 14 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc3.1mdv
4189 - update to 2.6.31-rc3
4190 - update defconfigs
4191
4192 * Sun Jul 12 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc2.8.3mdv
4193 - update to 2.6.31-rc2-git8
4194 - rediff patch DS01: Alsa 1.0.20+ snapshot
4195 - add patch:
4196 * MB14: fix ndiswrapper to build on ix86 with recent cmpxchg8b changes
4197 - disable broken patch:
4198 * CE02: Acpi DSDT initrd support (breaks boot on x86_64)
4199 - enable in defconfigs:
4200 * DMAR_BROKEN_GFX_WA, RFKILL_INPUT
4201 - disable in defconfigs:
4202 * DMAR_DEFAULT_ON
4203
4204 * Fri Jul 10 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc2.5.2mdv
4205 - update to 2.6.31-rc2-git5
4206
4207 * Fri Jul 10 2009 Thomas Backlund <tmb@mandriva.org> 2.6.31-0.rc2.4.1mdv
4208 - update to 2.6.31-rc2-git4
4209 - drop patches merged upstream:
4210 * DC01: avoid oom lockup on /dev/zero
4211 * DG06-DG26: drm updates
4212 * DH15: asus hwmon atk0110 support
4213 * DH20: wacom bluetooth support
4214 * DI10: wacom intuos4 support
4215 * DN16: r8169: use family-specific defaults for unknown chips
4216 * DS02: Alsa buildfixes
4217 * DU01: qcserial support
4218 * FN01: nfsd: report short writes
4219 * FS15: ext4: Avoid corrupting the uninitialized bit in the extent
4220 during truncate
4221 - update patches:
4222 * CE02: Acpi DSDT support (from main)
4223 * DG02: drm: nouveau (2.6.31-0.42.rc2.fc12)
4224 * DG03: drm: no gem on i8xx (2.6.31-0.42.rc2.fc12)
4225 * DG04: drm: i915 resume force mode (2.6.31-0.42.rc2.fc12)
4226 * DG05: drm: intel big hammer (2.6.31-0.42.rc2.fc12)
4227 * DI01: input: lirc (2.6.31-0.42.rc2.fc12)
4228 * DM10: dm-raid45 support
4229 * DM50: v4l-dvb snapshot 2009-07-09
4230 * DS01: Alsa 1.0.20+ snapshot 2009-07-09
4231 * FR01: Reiser4 support
4232 * MB10-MB13: Ndiswrapper 1.55 (from main)
4233 * MC30-MC34: Drbd 8.3.2 (from main)
4234 - add patches:
4235 * MB33: acerhk proc_dir_entry owner buildfix (from main)
4236 - drop unneeded patches:
4237 * DN01: bonding module alias
4238 * DN10: net: revert forcedeth power down phy when interface is down
4239 * DS04: sound: usb-gadget gmidi buildfix with updated alsa
4240 - disable broken patches:
4241 * DG00: drm: drm-next
4242 * DG01: drm: radeon modesetting
4243 * FS01: unionfs 2.5.2
4244 * KP01: tuxonice 3.0.1
4245 * MM01: saner vm settings
4246 - disable in defconfigs:
4247 * LIRC_I2C, LIRC_ZILOG, STLC45XX, VT6655 (broken)
4248 - update defconfigs
4249
4250 * Fri Jul 3 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.6-1mdv
4251 - update to 2.6.29.6
4252 - update patches:
4253 * DM50: v4l-dvb snapshot 2009-07-03
4254 * DM51: v4l-dvb snapshot 2009-07-03 buildfix
4255 * DS01: Alsa 1.0.20+ snapshot 2009-07-03
4256 * DS02: Alsa 1.0.20+ snapshot 2009-07-03 buildfix
4257 * DS10: Alsa 1.0.20+ unstable 2009-07-03 via-vt1732
4258 - add patches:
4259 * DS11: Alsa 1.0.20+ unstable 2009-07-03 cirrus-cs420x
4260 - drop patches merged upstream:
4261 * DN15: net: r8169: fix crash when large packets are received
4262 * FS10: fs: jbd: fix race in buffer processing in commit code
4263 - re-enable in 64bit server kernels:
4264 * NUMA, K8_NUMA, X86_64_ACPI_NUMA, NODES_SPAN_OTHER_NODES
4265 * NODES_SHIFT=6, NEED_MULTIPLE_NODES, MIGRATION
4266 * HAVE_ARCH_EARLY_PFN_TO_NID, ACPI_NUMA
4267 - update defconfigs
4268
4269 * Fri Jun 26 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.5-3mdv
4270 - reenable in defconfigs:
4271 * TASKSTATS, TASK_DELAY_ACCT, TASK_XACCT, TASK_IO_ACCOUNTING
4272 * AUDIT, AUDITSYSCALL, AUDIT_TREE, AUDIT_GENERIC
4273
4274 * Mon Jun 22 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.5-2mdv
4275 - full resync of drm with Fedora 2.6.29.5-191.fc11:
4276 * DG00: drm-next
4277 * DG01: drm modesetting radeon
4278 * DG02: drm nouveau
4279 * DG03: drm no gem on i8xx
4280 * DG04: drm i915 resume force mode
4281 * DG05: drm intel big hammer
4282 * DG06: drm intel lying systems without lvds
4283 * DG07: drm intel gen3 fb hack
4284 * DG08: drm intel hdmi edid fix
4285 * DG09: drm intel tiling transition
4286 * DG10: drm intel next
4287 * DG11: drm intel debugfs ringbuffer
4288 * DG12: drm edid ignore tiny modes
4289 * DG13: drm intel include 965gme pci id
4290 * DG14: drm intel gem use dma32 on pae
4291 * DG15: drm intel i8xx cursors
4292 * DG16: drm intel vmalloc
4293 * DG17: drm copyback ioctl data to userspace regardless of retcode
4294 * DG18: drm i915 apply a big hammer to 865 gem object
4295 * DG19: drm i915 fix tiling pitch
4296 * DG20: drm intel set domain on fault
4297 * DG21: drm modesetting radeon fixes
4298 * DG22: drm radeon fix ring commit
4299 * DG23: drm radeon new pciids (RV740)
4300 * DG24: drm dont frob i2c
4301 * DG25: drm connector dpms fix
4302 * DG26: drm intel tv fix
4303 - add patches:
4304 * DC01: avoid lockup on OOM with /dev/zero
4305 * DN16: r8169: use family-specific defaults for unknown chips
4306 * FN01: nfsd: report short writes count to the client
4307 * MM01: set saner vm settings: raise default dirty level, lower swappiness
4308 - Disable COMEDI_PCI_DRIVERS. At least one module built with it enabled
4309 (s626) claims the pci id 1131:7146 for all subvendors and subdevice ids.
4310 The problem is that this will clash with many media/dvb cards. (#51314)
4311
4312 * Thu Jun 18 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.5-1mdv
4313 - update to 2.6.29.5 (CVE-2009-1630, CVE-2009-1385)
4314 - drop patches merged upstream:
4315 * AA01: 2.6.29.5-rc1
4316 - add patches:
4317 * FS15: ext4: Avoid corrupting the uninitialized bit in the extent
4318 during truncate
4319 - update patches:
4320 * DM50: v4l-dvb snapshot 2009-06-18
4321 * DS01: Alsa 1.0.20+ snapshot 2009-06-18
4322 * DS02: ALsa snapshot buildfix
4323 * DS10: Alsa 1.0.20+ unstable addon: via vt1732 (Envy24-II)
4324 * FS01: unionfs 2.5.2
4325 - rediff patches:
4326 * DS05: add Toshiba Pro A210 to quirk table
4327 - update defconfigs
4328
4329 * Wed Jun 10 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.4-7mdv
4330 - add patches:
4331 * DN15: net: r8169: fix crash when large packets are received
4332 * FS10: fs: jbd: fix race in buffer processing in commit code
4333 - more defconfig optimizations:
4334 * disable in defconfigs:
4335 * DETECT_SOFTLOCKUP, EARLY_PRINTK, SCHED_DEBUG, SCHEDSTATS, TIMER_STATS
4336 * JFS_STATISTICS, OCFS2_FS_STATS, CIFS_STATS
4337 * enable in defconfigs:
4338 * SND_HDA_RECONFIG, INTR_REMAP
4339
4340 * Tue Jun 9 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.4-6mdv
4341 - more defconfig optimizations:
4342 * disable in defconfigs:
4343 * AUDIT, AUDITSYSCALL, AUDIT_TREE, AUDIT_GENERIC
4344 * PARAVIRT_GUEST, VMI, KVM_CLOCK, KVM_GUEST, LGUEST_GUEST
4345 * PARAVIRT, PARAVIRT_CLOCK, NETLABEL, NETFILTER_DEBUG
4346 * IP_NF_SECURITY, IP6_NF_SECURITY, IWLWIFI_DEBUG, IWL3945_DEBUG
4347 * HISAX_DEBUG, SECURITY, SECURITY_NETWORK, SECURITY_NETWORK_XFRM
4348 * SECURITY_PATH, SECURITY_FILE_CAPABILITIES, SECURITY_DEFAULT_MMAP_MIN_ADDR
4349 * NUMA, K8_NUMA, X86_64_ACPI_NUMA, NODES_SPAN_OTHER_NODES, NODES_SHIFT
4350 * NEED_MULTIPLE_NODES, MIGRATION, HAVE_ARCH_EARLY_PFN_TO_NID, ACPI_NUMA
4351 * enable in defconfigs:
4352 * JFS_SECURITY, DIRECT_GBPAGES
4353
4354 * Tue Jun 9 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.4-5mdv
4355 - add patches:
4356 * AA00: 2.6.29.5-rc1
4357 * LG01: add note about latencytop bloat in Kconfig.debug
4358 - drop patches merged upstream:
4359 * AA01-AA27: Stable Queue patches
4360 * FE02-FE09: ext4 fixes
4361 - rediff patches:
4362 * DG00: drm-next
4363 - disable in defconfigs:
4364 * LATENCYTOP - it bloats task_struct by effectively quadrupling
4365 the size of an otherwise lean task_struct
4366
4367 * Mon Jun 8 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.4-4mdv
4368 - Release to Updates
4369
4370 * Mon Jun 1 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.4-3mdv
4371 - resync drm patches with Fedora 2.6.29.4-167.fc11
4372 * DG01: drm: no gem on i8xx
4373 * DG03: drm: nouveau
4374 * DG10: drm: i915: apply a big hammer to 865 gem object
4375 * DG20: drm: copyback ioctl data to userspace regardless of retcode
4376 * DG21: drm: i915: fix tiling pitch
4377 * DG22: drm: intel: set domain on fault
4378 - enable in defconfigs:
4379 * PCSPKR_PLATFORM, X86_CHECK_BIOS_CORRUPTION, EFI, IPV6_ROUTER_PREF,
4380 * IPV6_ROUTE_INFO, IPV6_OPTIMISTIC_DAD, IPV6_MROUTE, IPV6_PIMSM_V2,
4381 * IP_VS_IPV6, SCTP_HMAC_MD5, SERIAL_8250_RSA, CIFS_EXPERIMENTAL,
4382 * CIFS_DFS_UPCALL
4383 - disable in defconfigs:
4384 * CONFIG_SYSFS_DEPRECATED_V2, KALLSYMS_EXTRA_PASS, SCTP_HMAC_NONE,
4385 * WIRELESS_OLD_REGULATORY
4386 - set as module in defconfigs
4387 * IDE
4388
4389 * Sun May 31 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.4-2mdv
4390 - stable queue patches:
4391 * AA01: xfrm: wrong hash value for temporary sa
4392 * AA02: tcp: fix-msg_peek-race-check
4393 * AA03: tcp: fix 2 iw selection
4394 * AA04: net: fix skb_seq_read returning wrong offset length for page
4395 frag data
4396 * AA05: sch_teql: should not dereference skb after ndo_start_xmit
4397 * AA06: net: fix length computation in rt_check_expire
4398 * AA07: net: fix rtable leak in net ipv4 route.c
4399 * AA08: revert rose zero length frame filtering in af_rose.c
4400 * AA09: pktgen: do not access flows beyond its length
4401 * AA10: myr10ge: again fix lro_gen_skb alignment
4402 * AA11: vlan: macvlan: fix-null-pointer-dereferences-in-ethtool-handlers
4403 * AA12: mac8390: fix regression caused during net_device_ops conversion
4404 * AA13: bonding: fix alb mode locking regression
4405 * AA14: bonding: remove debug printk
4406 * AA15: r8169: avoid losing msi interrupts
4407 * AA16: sparc: fix bus type probing for esp and le devices
4408 * AA17: sparc64: fix smp_callin locking
4409 * AA18: mm: slub fix reclaim_state
4410 * AA19: fix: oops on close of hot unplugged ftdi serial converter
4411 * AA20: wimax: fix oops if netlink fails to add attribute
4412 * AA21: nfs: fix nfs v4 client handling of may_exec in nfs_permission
4413 * AA22: futex: setup writeable mapping for futex ops which modify user
4414 space data
4415 * AA22: xen: blkfront allow xenbus state transition to closing closed
4416 when not connected
4417 * AA23: tpm: get_event_name stack corruption
4418 * AA24: icom: fix rmmod crash
4419 * AA25: kvm: make paravirt tlb flush also reload the pae pdptrs
4420 * AA26: kvm: fix pdptr reloading on cr4 writes
4421 * AA27: cfg80211: fix race between core hint and drivers custom apply
4422 - add drm patches from fc11.155
4423 * DG17: drm: intel include 965gme pci id
4424 * DG18: drm: intel i8xx cursors
4425 * DG19: drm: intel vmalloc
4426 - add paches:
4427 * DN10: net: revert forcedeth power down phy when interface is down
4428 * FE05: ext4: really print warning once
4429 * FE06: ext4: prealloc fixes
4430 * FE07: ext4: fake delalloc bno
4431 * FE08: ext4: clear unwritten flag
4432 * FE09: ext4: fix i_cached_extent race
4433
4434 * Wed May 20 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.4-1mdv
4435 - update to 2.6.29.4 (CVE-2009-1184, CVE-2009-1337)
4436 * http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.29.4
4437 * http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.29.3
4438 - add patches:
4439 * DG15: drm: intel tiling transition
4440 * DG16: drm: intel-next
4441 * DS04: fix usb gadget gmidi build with updated Alsa
4442 - update patches:
4443 * DG00: drm: drm-next
4444 * DG02: drm: radeon modesetting
4445 * DG03: drm: nouveau
4446 * DM50: v4l-dvb snapshot 2009-05-16
4447 * DS01: Alsa 1.0.20+ 2009-05-16
4448 * DS02: Alsa 1.0.20+ buildfixes
4449 * DS10: selected Alsa unstable addons (maya44 &via vt1732)
4450 - drop merged patches:
4451 * AA01-AA18: Stable Queue patches
4452 * DA01: ACPI: revert BIOS mangled PRT bugfix
4453 * DG14: drm: i915 allow tiled front buffers on 965
4454 * DM51: v4l-dvb snapshot buildfix
4455 * DS11: alsa sbxfi emu10k1 support (replaced in DS01 with ctxfi that
4456 supports emu10k1, emu20k1 & emu20k2)
4457 - update defconfigs
4458
4459 * Fri May 1 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.2-3mdv
4460 - add patch DA01: ACPI: Revert conflicting workaround for BIOS with
4461 mangled PRT entries (mdv bz #46222)
4462
4463 * Fri May 1 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.2-2mdv
4464 - add patches from stable queue
4465 * AA13: b44: use kernel dma addresses for the kernel dma api
4466 * AA14: block: include empty disks in proc diskstats
4467 * AA15: crypto: ixp4xx: fix handling of chained sg buffers
4468 * AA16: exit_notify: kill the wrong capable check (CVE-2009-1337)
4469 * AA17: pci: fix incorrect mask of pm no_soft_reset bit
4470 * AA18: unreached code in selinux_ip_postroute_iptables_compat (CVE-2009-1184)
4471
4472 * Mon Apr 27 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.2-1mdv
4473 - update to 2.6.29.2: CVE-2009-1192, CVE-2009-0795
4474 * http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.29.2
4475 - drop patch AA00: 2.6.29.2-rc1
4476 - add patches from stable queue:
4477 * AA02: mac80211: fix bug in getting rx status for frames
4478 pending in reorder buffer
4479 * AA03: b43: poison rx buffers
4480 * AA04: b43: refresh rx poison on buffer recycling
4481 * AA05: thinkpad-acpi: fix led blinking through timer trigger
4482 * AA06: mac80211: fix basic rate bitmap calculation
4483 * AA07: kvm-mmu: fix off by one calculating large page count
4484 * AA08: kvm-mmu: disable global page optimization
4485 * AA09: kvm: fix overlapping check for memory slot
4486 * AA10: kvm: x86 release time_page on vcpu destruction
4487 * AA11: usb: unusual device support for gold mp3 player energy
4488 * AA12: virtio-rng: remove false bug for spurious callbacks
4489
4490 * Fri Apr 24 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.1-5mdv
4491 - add patches from stable queue:
4492 * AA00: 2.6.29.2-rc1
4493 * AA01: forcedeth: fix resume from hibernation regression
4494 - rediff patches:
4495 * DG00: drm-next
4496 * DM50: v4l-dvb snapshot
4497 * DS01: alsa snapshot
4498 - drop patches merged upstream:
4499 * AX01: pat fixes to allow GTT maps to work on intel
4500 * DM20: fix oops in md raid1
4501
4502 * Fri Apr 24 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.1-4mdv
4503 - dm-raid45 target is finally back:
4504 * DM10: dm-raid45 20090424 for 2.6.29.1
4505 * DM13: add dm-raid4-5 modalias
4506 - update defconfigs
4507
4508 * Sat Apr 18 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.1-3mdv
4509 - add patches:
4510 * DG13: drm: ignore LVDS on intel graphics systems that lie about having it
4511 * DG14: drm: i915 allow tiled front buffers on 965+ (#50032)
4512 * DH20: hid: wacom bluetooth support
4513 * DI10: input: wacom intuos4 support (from main)
4514 * DM20: fix oops in md raid1
4515 * DU01: usb: add support for Qualcom usb modems
4516 - update patches:
4517 * DG00: drm: drm-next
4518 * DG02: drm: radeon modesetting
4519 * DG03: drm: nouveau
4520 * DG06: drm: i915 resume force mode
4521 * KP01: TuxOnIce 3.0.1
4522 * NI01: net: netfilter ipset 2.4.9 (from main)
4523 * NI10: net: netfilter IFWLOG (from main)
4524 * NI11: net: netfilter IFWLOG mdv fixes (from main)
4525 * NI15: net: netfilter psd (from main)
4526 * NI16: net: netfilter psd mdv fixes (from main)
4527 - drop patches:
4528 * DG11: drm: radeon: reorder busmaster vs. modeset (merged in DG02)
4529 * NI02-NI08: netfilter ipset buildfixes (not needed anymore)
4530 * NI12: netfilter IFWLOG buildfixes (not needed anymore)
4531 * NI17: netfilter psd buildfixes (not needed anymore)
4532 - update defconfigs
4533
4534 * Sun Apr 5 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.1-2mdv
4535 - rollback Alsa patches to earlier snapshot as current upstream
4536 is broken: (fixes #49385, #49536)
4537 * DS01: Alsa 1.0.19+ 2009-03-07
4538 * DS10: Alsa 1.0.19+ unstable addons 2009-03-07
4539 - update patches:
4540 * FR01: Reiser4 for 2.6.29
4541 * KP01: TuxOnIce 3.0 Final
4542 - drop patches:
4543 * FR02: Reiser4 buildfix
4544
4545 * Fri Apr 3 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29.1-1mdv
4546 - update to 2.6.29.1
4547 * http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.29.1
4548 - drop patches merged upstream:
4549 * DN10: Disable GRO on legacy netif_rx path
4550 * MC33: drbd bio_rw_sync fix (merged in drbd 8.3.1)
4551 - add patches:
4552 * AX01: pat fixes to allow GTT maps to work on intel
4553 * DG11: drm: radeon: reorder busmaster vs. modeset
4554 * DG12: add "gem_enable" module option to i915
4555 - update patches:
4556 * DG03: drm: nouveau update
4557 * MC30: drbd 8.3.1
4558 - rediff patches:
4559 * DM50: v4l-dvb snapshot
4560 * MC31: drbd buildfixes
4561
4562 * Mon Mar 30 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29-2mdv
4563 - update patches:
4564 * DG00: drm-next update
4565 * DG02: radeon modesetting update
4566 * DG03: nouveau update
4567 * DI01: lirc update
4568 * KP01: TuxOnIce for 3.0-rc8 for 2.6.29
4569 - add patches:
4570 * DH15: Asus atk0110 acpi hwmon support
4571 - update configs
4572
4573 * Sat Mar 28 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29-1mdv
4574 - update to 2.6.29 final
4575 - add patches:
4576 * FE02-FE04: ext4 delayed allocation fixes (from main kernel)
4577 * DM51: v4l-dvb staging go7007 buildfix
4578 * DN10: GRO: Disable GRO on legacy netif_rx path (from main kernel)
4579 - update patches:
4580 * DG00: drm-next update
4581 * DG02: radeon modesetting update
4582 * DG03: nouveau update
4583 * DM50: v4l-dvb snapshot 20090327
4584 * DS01: Alsa 1.0.19+ snapshot 20090327
4585 * DS10: Alsa 1.0.19+ unstable addons snapshot 20090327
4586 * KP01: TuxOnIce 3.0-rc8 20090313
4587 - drop patches merged upstream:
4588 * DM60: Hauppauge hdpvr (merged in v4l-dvb snapshot)
4589 * DN10: ipv6 module unload bug
4590 * FE01: ext4: extent-header check fix
4591 - disable in defconfigs:
4592 * SYS_DEPRECATED(_V2), USB_DEVICE_CLASS, WIRELESS_OLD_REGULATORY
4593 * SND_SUPPORT_OLD_API
4594 - update defconfigs
4595
4596 * Fri Mar 13 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29-0.rc8.1mdv
4597 - update to 2.6.29-rc8
4598 - drop patches merged upstream:
4599 * FS10: squashfs page-aligned data fix
4600 - update defconfigs
4601
4602 * Fri Mar 13 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29-0.rc7.5.4mdv
4603 - update to 2.6.29-rc7-git5
4604 - update patches:
4605 * DG00: drm: drm-next update
4606 * DG02: drm: radeon modesetting support
4607 * DG03: drm: nouveau support
4608 - add patches:
4609 * DG10: drm: fix flushing on i855, i865g
4610 * DS15: Alsa: hda_intel preallocate 4mb dmabuffer
4611 * DN10: ipv6: fix BUG when disabled ipv6 module is unloaded
4612 * FE01: ext4: extent-header check fix
4613 * FS10: squashfs: fix page-aligned data
4614
4615 * Wed Mar 11 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29-0.rc7.3.3mdv
4616 - update to 2.6.29-rc7-git3
4617 - rediff patches:
4618 * DS01: Alsa 1.0.19+ snapshot
4619 - drop patches merged upstream:
4620 * DA41: nVidia MCP89 support
4621 * DG07: drm setmaster deadlock fix
4622 - drop patches fixed differently upstream:
4623 * DN02: bonding_ipv6 split:
4624 * Correct way to disable ipv6 support now is to add:
4625 "options ipv6 disable=1" to /etc/modprobe.conf
4626
4627 * Sun Mar 8 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29-0.rc7.2mdv
4628 - update patches:
4629 * DG02: drm: radeon modesetting
4630 * DG03: drm: nouveau support
4631 * DI01: lirc support
4632 * DM50: v4l-dvb snapshot 20080307
4633 * DS01: Alsa 1.0.19+ snapshot 20080307
4634 * DS10: Alsa 1.0.19+ unstable addons snapshot 10080307
4635 * KP01: TuxOnIce 3.0-rc8 20090305
4636 - add patches:
4637 * DA41: ahci: add support for nVidia MCP89
4638 * DG07: drm: fix setmaster deadlock
4639 * DG08: drm: add radeon PM support
4640 - drop patches:
4641 * KP02: TuxOnIce buildfix (merged upstream)
4642 - update defconfigs
4643
4644 * Wed Mar 4 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29-0.rc7.1mdv
4645 - update to 2.6.29-rc7
4646
4647 * Tue Mar 3 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29-0.rc6.7.5mdv
4648 - update to 2.6.29-rc6-git7
4649 - drop patches:
4650 * AA02: fix build of drm i915 due to missing symbols (merged upstream)
4651 - add patches:
4652 * DG00: drm-next (adds ati r600 support)
4653 * DM60: Hauppauge HD DVR support
4654 - update patches:
4655 * DG02: drm: radeon modesetting
4656 * DG03: drm: nouveau
4657 * DI01: lirc
4658 - rediff patches:
4659 * DS01: Alsa 1.0.19+ snapshot
4660 - enable in defconfigs:
4661 * PM_DEBUG, IWLWIFI_DEBUG, IWL3945_DEBUG, DRM_NOUVEAU_KMS
4662
4663 * Sat Feb 28 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29-0.rc6.5.4mdv
4664 - update to 2.6.29-rc6-git5
4665 - add patches:
4666 * AA02: fix build of drm i915 due to missing symbols
4667 - update patches:
4668 * DM50: v4l-dvb snapshot 20090228
4669 * DN02: bonding_ipv6 split, v2 adds autoloading of the ipv6 part
4670 * DS01: Alsa 1.0.19+ snapshot 20090228
4671 * DS10: Alsa 1.0.19+ unstable snapshot 20090228
4672 - rediff patches:
4673 * DG02: radeon modesetting
4674 - drop patches:
4675 * DM51: v4l-dvb snapshot buildfix
4676 - enable DMAR_DEFAULT_ON, SONYPI_COMPAT
4677 - update defconfigs
4678
4679 * Wed Feb 25 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29-0.rc6.1.3mdv
4680 - update patches:
4681 * DG02: radeon modesetting support
4682 - drop patches:
4683 * DG07: radeon modesetting pciid
4684 * DG08: radeon modesetting buildfix
4685 - Enable DRM_RADEON_KMS, DRM_I915_KMS
4686
4687 * Tue Feb 24 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29-0.rc6.1.2mdv
4688 - update to 2.6.29-rc6-git1
4689 - update defconfigs
4690
4691 * Mon Feb 23 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29-0.rc6.1mdv
4692 - update to 2.6.29-rc6:
4693 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/testing/ChangeLog-2.6.29-rc6
4694 - rediff patches:
4695 * DG02: radeon modesetting
4696 * DM50: v4l-dvb snapshot
4697 * DS01: Alsa snapshot
4698 * KP01: TuxOnIce
4699 - add patches:
4700 * DG06: intel-gfx: fix kms S3 resume
4701 * DG07: drm: fix pciids when using radeon modesetting
4702 * DG08: fix radeon modesetting build
4703 * KP02: tuxonice fix for bio_rw_sync change
4704 * MC33: drbd: adapt for bio_rw_sync change (Herton, main kernel)
4705 - drop patches:
4706 * DG04: intel-next (merged ustream)
4707 * DP01: Intel Mobile 4 write buffer flush capacity fix (merged upstream)
4708 - enable full PREEMPT on -desktop(586) kernels to see what breaks
4709 - add drivers/acpi/acpica header files to -devel rpms, needed by fglrx
4710 - update defconfigs
4711
4712 * Sat Feb 21 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29-0.rc5.4mdv
4713 - update patches:
4714 * DM50: v4l-dvb snapshot 2009-02-18
4715 * DM51: v4l-dvb snapshot buildfix
4716 * DS01: Alsa 1.0.19+ snapshot 2009-02-18
4717 * DS02: Alsa snapshot buildfix
4718 * DS10: Alsa unstable addons 2009-02-18
4719 - add patches:
4720 * DN02: split bonding for ipv6 to separate module, to allow disabling
4721 of ipv6 at runtime without breaking bonding for ipv4
4722 - update defconfigs
4723
4724 * Wed Feb 18 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29-0.rc5.3mdv
4725 - add patches to fix netfilter crash (thanks Herton)
4726 * NI12: ipt_IFWLOG buildfix
4727 * NI17: ipt_psd buildfix
4728 - add patch DG02: drm: modesetting for radeon
4729 - add patch DG03: drm: nouveau driver
4730 - add patch DG04: drm: intel-next
4731 -update defconfigs
4732
4733 * Sun Feb 15 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29-0.rc5.2mdv
4734 - enable TASKSTATS, TASK_DELAY_ACCT, TASK_XACCT, TASK_IO_ACCOUNTING (#47818)
4735 - update and enable patch KP01: TuxOnIce 3.0-rc8 2009-02-14
4736 - add patch DG01: disable GEM on i8xx gpu
4737 - add patch DI01: lirc support
4738 - add patch DP01: Force write-buffer flush capability on Intel Mobile 4
4739 chipset as it needs it to work properly
4740 - update defconfigs
4741
4742 * Sat Feb 14 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29-0.rc5.1mdv
4743 - update to 2.6.29-rc5
4744 - add patches NI07, NI08: ipset apifixes for 2.6.29 (Herton, from main kernel)
4745 - update defconfigs
4746
4747 * Thu Feb 12 2009 Thomas Backlund <tmb@mandriva.org> 2.6.29-0.rc4.1.1mdv
4748 - update to 2.6.29-rc4-git1
4749 - drop patches merged upstream:
4750 * AA01: md: device limit fix
4751 * AX01, AX02: Amd 0x11 nb support
4752 * AX05: Amd Fam10h APIC workaround
4753 * AX10: more pcore fsbs for cpufreq
4754 * AX15: Intel Core i7 cache descriptors
4755 * DA01-DA09: ACPICA 20080926 uppdate
4756 * DA40: Promise PDC42819 AHCI support
4757 * DA45: Intel Ibex Peak device ids
4758 * DC01: Intel G41 agp support
4759 * DN02: bonding ethtool support
4760 * DN10: r8169 update
4761 * DN15-DN16: Intel e1000e 82567xx support
4762 * DN20: atl2 support
4763 * DN30: Jmicron gigabit ethernet
4764 * DN40: amd8111e bugfix
4765 * DN41: Atheros AR8021 support
4766 * DN42: SM LAN921-5-7-8 support
4767 * DN43: p54usb device is updates
4768 * FS02: security_inode_permission symbol export
4769 * FS10-FS15: ext4 updates
4770 * MB20: squashfs 3.4 (squashfs 4 is now upstream)
4771 * MC33-MC35: drbd buildfixes
4772 * MC60: 3rdparty at76_usb (is now in upstream staging tree)
4773 * MD10-MD13: 3rdparty prism25 (is now in upstream staging tree)
4774 - update pathes:
4775 * CE02: acpi-dsdt-initrd v0.9c-2.6.28
4776 * DM10: dm-raid45 for 2.6.29-rc
4777 * DM50: v4l-dvb snapshot 2009-02-07
4778 * DS01: Alsa 1.0.19+ snapshot 2009-02-07
4779 * FR01: reiser4 support
4780 * FS01: unionfs 2.5.1
4781 * MB02: 3rdparty merge
4782 * MC30-MC32: drbd 8.3.0
4783 * NI15: ipt_psd
4784 - disable patches:
4785 * DB32: sis5513-965 ide fix
4786 * DH01: multilaser usbhid fix
4787 * DM10, DM13: dm-raid45 (broken build)
4788 * KP01: TuxOnIce 3.0-rc8 (broken build)
4789 - add patches:
4790 * AA01: add missing memcontrol include to mm_config.h
4791 * FR02: reiser4 buildfix
4792 * MC42: fsc_btns buildfix
4793 - fix -devel and -source filelists and content
4794 - enable staging tree
4795 - make HID core modular
4796 - drop sparc64 support
4797 - update defconfigs
4798
4799 * Sun Feb 8 2009 Thomas Backlund <tmb@mandriva.org> 2.6.27.15-2mdv
4800 - add patch AX05: fix boot with AMD Fam10h CPUs on systems with broken
4801 or missing MP table
4802 - add patch AX15: add cache descriptors for Intel Core i7
4803 - update patch DM50: v4l-dvb snapshot 2009-02-07
4804 * bugfixes, updates
4805 * adds bttv support for IVCE-8784
4806 * adds cx23885 support for TurboSight TBS 6920, TeVii S470,
4807 DVBWorld DVB-S2 2005
4808 * adds en28xx support for Gadmei TVR200
4809 * adds gspca support for Creative Live! Cam Notebook Ultra (VC0130),
4810 Aiptek PenCam VGA+, Genius iLook 111
4811 * add zr364xx support for Aiptek DV T300
4812 - update patch DM51: v4l-dvb snapshot buildfixes
4813 - update patch DS01: Alsa 1.0.19+ snapshot 2009-02-07
4814 * bugfixes, updates
4815 * adds support for Turtle Beach MultiSound Classic, Tahiti, Monterey,
4816 and Pinnacle/Fiji soudcards
4817 * adds support for Tyan Thunder n6650W (S2915-E)
4818 - update patch DS02: alsa snapshot buildfixes
4819 - drop patch DS04: Sony Vaio VGN FZ18M quirk (fixed differently upstream)
4820 - update patch DS10: Alsa unstable addons snapshot 2009-02-07
4821 - add patch DS11: Alsa SB X-Fi support (broken out from unstable snapshot)
4822 - redo patch KP01: TuxOnIce 3.0-rc8 for 2.6.27.15 from a clean git clone
4823 - drop patch KP02: TuxOnIce buildfix (not needed anymore)
4824 - update create_configs script for TuxOnIce update
4825 - update defconfigs
4826
4827 * Sat Feb 7 2009 Thomas Backlund <tmb@mandriva.org> 2.6.27.15-1mdv
4828 - update to 2.6.27.15:
4829 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.27.15
4830 - update to 2.6.27.14:
4831 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.27.14
4832 - add patches from stable queue:
4833 * AA01: md: ensure an md array never has too many devices
4834 - rediff patch DA01: acpica 2008-09-26 update
4835 - rediff patch DS01: Alsa 1.0.19 final
4836 - update patch KP01: TuxOnIce 3.0-rc8 for 2.6.27.15
4837 - add patch KP02: revert tuxonice_userui code not in 2.6.27
4838
4839 * Sun Feb 1 2009 Thomas Backlund <tmb@mandriva.org> 2.6.27.13-2mdv
4840 - bump release to get past kernels in testing tree
4841
4842 * Sun Jan 25 2009 Thomas Backlund <tmb@mandriva.org> 2.6.27.13-1mdv
4843 - update to kernel.org 2.6.27.13:
4844 * http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.27.13
4845 - rediff patch DS01: Alsa 1.0.19
4846 - drop patches DU01, DU02: usb-storage support for Nokia 5610 & 7610,
4847 not needed anymore as it's fixed on vendor level in 2.6.27.13
4848 (cf usb-storage: set CAPACITY_HEURISTICS flag for bad vendors)
4849 - drop patch FS10: ext4 patchset 2.6.27-ext4-2
4850 - add new patch FS10: ext4 stable backports queue
4851 - add patch FS11: ext4 Add blocks added during resize to bitmap
4852 - add patch FS12: ext4 Use EXT4_GROUP_INFO_NEED_INIT_BIT during resize
4853 - add patch FS13: ext4 Use an rbtree for tracking blocks freed during
4854 transaction
4855 - add patch FS14: ext4 Dont use blocks freed but not yet committed
4856 in buddy cache init
4857 - add patch FS15: ext4 Use new buffer_head flag to check uninit group
4858 bitmaps initialization
4859 - update patch KP01: TuxOnIce 3.0-rc8 for 2.6.27.13
4860 - update defconfigs
4861
4862 * Mon Jan 19 2009 Thomas Backlund <tmb@mandriva.org> 2.6.27.12-2mdv
4863 - rediff patch DM50: cleaner v4l-dvb snaphot 2009-01-18
4864 - update/rediff patch DM51: v4l-dvb buildfix zoran_card build under ix86
4865 - update patch DS01: Alsa 1.0.19 Final
4866 - rediff patch DS02: Alsa buildfixes
4867 - rediff patch DS10: Alsa unstable addons
4868 - update patch FS01: unionfs 2.5.1
4869
4870 * Mon Jan 19 2009 Thomas Backlund <tmb@mandriva.org> 2.6.27.12-1mdv
4871 - update to 2.6.27.12: (CVE-2009-0029)
4872 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.27.12
4873 - update to 2.6.27.11:
4874 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.27.11
4875 - drop patch AA01-AA06: stable-queue patches (merged upstream)
4876 - update patch DM10: dm-raid45 2008-10-27
4877 - drop patches DM11, DM12: dm-raid45 buildfixes (merged upstream)
4878 - update patch DM13: dm-raid4-5 modalias
4879 - update patch DM50: v4l-dvb snapshot 2009-01-18
4880 - update patch DM51: v4l-dvb snapshot buildfix
4881 - update patch DS01: Alsa 1.0.18+ snapshot 2009-01-18
4882 - update patch DS02: Alsa dnapshot buildfix
4883 - rediff patch DS10: Alsa unstable addons 2009-01-18
4884 - drop old patches FR01-FR14: reiser4 patches from old akpm patchset
4885 - add new patch FR01: reiser4 for 2.6.27 updated 2009-01-15
4886 - update patch KP01: TuxOnIce 3.0-rc8
4887 - update create_configs for the new TuxOnIce
4888 - update defconfigs
4889
4890 * Sun Dec 28 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27.10-2mdv
4891 - add pathes from Stable queue:
4892 * AA01: usb-gadget: fix rndis working at high speed
4893 * AA02: usb-storage: update unusual_devs entry for nokia 5310
4894 * AA03: usb-storage: add unusual_devs entry for nokia 3109c
4895 * AA04: usb-storage: add unusual_devs entry for nokiav3500c
4896 * AA05: powerpc: fix corruption error in rh_alloc_fixed
4897 * AA06: iwlagn: downgrade bug_on in interrupt
4898 - Add patches from main kernel:
4899 * AX01, AX02: add detection of AMD family 0x11 northbridges
4900 * AX10: add more pcore fsbs to cpufreq
4901 * DH10: add hwmon coretemp support for Intel Atom
4902 * DU01, DU02: add usb-storage support for Nokia 5610 & 7610
4903
4904 * Sat Dec 20 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27.10-1mdv
4905 - update to 2.6.27.10
4906 * http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.27.10
4907 - update to 2.6.27.9 (CVE-2008-5079)
4908 * http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.27.9
4909 - update to 2.6.27.8 (CVE-2008-5300)
4910 * http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.27.8
4911 - update to 2.6.27.7 (CVE-2008-5033)
4912 * http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.27.7
4913 - update patch DM50: v4l-dvb snapshot 2008-12-20
4914 * adds support for:
4915 Phytec VD-012, Compro VideoMate E650F, Sattrade ST4200 DVB-S/S2,
4916 TBS 8910 DVB-S, Prof 6200 DVB-S, Pinnacle PCTV HD Mini,
4917 Hauppauge WinTV HVR 850, Kworld Plus TV Analog Lite PCI
4918 * adds gspca support for:
4919 Hercules Blog Webcam, Hercules Dualpix HD Weblog, Hercules Classic Silver,
4920 Genius Eye 312, Microdia Audio, Microdia Sonix PC Camera,
4921 Sony HD Eye for PS3 (SLEH 00201), Trust WB-1300N, HP 2.0 Megapixel rz406aa
4922 - drop patch AA01: fix broken ownership of proc sys files (merged upstream)
4923 - rediff patch DA01: acpica 20080926 update
4924 - drop patch DI01: ALPS support for Latitude E6500 (merged upstream)
4925 - rediff patch FS10: ext4 update
4926 - update patch DS01: Alsa 1.0.18+ snapshot 2008-12-20
4927 * adds support for:
4928 - Olpc XO-1 additional sound features
4929 - low volume boost on Audigy
4930 * HD Audio and HDMI updates including:
4931 - add quirk for Medion MD96630
4932 - fix Samsung R60, X11, X60 quirks
4933 - add quirks for HP 6730b, 6730s, EliteBook 8530p, dv5, dv7
4934 - adds support for nVidia MCP67 HDMI, Asus P5Q-EM HDMI
4935 - adds support for Acer Aspire 4930G, Fujitsu Amilio XA3530
4936 - adds support for MSI 7260, HT Omega Claro Halo
4937 - add quirks for Dell Studio 1537, Studio17
4938 * Adds support for a lot of Digigram based cards:
4939 - VX882E, PCX882E, VX881E, PCX881E, VX1222HR, VX1221HR, VX1222E, PCX1222E,
4940 VX1221E, PCX1221E, VX222HR, VX222E, PCX22HR, PCX22E, VX222HRMIC,
4941 VX222E_MIC, PCX924HR, PCX924E, PCX924HRMIC, PCX924E_MIC
4942 - update patch DS02: Alsa 1.0.18+ buildfixes 2008-12-20
4943 - update patch DS10: Alsa unstable adddons 2008-12-20
4944 - update defconfigs
4945
4946 * Wed Nov 19 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27.6-2mdv
4947 - add patch AA01: fix broken ownership of proc sys files
4948
4949 * Sun Nov 16 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27.6-1mdv
4950 - update to 2.6.27.6 (CVE-2008-5025)
4951 - drop patch DM01: raid10 recovery bugfix (merged upstream)
4952 - rediff patch DA01: acpica update
4953 - rediff patch DN10: r8169 updates
4954 - rediff patch DS01: Alsa update
4955 - update defconfigs
4956
4957 * Sun Nov 9 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27.5-3mdv
4958 - rename acpi patches to prepare for acpi fixes:
4959 * change patch DA30 prefix to DA01 (acpica update)
4960 * change patch DA31 prefix to DA02 (acpica buildfix)
4961 - add acpi patches:
4962 * DA03: i7300_idle: Disable ioat channel only on platforms where idle can load
4963 * DA04: i7300_idle: Cleanups
4964 * DA05: i7300_idle: Fix compile warning about I7300_IDLE_IOAT_CHANNEL not defined
4965 * DA06: suspend: build fix for ACPI_SLEEP=n & XEN_SAVE_RESTORE=y
4966 * DA07: fix Oops in pci-acpi
4967 * DA08: toshiba_acpi: depends on INPUT
4968 * DA09: make dock driver not a module as it needs to be loaded before libata
4969 - add patch DA40: ahci: add support for Promise PDC42819 in sata mode
4970 - add patch DN02: bonding: add more ethtool support
4971 - add patch DN40: amd8111e: fix dma_free_coherent context bug
4972 - add patch DN41: sis190: add support for Atheros AR8021 PHY
4973 - add patch DN42: smc911x: add support for LAN921-5-7-8 chips
4974 - add patch DN43: p54usb: add support for SMC 2862W-G version 2
4975
4976 * Sat Nov 8 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27.5-2mdv
4977 - update patch DA30: ACPICA 2008-09-26
4978 - disable old acpi patches to see if they are needed anymore:
4979 * DA15: acpi-add-proc-event-regs
4980 * DA20: acpi-asus-laptop-input
4981 * DA21: acpi-asus-eee
4982 * DA22: acpi-asus-disable-autoload-on-asus-laptops
4983 * DA25: acpi-CELVO-M360S-disable_acpi_irq
4984 * DA26: acpi-processor-M720SR-limit-to-C2
4985 - update defconfigs
4986
4987 * Fri Nov 7 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27.5-1mdv
4988 - update to 2.6.27.5
4989 - rediff patch DA30: acpica update
4990 - drop patch DA35: sata_nv hardreset fix (merged upstream)
4991 - add patch DA45: ata support for Intel Ibex Peak (PCH)
4992 - rediff patch DC01: Intel G41 AGP support
4993 - add patch DM01: fix raid10 recovery bug
4994 - update patch DM50: v4l-dvb snapshot 2008-11-07
4995 * adds STB0899, STB6100, Philips TDA8261, LG LGDT3304,
4996 Sharp S921 dvb support
4997 * adds Finepix, SunPlus usb webcam support
4998 - add patch DM51: revert dvb changes not supported by 2.6.27 kernel
4999 - add patch DN15: Intel 82567LM-4 gigabit lan support
5000 - add patch DN16: Intel (ich10) 82567LF-3 and LM-3 gigabit lan support
5001 - update patch DS01: Alsa 1.0.18+ snapshot 2008-11-07
5002 * adds hrtimer backend support
5003 * adds Intel hdmi audio support
5004 * adds support for some more laptops
5005 - add patch DS02: revert Alsa changes not supported by 2.6.27 kernel
5006 - add patch DS10: Selected updates from Alsa -unstable tree
5007 * adds support for Creative X-Fi CA0110-IBG codec
5008 * adds support for Creative X-Fi Emu20k1 chip
5009 * adds support for VIA VT1732 (Envy24-II)
5010 * adds support for several Gateway systems
5011 - update defconfigs
5012
5013 * Sun Oct 26 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27.4-2mdv
5014 - update patch DN10: updates r8169 to 2.6.28-rc2 level
5015 * fixes possible "brick" bug
5016 - drop patch DN11: r8169 NULL pointer fix (merged upstream)
5017
5018 * Sun Oct 26 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27.4-1mdv
5019 - update to 2.6.27.4 final
5020 - drop patch AA01: 2.6.27.4-rc3 (merged upstream)
5021
5022 * Sat Oct 25 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27.3-1mdv
5023 - update to 2.6.27.3 final
5024 - update patch AA01: 2.6.27.4-rc3
5025 - rediff patch DA30: acpica 20080729
5026 - update patch FS10: ext4 update to 2.6.27-ext4-2
5027 - enable EXT4DEV_COMPAT so userspace expecting to mount ext4dev
5028 instead of ext4 wont break
5029 - update defconfigs
5030
5031 * Sun Oct 19 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27.2-1mdv
5032 - update to 2.6.27.2
5033 - add patch AA01: 2.6.27.3-rc1
5034 - add patch DN11: fix NULL pointer dereference on r8169 load
5035 (Reported by Charles, fix pointed out by Andrey)
5036 - drop patch FS15: XFS barrier fail detection fix, merged upstream
5037
5038 * Thu Oct 16 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27.1-1mdv
5039 - update to 2.6.27.1
5040 * disables CONFIG_DYNAMIC_FTRACE due to possible memory corruption
5041 on module unload (this is the reason e1000e cards broke)
5042
5043 * Sat Oct 11 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27-2mdv
5044 - drop patches DA10-DA12: tc1100-wmi, all needed support is
5045 already in 2.6.27
5046 - drop old patch DA30: acpi ec 2.1 (merged in updated ACPICA)
5047 - add patch DA30: ACPI and ACPICA 2008-07-29 update
5048 * improvements for docking, bay and hotplug
5049 * better errror messages, support more laptops
5050 * better rfkill support
5051 - add patch DA31: export symbol acpi_os_hotplug_execute
5052 - add patch DI01: Alps touchpad support for Dell Latitude E6500 (#44701)
5053 - update patches DM10-DM12: rename dm-raid4-5 to dm-raid45 as
5054 that's what the kernel expects to find.
5055 - add patch DM13: add dm-raid4-5 modalias to dm-raid45 to not break updates
5056 - update defconfigs
5057
5058 * Sat Oct 11 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27-1mdv
5059 - update to 2.6.27 final
5060 - add patch DA35: sata_nv hardreset fix
5061 - update patch DM50: v4l-dvb snapshot 2008-10-10
5062 - drop patch DM51: saa7134-alsa fix, fixed in DS01
5063 - update patch DN10: even more r8169 fixes
5064 * from: http://userweb.kernel.org/~romieu/r8169/2.6.27-rc9
5065 - update patch DS01: Alsa 1.0.18rc3.1 snapshot 2008-10-10
5066 - add patch FS10: ext4 updates to 2.6.27-rc9-ext4-1
5067 - add patch FS15: fix barrier fail detection in XFS
5068 - update patch KP01: TuxOnIce 3.0-rc7 for 2.6.27
5069 - update patch MC34: rename drbd WARN macro to DRBD_WARN
5070 - add patch MC35: drbd: fix cn_idx_drbd definition
5071 - update defconfigs
5072
5073 * Mon Oct 6 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27-0.rc8.8.1mdv
5074 - update to 2.6.27-rc8-git8
5075 - update patch DM50: v4l-dvb snapshot 2008-10-06
5076 - add patch DM51: convert saa7134-alsa to snd_BUG_ON
5077 - add patch DN10: support more r8169 network cards
5078 * from: http://userweb.kernel.org/~romieu/r8169/2.6.27-rc6/
5079 - drop patch DS00: alsa revert
5080 - update patch DS01: Alsa 1.0.18rc3.1 snapshot 2008-10-06
5081 - update defconfigs
5082
5083 * Thu Oct 2 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27-0.rc8.3.1mdv
5084 - update to 2.6.27-rc8-git3
5085 * contains workaround for e1000e hw breaking bug
5086 - drop patches MC50-MC54: acx wireless, due to legal reasons
5087 - drop patch DA55: sata_nv regression fix, merged upstream
5088 - add patch DS00: revert upstream alsa fixes already in Alsa 1.0.18rc3
5089 - add patches MC33, MC34: drbd fixes (from main)
5090 - update defconfigs
5091
5092 * Sun Sep 28 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27-0.rc7.5.2mdv
5093 - update to 2.6.27-rc7-git5
5094 - add patch DA30: acpi ec v2.1, adds fast transaction (from main)
5095 - add patch DA55: fix sata_nv regression (#44287, from main)
5096 - add patch DC01: add support for intel G41 chipset (from main)
5097 - update patch DM50: v4l-dvb snapshot 2008-09-28
5098 - add patch DN30: add support for JMicron Gigabit ethernet (from main)
5099 - update defconfigs
5100
5101 * Fri Sep 26 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27-0.rc7.4.1mdv
5102 - update to 2.6.27-rc7-git4
5103 - add patch FS02: export security_inode_permission, as unionfs needs it.
5104
5105 * Sun Sep 21 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27-0.rc6.6.1mdv
5106 - update to 2.6.27-rc6-git6
5107 - update patch FS01: unionfs v2.5
5108
5109 * Sat Sep 13 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27-0.rc6.2.1mdv
5110 - update to 2.6.27-rc6-git2
5111 - update patches FR01-FR15: Reiser4 from 2.6.27-rc5-mm1
5112 - update patch DS01: Alsa 1.0.18rc3 (from main)
5113 - update patch DM50: v4l-dvb snapshot 2008-09-13
5114 - add patch NI06: fix netfilter ipset build on 2.6.27 (from main)
5115 - change versioning to show git snapshot like kernel-linus
5116 - redo defconfigs based on main kernel defconfigs with the following changes:
5117 * disable TASKSTATS, NAMESPACES, SLUB_DEBUG, BLK_DEV_IO_TRACE, IP_VS_DEBUG
5118 * disable BLK_DEV_UB, SCSI_SAS_LIBSAS_DEBUG, AIC94XX_DEBUG, B43_DEBUG
5119 * disable B43LEGACY_DEBUG, HID_DEBUG, REISERFS_PROC_INFO
5120 * disable OCFS2_DEBUG_MASKLOG, CIFS_STATS2, KEYS_DEBUG_PROC_KEYS
5121 * change NR_CPUS to 16
5122 * enable MD_FAULTY, DM_DELAY, FIREWIRE, FIREWIRE_OHCI, FIREWIRE_SBP2
5123 * enable FIREWIRE_OHCI_REMOTE_DMA, TULIP_MMIO, TULIP_NAPI,
5124 * enable TULIP_NAPI_HW_MITIGATION, SUNDANCE_MMIO, VIA_RHINE_MMIO
5125 * enable HIPPI, ROADRUNNER, VIDEO_VIVI, DVB_USB_DIBUSB_MB_FAULTY
5126 * enable AUTOFS_FS, KARMA_PARTITION, DETECT_SOFTLOCKUP, EARLY_PRINTK
5127 * enable 4KSTACKS, CRYPTO_DEV_HIFN_795X_RNG
5128
5129 * Sat Aug 30 2008 Thomas Backlund <tmb@mandriva.org> 2.6.27-0.rc5.1mdv
5130 - update to 2.6.27-rc5
5131 - require kernel-firmware from main
5132 - remove /lib/firmware from the rpms
5133 - parallelize xargs invocations on smp machines
5134 - add patch DM12: fix dm-raid45 build with 2.6.27
5135 - update patch DM50: dvl-dvb snapshot 2008-08-29
5136 - drop patch DN05: support wm6 devices as modems (merged upstream)
5137 - update patch DN20: atl2 support for 2.6.27 series (from main)
5138 - update patch DS01: Alsa snapshot 2008-08-27 (from main)
5139 - drop old patches FR01-FR17: reiser4 support
5140 - add new FR01-FR12: Reiser4 support from 2.6.27-rc1-mm1
5141 - add patch FR13: Reiser4 buildfix for 2.6.27-rc5
5142 - update patch FS01: unionfs 2.4.0 for 2.6.27-rcX
5143 - drop patch FS10: ext4 snapshot (merged upstream)
5144 - update patch KP01: TuxOnIce 3.0-rc7
5145 - drop patch KS01: disabling of SCHED_HRTICK, as it's now fixed upstream
5146 - update patch MB02: 3rdparty merge (from main)
5147 - add patch MB13: ndiswrapper buildfix for 2.6.27 (from main)
5148 - update patch MB20: squashfs 3.4 (from main)
5149 - drop patch MB21: squashfs buildfix (not needed anymore)
5150 - add patch MC54: acx buildfix for 2.6.27 (from main)
5151 - drop old patches MC60-MC61: old Atmel wireless support
5152 - add new patch MC60: Atmel at76 wireless support (from main)
5153 - update patches MD10-MD13: Prism2 0.2.9 r1859 (from main)
5154 - update defconfigs
5155
5156 * Wed Aug 20 2008 Thomas Backlund <tmb@mandriva.org> 2.6.26.3-1mdv
5157 - update to 2.6.26.3:
5158 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.26.3
5159 - update patch DM50: remove tea575x-tuner changes as a more complete
5160 one is in Alsa-1.0.18-rc1
5161 - update patch DS01: Alsa 1.0.18rc1
5162 - drop patch DS03: Nec Versa S9100 support (merged upstream)
5163 - update patch FS10: ext4 support: 2.6.26-ext4-7
5164 - make TuxOnIce builtin and default on -laptop flavour
5165 - add patch KS01: really disable CONFIG_SCHED_HRTICK as it's known to
5166 cause boot problems with at least Intel GMA cards, as noted on LKML
5167 and kernel.org BugZilla #10892
5168 - update defconfigs
5169
5170 * Fri Aug 8 2008 Thomas Backlund <tmb@mandriva.org> 2.6.26.2-1mdv
5171 - update to 2.6.26.2:
5172 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.26.2
5173 - drop patches AA01-AA18: stable queue fixes, merged upstream
5174 - add patch DN06: John Carrs 'dirty patch' to usb rndis_host,
5175 fixes support of several WM devices
5176 - update patch DS01: Alsa 1.0.17+ 2008-07-27
5177 - drop patches DS02-DS16: alsa fixes, merged in DS01
5178 - add patch DS02: alsa: bluetooth SCO support
5179 - add patch DS03: alsa: support NEC Versa S9100
5180 - add patch DS04: alsa: support Sony Vaio VGN FZ18M
5181 - add patch DS05: alsa: support Toshiba Pro A200/A210
5182 - drop patch DV01: bootsplash support, as we now use splashy
5183 - update defconfigs
5184
5185 * Mon Aug 4 2008 Thomas Backlund <tmb@mandriva.org> 2.6.26.1-2mdv
5186 - update patch FS10: ext4 update to 2.6.26-ext4-5
5187 - fix missing bounds.h in -devel rpms
5188 - dont prepare -source tree at all
5189 - keep disable-prepare-scripts as a separate patch like main
5190 - disable removal of asm-offsets.h and bounds.h in -devel rpms (Herton)
5191
5192 * Sat Aug 2 2008 Thomas Backlund <tmb@mandriva.org> 2.6.26.1-1mdv
5193 - update to 2.6.26.1:
5194 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.26.1
5195 - drop patch AA01: 2.6.26.1-rc1 (merged upstream)
5196 - add patches from stable queue:
5197 * AA01: ftrace: remove unneeded documentation
5198 * AA02: romfs: readpage dont report errors for pages beyond i_size
5199 * AA03: netfilter: nf nat_sip c is optional for session
5200 * AA04: scsi: bsg fix bsg_mutex hang with device removal
5201 * AA05: x86: idle process add checking for null early param
5202 * AA06: x86: io delay add checking for null early param
5203 * AA07: md: close race in md_probe
5204 * AA08: kprobe: smoke test lockdep warning
5205 * AA09: netfilter: xt_time fix time s time_mt s use of do_div
5206 * AA10: md: linear correct disk numbering error check
5207 * AA11: scsi: ch fix ch_remove oops
5208 * AA12: nfs: ensure we zap only the access and acl caches when setting new acls
5209 * AA13: jbd: fix race between free buffer and commit transaction
5210 * AA14: input: i8042 add intel d845pesv to nopnp list
5211 * AA15: input: i8042 add gericom bellagio to nomux blacklist
5212 * AA16: input: i8042 add acer aspire 1360 to nomux blacklist
5213 * AA17: bluetooth: signal userspace for hidp and bnep socket errors
5214 * AA18: ptrace: add compat handler for ptrace_getsiginfo
5215 - update patch FS01: unionfs 2.4
5216 . drop patch FS02: unionfs prototype fix (not needed anymore)
5217 - add patch FS10: 2.6.26-ext4-4 patchset, makes ext4 ready for wider
5218 testing according to upstream
5219
5220 * Fri Aug 1 2008 Thomas Backlund <tmb@mandriva.org> 2.6.26-4mdv
5221 - drop patches AA01-AA19: stable queue fixes (included in 2.6.26.1-rc1)
5222 - add new AA01: 2.6.26.1-rc1
5223 - add patch DM10: dm-raid4-5 support
5224 - add patch DM11: dm-raid4-5 buildfixes for 2.6.26 series kernels
5225 - rediff patch DM50: v4l-dvb snapshot
5226 - rediff patch DS01: alsa 1.0.17
5227 - update defconfigs
5228
5229 * Sun Jul 27 2008 Thomas Backlund <tmb@mandriva.org> 2.6.26-3mdv
5230 - change desktop586 kernels back to 1GB RAM until someone actually
5231 needs 4GB on i586
5232 - add patches from stable queue:
5233 * AA01: pxamci: trivial fix of dma alignment register bit clearing
5234 * AA02: udplite: protection against coverage value wrap-around
5235 * AA03: ipv6: use timer pending
5236 * AA04: ipv6: __kernel__ ifdef struct ipv6 devconf
5237 * AA05: hdlcdrv: fix crc calculation
5238 * AA06: quota: fix possible infinite loop in quota code
5239 * AA07: isofs: fix minor filesystem corruption
5240 * AA08: kvm: vmx fix a wrong usage of vmcs_config
5241 * AA09: kvm: svm fix suspend resume support
5242 * AA10: kvm: mmu_shrink kvm_mmu_zap_page requires slots_lock to be held
5243 * AA11: kvm: vmx add ept_sync_context in flush_tlb
5244 * AA12: kvm: x86 emulator fix hlt instruction
5245 * AA13: kvm: mmu nuke shadowed pgtable pages and ptes on memslot destruction
5246 * AA14: kvm: mmu fix potential race setting upper shadow ptes on nonpae hosts
5247 * AA15: ptrace: fix ptrace_getfpxregs error
5248 * AA16: rcu: fix rcu_try_flip_waitack_needed to prevent grace period stall
5249 * AA17: signal: fix typos from signal_32-64.h merge
5250 * AA18: x86: reboot quirks add dell precision workstation t5400
5251 * AA19: usb: fix usb serial pm counter decrement for disconnected interfaces
5252 - update patch CE02: acpi dsdt initrd v0.9a
5253 - update patch DM50: v4l-dvb snapshot 2008-07-27
5254 - drop patch DM51: v4l-dvb buildfix (merged upstream)
5255 - drop patch FS20: broken isofs rockridge fix (it's now -stable AA07)
5256 - update patch KP01: TuxOnIce 3.0-rc7 2008-07-27
5257 - redo kernel-tmb.patchlist
5258 - update defconfigs
5259
5260 * Thu Jul 24 2008 Thomas Backlund <tmb@mandriva.org> 2.6.26-2mdv
5261 - add patch DN05: rndis_host: support WM6 devices as modems
5262 - add fixes and updates from ALSA:
5263 * DS02: add TriTech 28023 AC97 codec ID and Wolfson 97
5264 * DS03: Au1xpsc psc not disabled when TX is idle
5265 * DS04: re-order AC97 codec ID-table
5266 * DS05: hda Align BDL position adjustment parameter
5267 * DS06: ens1370 SRC stands for Sample Rate Converter
5268 * DS07: sound alsa ens1370 communicate PCI device to AC97
5269 * DS08: ASoC Refactor DAPM event handler
5270 * DS09: ASoC Factor PGA DAPM handling into main
5271 * DS10: hda Added support for Asus V1Sn
5272 * DS11: opti93x Fix NULL dereference
5273 * DS12: opti9xx no isapnp param for CONFIG_PNP
5274 * DS13: hda Add support of ASUS Eeepc P90
5275 * DS14: hda digital pc beep support hd audio codecs
5276 * DS15: soc wm9712 mono mixer
5277 * DS16: hda Add automatic model setting for Acer Aspire 5920G
5278
5279 * Tue Jul 22 2008 Thomas Backlund <tmb@mandriva.org> 2.6.26-1mdv
5280 - update to 2.6.26
5281 - drop patches AA01-AA29: -stable-queue fixes (merged upstream)
5282 - disable patch DA04: acpi double proc entries fix (broken)
5283 - drop patch DA30: acpi video ignore unsupported devices (merged upstream)
5284 - disable patches DM10, DM11: dm-raid45 support (broken)
5285 - update patches DM50, DM51: v4l-dvb snapshot as of 2008-07-22
5286 * new drivers:
5287 - Gspca, Sensoray 2255, DvbWorld 2102 DVB-S, Anysee DVB-T/C
5288 - Siano SMS1XXX, Micronas DRX3975D/DRX3977D
5289 - update patch DN20: atl2 nic 2.0.4 (from main)
5290 - drop patch DN21: atl2 nic buildfix (fixed upstream)
5291 - rediff patch DS01: Alsa 1.0.17
5292 - drop patch DS02: alsa compat fix (not needed anymore)
5293 - drop patch FF01: fat: allow utime (merged upstream)
5294 - add patch FS02: unionfs buildfix for 2.6.26
5295 - drop patches FS10-FS12: UDF 2.50 read support (merged upstream)
5296 - rediff patch KP01:TuxOnIce 3.0-rc7
5297 - drop old/obsoleted patches from 3rdparty tree:
5298 * MB50-MB52: qc-usb v0.6.6 (replaced by intree drivers)
5299 * MB60-MB65: ipw3945 v1.2.2 (replaced by the intree iwl* drivers)
5300 * MB70-MB72: rt2400 v1.2.2-cvs (replaced by the intree rt2* drivers)
5301 * MB80-MB82: rt2500 v1.1.0-cvs (replaced by the intree rt2* drivers)
5302 * MB90-MB92: rt2570 v1.0.0-cvs (replaced by the intree rt2* drivers)
5303 * MC00-MC03: rt61 v1.1.0-cvs (replaced by the intree rt5* drivers)
5304 * MC10-MC13: rt73 v1.0.3.6-cvs (replaced by the intree rt7* drivers)
5305 * MD00-MD01: uvc r205 (merged upstream)
5306 - update patch MC30, MC31: drbd v8.2.6
5307 - update patch MC40: fsc_btns 1.40
5308 - add patch MD11: prism25 buildfix for 2.6.26
5309 - drop patch NW01: dummy ieee80211_regdom parameter (not needed anymore)
5310 - update defconfigs
5311 - fix sigframe.h in -devel rpms
5312 - add /firmware to -devel and -source rpms
5313 - add kernel/bounds.c to -devel rpms
5314 - fix disable-mrpoper patch to apply cleanly
5315 - drop spec fix for #29744, #29074 (not needed anymore)
5316
5317 * Sun Jul 20 2008 Thomas Backlund <tmb@mandriva.org> 2.6.25.11-2mdv
5318 - add patches AA01-AA29: Fixes from -stable queue:
5319 * b43legacy: do not return tx_busy from op_tx
5320 * b43: do not return tx_busy from op_tx
5321 * b43: fix possible mmio access while device is down
5322 * mac80211: detect driver tx bugs
5323 * block: fix the starving writes bug in the anticipatory io scheduler
5324 * md: fix error paths if md_probe fails
5325 * md: dont acknowlege that stripe expand is complete until it really is
5326 * md: ensure interrupted recovery completed properly
5327 * block: properly notify block layer of sync writes
5328 * ohci: fix problem if sm501 and another platform driver is selected
5329 * usb-ehci: fix timer regression
5330 * usb-ohci: record data toggle after unlink
5331 * usb: fix interrupt disabling for hcds with shared interrupt handlers
5332 * hdaps: add support for various newer lenovo thinkpads
5333 * b43legacy: fix possible null pointer dereference in dma code
5334 * netdrvr: 3c59x remove irqs_disabled warning from local_bh_enable
5335 * scsi: esp fix oops in esp_reset_cleanup
5336 * scsi: esp tidy up target reference counting
5337 * scsi: ses fix timeout
5338 * mm: switch node meminfo active inactive pages to kbytes
5339 * reiserfs: discard prealloc in reiserfs_delete_inode
5340 * cciss: read config to obtain max outstanding commands per controller
5341 * serial: fix serial_match_port for dynamic major tty device numbers
5342 * can: add sanity checks
5343 * sisusbvga: fix oops on disconnect
5344 * md: ensure all blocks are uptodate or locked when syncing
5345 * textsearch: fix boyer moore text search bug
5346 * netfilter: nf_conntrack_tcp fixing to check the lower bound of valid ack
5347 * zd1211rw: add id for airties wus 201
5348 - update patch DS01: Alsa 1.0.17 Final
5349 - update and enable patch FS10: UDF 2.50 support
5350 - add patch FS11: disable UDF_DEBUG
5351 - add patch FS12: fix regression in udf anchor block detection
5352 - add patch FS20: enable reading of cds with broken rockridge data
5353 - disable -rt patchset and -realtime on 2.6.25 series, it has
5354 way too many problems for now for a stable *tmb* series
5355 - add patch NW01: add dummy ieee80211_regdom parameter to cfg80211
5356 so it will work on systems that assume a 2.6.26+ series kernel
5357 - switch back to SLUB from SLAB
5358 - enable Reiser4 fs again
5359 - disable USB_KBD and USB_MOUSE, only needed on embedded systems
5360 - change -laptop kernel config options to save more power:
5361 * HZ_300 -> HZ_250 (lowest that works with audio)
5362 - change -server kernel config options
5363 * HZ_100 -> HZ_250 (lowest that works with audio)
5364
5365 * Mon Jul 14 2008 Thomas Backlund <tmb@mandriva.org> 2.6.25.11-1mdv
5366 - update to 2.6.25.11
5367
5368 * Sun Jul 6 2008 Thomas Backlund <tmb@mandriva.org> 2.6.25.10-1mdv
5369 - update to 2.6.25.10
5370 - update patch DS01: Alsa 1.0.17rc3
5371 - rediff patch RT01: realtime support
5372
5373 * Mon Jun 30 2008 Thomas Backlund <tmb@mandriva.org> 2.6.25.9-3mdv
5374 - add patch DM50: v4l-dvb tree as of 2008-06-29
5375 - add patch DM51: v4l-dvb compat fixes for 2.6.25
5376 - update patch MB10, MB12: ndiswrapper 1.53
5377 - add patch MC82: add missing viahss MODULE_LICENSE
5378 - re-enable patch MD01: uvc buildfix due to new v4l-dvb code in patch DM50
5379 - add patch RT01: realtime support v 2.6.25.8-rt7 (for realtime flavour)
5380 - add patch RT02: fix reiser4 build with -rt patchset
5381 - add patch RT03: fix unionfs build with -rt patchset
5382 - switch back to SLAB as SLUB does not work with -rt patchset
5383 - disable netfilter ip_set, its broken with -rt patchset
5384 - disable reiser4, its broken with -rt patchset
5385 - disable RT2570 and QC-USB on -realtime flavours, as they
5386 do not work with full realtime
5387 - enable build of -realtime flavour
5388 - fix spec so the realtime kernels really gets built
5389 - update defconfigs
5390
5391 * Sat Jun 28 2008 Thomas Backlund <tmb@mandriva.org> 2.6.25.9-2mdv
5392 - fix patch DS02: to properly revert 2.6.26-rcX speciific code in
5393 Alsa 1.0.17-rc2 (initial patch causes oops on boot :-( )
5394
5395 * Sat Jun 28 2008 Thomas Backlund <tmb@mandriva.org> 2.6.25.9-1mdv
5396 - update to 2.6.25.9
5397 - add support for -realtime flavour (disabled for now)
5398 - drop patches merged upstream:
5399 * DA35_acpi-add-aliases-to-toshiba_acpi-module.patch
5400 * DA50_ata-ahci-ICH10-MCP7B-Marvell-ids.patch
5401 * DA51_ata-piix-ich10-ids.patch
5402 * DC01_fix-i8k-build-on-x86_64.patch
5403 * DC02_add-dell-mp061-support-to-i8k.patch
5404 * DC03_enable-i8k-on-x86_64-build.patch
5405 * DH02_hid-usbhid-blacklist.patch
5406 * DI10_input-tablet-wacom-0.7.9-8.patch
5407 * DI20_drivers-i2c_verify_client.patch
5408 * DM01_thinkpad-acpi-0.18-20071203_v2.6.24-rc6.patch
5409 * DM20_acpi-compal-laptop-20080205.patch
5410 * DM50_v4l-dvb-9a2af878cbd5-20080324.patch
5411 * DN10_net-r8169-fix-past-rtl_chip_info-array-size-for-unknown.patch
5412 * DN11_net-r8169-fix-oops-in-r8169_get_mac_version.patch
5413 * DN15_char-nozomi-driver.patch
5414 * DN40_net-forcedeth-locking-bug.patch
5415 * DN41_net-skge-napi-poll-locking-bug.patch
5416 * DN42_net-sky2-add-marvell-ids.patch
5417 * FP01_pagecache-zeroing-zero_user_segment-zero_user_segments-and-zero_user.patch
5418 * FP02_pagecache-zeroing-zero_user_segment-zero_user_segments-and-zero_user-fix.patch
5419 * FP03_pagecache-zeroing-zero_user_segment-zero_user_segments-and-zero_user-fix-2.patch
5420 * FR04_make-copy_from_user_inatomic-not-zero-the-tail-on-i386-vs-reiser4.patch
5421 * MB40_acer_acpi-0.11.1.tar
5422 * MB41_acer_acpi-Kconfig-Makefile.patch
5423 - drop patches not needed anymore:
5424 * DI02_idedisk_reboot.patch
5425 * DN30_rndis_host_wm5-6.patch
5426 * KS01_kernel-sysctl_check-remove-s390-include.patch
5427 * MD01_3rd_uvc_buildfix.patch
5428 - disable broken patches:
5429 * AS01_linux-phc-kernel-vanilla-2.6.25.8.patch
5430 * CR01_BadRAM-2.6.25.8.patch
5431 * FS10_fs-udf-2.50-from-2.6.26-rc1-git7.patch
5432 - rediff patch DA21: asus_acpi Eee support
5433 - rediff patch DB25: fix megaraid_mbox sysfs name
5434 - rediff patch NI15: netfilter psd target
5435 - replace old patches DS01-DS03 with new DS01: Alsa 1.0.17-rc2
5436 - add patch DS02: revert 2.6.26 specific alsa code
5437 - update patch DV01: bootsplash 3.1.6
5438 - add patch MB21: fix squashfs build (from main)
5439 - update patches MC30-MC32: drbd 8.0.12 (from main)
5440 - update patch MC40: fsc_btns 1.10
5441 - update patch MD10: fix Prism25 Kconfig
5442 - update patch FS01: unionfs 2.3.3
5443 - update patch KP01: TuxOnIce 3.0-rc7
5444 - update defconfigs
5445 - fix -doc filelist
5446 - do not remove modules.* before calling depmod in install
5447 (fixes missing modules.order file, noted by Anssi)
5448 - dont ship mn10300 arch files
5449 - add arch/Kconfig to -devel and -source rpms
5450 - add /virt to -source rpm
5451 - remove unlinking of /arch/i386/boot/bzImage, not needed anymore
5452
5453 * Sat Jun 21 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24.7-3mdv
5454 - fix build with disabled -doc
5455 - fix -doc versioning
5456 - update patch DA50: Ahci ICH10 MCP7B Marvell ids
5457 - add patch DA51: add ich10 support to ata_piix
5458 - add patch DA52: add Tecra M4/M6 and Satellite R20 to piix_broken_suspend
5459 - add patch DN40: fix forcedeth locking bug
5460 - add patch DN41: fix skge locking bug
5461 - add patch DN42: add more Marvell ids to sky2
5462 - add dvb-core header files to -devel rpms so it's possible to build
5463 external dvb drivers without needing full source (#41418)
5464
5465 * Fri May 23 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24.7-2mdv
5466 - bump release to 2mdv to get past testing kernels
5467
5468 * Sun May 11 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24.7-1mdv
5469 - update to kernel.org 2.6.24.7: fix CVE-2008-1669
5470 - move patch DA10 (add ata ids) to DA50 to make room for more acpi fixes
5471 - add patches from main kernel:
5472 * DA10-DA12: acpi wmi interface
5473 * DA15: acpi proc event regs
5474 * DA20: Generate input events for ACPI hotkeys in asus-laptop
5475 * DA21-DA22: add Acpi eee support
5476 * DA25: disable acpi_irq on CLEVO M360S
5477 * DA26: limit Clevo M720SR to C2 power state as C3 causes lockup
5478 * DA30: make acpi video ignore unsupported devices
5479 * DA35: add ids to toshiba_acpi to enable autoloading
5480 - drop patches DS90-DS91: serial-wacom-acpi, it's broken and replaced by
5481 acpi-wmi patches DA10-DA12
5482 - update patch FS10: UDF 2.50 from 2.6.26-rc1-git7, fixes memory corruption
5483 (exportfs part reverted to get a clean backport for main)
5484 - update patch MD00: uvc r205 (from main)
5485 - update patch MD01: uvc buildfixes to match v4l-dvb patch DM50
5486 - update defconfigs
5487
5488 * Tue May 6 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24.6-2mdv
5489 - add patch DA10: add device ids for Intel ICH10, nVidia MCP7B and
5490 Marvell 6121 to SATA AHCI
5491 - update patch DS02: Alsa HG Snapshot 2008-05-04
5492 - replace old patch FS10: new clean backport of UDF2.5 from 2.6.26-rc1
5493 - add fixes from main kernel:
5494 * DN10: r8169: fix past rtl_chip_info array size for unknown chipsets
5495 * DN11: r8169: fix oops in r8169_get_mac_version
5496 * DS03: dont build pcspkr when snd-pcsp is enabled as they conflict
5497
5498 * Sat May 3 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24.6-1mdv
5499 - update to kernel.org 2.6.24.6
5500 * fixes CVE-2008-1375, CVE-2008-1675
5501 * http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.24.6
5502 * http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.24.5
5503 - rediff patd DM50:. v4l_dvb snapshot
5504 - update patch FS01: unionfs 2.3.3
5505 - add patch FS10: UDF v2.5 support (#40412)
5506 - update patch KP01: Suspend2 3.0-rc7
5507 - enable CONFIG_FS_UFS_WRITE
5508
5509 * Tue Mar 25 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24.4-1mdv
5510 - update to 2.6.24.4:
5511 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.24.4
5512 - drop patches AA01-AA14: patches from stable tree (merged upstream)
5513 - add patch DI20: add i2c_verify_client support (needed for v4l-dvb)
5514 - add patch DM50: upstream v4l-dvb snapshot as of 20080324
5515 - drop patches DS01-DS03, DS11-DS76, DS99: alsa fixes from Alsa HG
5516 - rediff and rename patch DS10 to DS01: alsa 1.0.16 final
5517 - add patch DS02: Alsa HG 20080323 full checkout
5518 - fix patch DS02 to actually build on i586
5519 - rediff patch FP01: pagecache zeroing fixes
5520 - Include bttv.h and bttvp.h headers in kernel-devel, required by
5521 dkms-lirc-gpio (#39004, patch by Anssi Hannula <anssi@mandriva.org>)
5522 - Fix kernel-source symlinks if the kernel is installed after the
5523 source and no matching -devel- rpm is installed (#38862)
5524 - update defconfigs
5525 - fix license
5526
5527 * Sun Mar 9 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24.3-4mdv
5528 - override system buildroot definition on 2008 systems to
5529 get back correct BuildRoot behaviour
5530 - add patches from upstream stable queue:
5531 * AA01: ipcomp-disable-bh-on-output-when-using-shared-tfm
5532 * AA02: ipconfig-the-kernel-gets-no-ip-from-some-dhcp-servers
5533 * AA03: ipv4-remove-ip_tos-setting-privilege-checks
5534 * AA04: ipv6-dst_entry-leak-in-ip4ip6_err
5535 * AA05: ipv6-fix-ipsec-datagram-fragmentation
5536 * AA06: net-fix-race-in-dev_close
5537 * AA07: net-messed-multicast-lists-after-dev_mc_sync-unsync
5538 * AA08: niu-bump-driver-version-and-release-date
5539 * AA09: niu-fix-bmac-alternate-mac-address-indexing
5540 * AA10: niu-more-bmac-alt-mac-address-fixes
5541 * AA11: revert-net-add-if_addrlabel.h-to-sanitized-headers
5542 * AA12: sparc64-loosen-checks-in-exception-table-handling
5543 * AA13: sparc-fix-link-errors-with-gcc-4.3
5544 * AA14: tcp-improve-ipv4-established-hash-function
5545 - add updates from Alsa HG:
5546 * DS02: pcsp: improve "enable" option handling
5547 * DS04: pcsp: add description
5548 * DS69: hda-codec - model for alc883 to support FUJITSU Pi2515
5549 * DS70: hda-codec - model for cx20549 to support laptop HP530
5550 * DS71: hda_intel: Add the IDs of nvidia MCP79 HD audio controller
5551 * DS72: hda-codec - Fix dmics on ALC268 in auto configuration
5552 * DS73: hda-codec - Add internal mic item for ALC268 acer model
5553 * DS74: HDA Codecs: add support for Toshiba Equium L30
5554 * DS75: at73c213: fix error checking for clk API
5555 * DS76: at73c213: monaural support
5556 - add patch FF01: fix timestamps on fat partitions (#26819)
5557
5558 * Wed Mar 5 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24.3-3mdv
5559 - add patch DV01: bootsplash 3.1.6
5560 - add Provides should-restart = system
5561 - add patch DH02: fix for wacom serial devices when usbhid are loaded (#35201)
5562 - update patch DN30: full usb-rndis-lite svn rev 3305 checkout (#30128)
5563 - replace old patches DS01-DS03 with new DS01,DS02:
5564 * alsa pc-speaker support from Alsa HG
5565 - add fixes from Alsa HG tree:
5566 * DS67: hda-codec mode for alc883 to support M720R
5567 * DS68: hda ALC288 Add NEC S970 to the quirk table
5568 - add patches DS90,DS91: Enable a wacom digitizer on an HP TC1100
5569 - update patch KP01: TuxOnIce 3.0-rc5
5570 - add patch MB65: ipw3945 fix skb->tail on 64 bit
5571 - update defconfigs
5572
5573 * Sun Mar 2 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24.3-2mdv
5574 - update patch DI10: wacom tablet 0.7.9-8 (#37073)
5575 * bugfixes, adds support for Wacom Cintiq 20WSX
5576 - add patch DH01: add usb hid quirk for Multilaser USB-PS/2
5577 keyboard adapter (#36870)
5578 - add fixes from Alsa HG tree:
5579 * DS53: hda-codec adapt eeepc p701 mixer for virtual master control
5580 * DS54: usb-audio add workaround for broken E-Mu frequency feedback
5581 * DS55: usb-audio sort quirks list
5582 * DS56: sb8 fix sb 1.0 capture DMA programming
5583 * DS57: hda-codec fix AD1988 capture elements
5584 * DS58: hda-codec add Fujitsu Lifebook E8410 to quirk table
5585 * DS59: hda-codec fix initial DAC numbers of 92HD71bxx codecs
5586 * DS60: oxygen add owner field
5587 * DS61: hda-codec add docking-station mic-input for Thinkpad X61
5588 * DS62: hda-codec fix names of realtek codecs to adapt master controls
5589 * DS63: intel8x0 add quirk for Compaq Deskpro EN
5590 * DS64: hda-sigmatel disable power management on fixed ports
5591 * DS65: hda-sigmatel-add-verbs-for-92hd73xxx-laptops
5592 * DS66: hda-codec fix array over-range access with stac92hd71bxx codec
5593
5594 * Fri Feb 29 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24.3-1mdv
5595 - update to 2.6.24.3 stable:
5596 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.24.3
5597 - update patch MB40: acer_acpi 0.11.1
5598 - add patch MD10: Prism2 v0.2.9 (#38155)
5599 - update defconfigs
5600
5601 * Sat Feb 23 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24.2-2mdv
5602 - disable CONFIG_USB_OHCI_HCD_SSB so ssb wont get loaded even if it
5603 is blacklisted (reported by AdamW on kernel-discuss)
5604 - disable FAIR_USER_SCHED and FAIR_GROUP_SCHED to get better
5605 porformance from the kernels (reported by FHimpe on kernel-discuss)
5606 - add patch DI10: update Wacom tablet support (#37073)
5607 * adds support for: Bamboo1, BambooFun and Cintiq 12WX
5608 - add patch DM20: add compal-laptop driver (#37860)
5609 - add patch DN30: initial rndis wm5/6 support (#30128)
5610 - add more fixes and addons from Alsa HG:
5611 * DS24: sound-hda-codec-fix-ALC880-F1734-model
5612 * DS25: sound-hda-codec-fix-automute-of-AD1981HD-hp-model
5613 * DS26: sound-hda-codec-dont-create-vmaster-if-no-slaves-found
5614 * DS27: sound-hda-codec-fix-wrong-capture-source-selection-for-ALC883-codec
5615 * DS28: sound-hda-codec-fix-ALC882-capture-source-selection
5616 * DS29: sound-hda-codec-clean-up-capture-source-selection-of-Realtek-codecs
5617 * DS30: sound-hda-codec-implement-auto-mic-jack-sensing-for-Samsung-laptops-with-AD1986A
5618 * DS31: sound-hda-codec-more-auto-configuration-fixups
5619 * DS32: sound-hda-codec-fix-aout-configuration-of-realtek-codecs
5620 * DS33: sound-hda-codec-add-IEC958-default-PCM-switch
5621 * DS34: sound-hda-codec-add-more-names-to-vendor-list
5622 * DS35: sound-hda-codec-fix-breakage-of-resume-in-auto-config-of-realtek-codecs
5623 * DS36: sound-hda-intel-add-ATI-RV7xx-HDMI-audio-support
5624 * DS37: sound-hda-codec-fix-amp-in-values-for-pin-widgets
5625 * DS38: sound-hda-codec-fix-missing-capsrc_nids-for-ALC262
5626 * DS39: sound-hda-codec-add-support-for-AD1883-AD1884A-AD198A-q984B
5627 * DS40: sound-hda-codec-add-model-mobile-for-AD1884A
5628 * DS41: sound-intel8x0-add-support-for-8-channel-sound
5629 * DS42: sound-hda-codec-fix-master-volume-on-HP-dv8000
5630 * DS43: bt87X-fix-freeing-of-shared-interrupt
5631 * DS44: sound-hda-intel-fix-oops-with-ATI-HDMI-devices
5632 * DS45: sound-hda-codec-fix-ALC662-recording
5633 * DS46: sound-hda-codec-fix-ALC268-capture-source
5634 * DS47: sound-hda-codec-fix-STAC927x-power-management
5635 * DS48: sound-hda-codec-fix-STAC927x-invalid-association-value
5636 * DS49: sound-hda-add-PCI_QUIRKS-for-laptops-with-92HDxxxx-codecs
5637 * DS50: sound-hda-STAC927x-analog-mic
5638 * DS51: sound-seq_oss_synth-remove-invalid-bug
5639 * DS52: sound-hda-codec-add-missing-descriptions-for-STAC-codec-models
5640 - update patch FS01: unionfs v2.2.4 (from main)
5641 - update patch MB10: ndiswrapper 1.52
5642 - update patch MC30: drbd v8.0.11 (from main)
5643 - update patches MD00-MD01: uvc r173 (from main)
5644 - update defconfigs
5645
5646 * Mon Feb 11 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24.2-1mdv
5647 - quick update to 2.6.24.2 stable: (CVE-2008-0600)
5648
5649 * Sun Feb 10 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24.1-1mdv
5650 - update to 2.6.24.1 stable:
5651 * CVE-2008-0007, CVE-2008-0009/10
5652 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.24.1
5653 - add patches DN20,DN21: Atheros L2 10/100 support
5654 - update patch DS10: alsa 1.0.16 final
5655 - add selected patches from alsa HG:
5656 * DS11: sound-soc-fix-duplicate-rj-master-test
5657 * DS12: sound-hda-intel-Fix-PCM-device-number-assignment
5658 * DS13: sound-hda-codec-Add-ID-for-HDMI-codec-on-Jetway-J9F2
5659 * DS14: sound-ice1712-Fix-hoontech-MIDI-input
5660 * DS15: sound-hda-STAC927x-power-down-inactive-DACs
5661 * DS16: sound-hda-intel-use-SG-buffers
5662 * DS17: sound-hda-intel-support-64bit-buffer-allocation
5663 * DS18: sound-ice1712-add-support-for-Delta-1010E
5664 * DS19: sound-ice1712-all-support-for-Delta-66E
5665 * DS20: sound-hda-intel-Fix-compile-error-with-CONFIG_SND_DEBUG_DETECT
5666 * DS21: sound-hda-codec-correct-HDMI-transmitter-names
5667 * DS22: sound-hda-codec-remove-duplicate-controls-in-alc268-test-mixer
5668 * DS23: sound-hda-codec-Fix-race-condition-in-generic-bound-volume-switch-controls
5669 - update defconfigs
5670
5671 * Fri Feb 1 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24-2mdv
5672 - add patch DM10: device-mapper raid4/5 target
5673 - add patch DM11: fix device-mapper raid4/5 build for 2.6.24
5674 - update patch DN15: nozomi driver merged upstream
5675 - drop patch DN16: nozomi build fix, not neede anymore
5676 - uppdate patch DS10: alsa 1.0.16rc2 + git-2008-01-31
5677 - add patch KS01: disable inclusion of s390 file in sysctl_check as
5678 we dont ship arch/s390 files in our kernel-source (#37388)
5679 - update defconfigs
5680
5681 * Sat Jan 26 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24-1mdv
5682 - update to 2.6.24 final
5683 - drop patch KS01: CFS cpu_share fix (merged upstream)
5684 - update patch FS01: unionfs 2.2.3
5685
5686 * Wed Jan 23 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24-0.rc8.2mdv
5687 - update to 2.6.24-rc8-git5
5688 - add patch DS10: alsa 1.0.16-rc1
5689 - add patch KS01: CFS cpu_share tunable crash fix (LKML)
5690 - update defconfigs
5691
5692 * Sat Jan 19 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24-0.rc8.1mdv
5693 - update to 2.6.24-rc8-git3
5694 - rediff patch CR01: BadRAM support
5695 - drop patch DA01: acpi regression fixes (merged upstream)
5696 - update FR01-FR17: Reiser4 support (from 2.6.24-rc8-mm1)
5697 - update FS01: unionfs 2.2.2
5698 - set CONFIG_PHYSICAL_START=0x200000 on x86_64 so the kernels actually boot
5699 - make 32bit kernels conflict arch(x86_64) so they cant be installed
5700 by mistake (#32631)
5701 - update defconfigs
5702
5703 * Sat Jan 12 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24-0.rc7.4mdv
5704 - update to 2.6.24-rc7-git4
5705 - add patch DA01: acpi-release-20070126-2.6.24-rc7, acpi regression
5706 fixes (should fix #36711)
5707 - disable XEN Guuest support on all but server kernels as it
5708 breaks AGP support (#36458)
5709
5710 * Thu Jan 10 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24-0.rc7.3mdv
5711 - update to 2.6.24-rc7-git2
5712 - drop patch DS05: alsa hda_intel revert (merged upstream)
5713
5714 * Wed Jan 9 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24-0.rc7.2mdv
5715 - redo the defconfigs as they got somewhat screwed up in last build
5716 - add patch DS05: revert alsa hda_intel to -rc6 status as -rc7 is broken
5717 (noted on LKML)
5718 - disable CONFIG_RTC as it conflicts with GEN_RTC
5719
5720 * Mon Jan 7 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24-0.rc7.1mdv
5721 - update to kernel.org 2.6.24-rc7
5722 - review and updeate defconfigs
5723 * make RTC modular (same as main kernel)
5724 * enable USB_SUSPEND and USB_PERSIST
5725 * enable some modules that got disabled by mistake
5726 - fix url to point at Mandriva wiki
5727
5728 * Sat Jan 5 2008 Thomas Backlund <tmb@mandriva.org> 2.6.24-0.rc6.3mdv
5729 - update to kernel.org 2.6.24-rc6-git11
5730 - update patch FS01: unionfs 2.2.1
5731 - more spec fixes due to x86 merge
5732 - fix build,source symlinks to -source tree to be created only if no
5733 matching -devel tree is installed, and to be removed only if they
5734 point at the -source tree
5735 - optimize NR_CPUS according to flavours for memory savings
5736 * desktop586: 8, desktop: 16, laptop: 8, server: 32
5737
5738 * Mon Dec 31 2007 Thomas Backlund <tmb@mandriva.org> 2.6.24-0.rc6.2mdv
5739 - update to kernel.org 2.6.24-rc6-git7
5740 - Doh :-( ... re-enable SMP support in all configs as it got disabled by
5741 mistake in the scripts cleanup
5742
5743 * Sun Dec 30 2007 Thomas Backlund <tmb@mandriva.org> 2.6.24-0.rc6.1mdv
5744 - add support for -git tarballs
5745 - update to 2.6.24-rc6-git6
5746 - rediff patch AI01: Toshiba Equium A60 needs pci=assign-busses
5747 - drop patches AI02-AI03: picopower irq-router support (merged upstream)
5748 - rediff patch AI10: error message suggesting use of desktop586 kernel
5749 - drop patch AX01: nvidia sata corruption fix (fixed upstream)
5750 - drop patch AX10: x86_64 High Resolution Timer & Tickless support
5751 (merged upstream)
5752 - update patch AS01: linux-phc 0.3.1:1
5753 - rediff patch CE02: acpi dsdt support
5754 - drop patch CF01: CFS v24.1 (merged upstream)
5755 - drop patches CK01-CK06: swap prefeth as upstream has dropped them too
5756 - redo patch CR01: BadRAM support
5757 - disable patches DA11-DA12: nVidia Software NCQ support, need to be redone
5758 - drop patch DA81: Danny's Intel HDA codec detection fix, merged upstream
5759 - redo patch DC03: fix Kconfig to enable i8k on x86_64
5760 - update patch DM01: thincpad-acpi v 0.18 for 2.6.24-rc6
5761 - drop patch DN20: iwlwifi support, merged upstream
5762 - add patch DS03: pcsp buildif for 2.6.24
5763 - add patches FP01-FP03: add pagecache zero_user* support, needed for reiser4
5764 - replace old patches FR01-FR22 with new FR01-FR22: Reiserfs4 support from
5765 AKPM's 2.6.24-rc6-mm1
5766 - update patch FS01: unionfs v 2.2
5767 - update patch KP01: tuxonice v 3.0-rc3
5768 - update patch MB02: 3rdparty merge (from main)
5769 - update patch MB20: squashfs 3.3
5770 - drop patches MB21-MB23: squashfs fixes (not needed anymore)
5771 - add patch MB32: acerhk buildfix for 2.6.24
5772 - update patches MB50-MB52: qc-usb v 0.6.6
5773 - add patch MB64: ipw3945 buildfix for 2.6.24
5774 - add patch MB72: rt2400 buildfix for 2.6.24
5775 - add patch MB82: rt2500 buildfix for 2.6.24
5776 - add patch MB92: rt2570 buildfix for 2.6.24
5777 - add patch MC03: rt61 buildfix for 2.6.24
5778 - add patch MC13: rt73 buildfix for 2.6.24
5779 - add patch MC53: acx buildfix for 2.6.24
5780 - update patch MD00-MD02: uvc r158 (from main)
5781 - drop patch MS02: SLUB regression fix, merged upstream
5782 - updste patches NI01-NI05: ipset support (from main)
5783 - update patches NI10-NI11: ifwlog support (from main)
5784 - update patches NI15-NI16: psd support (from main)
5785 - disable patches SA01-SA58: AppArmor support, need to be updated
5786 - update specfile & build scripts for the i386 + x86_64 > x86 merge
5787 - drop defconfig-maximum as it's a duplicate of defconfig-desktop
5788 - use make clean on -devel & source tree to not ship unneeded files
5789 - update defconfigs
5790 - drop README.urpmi
5791
5792 * Fri Dec 28 2007 Thomas Backlund <tmb@mandriva.org> 2.6.23.12-2mdv
5793 - update patches DS01-DS02: alsa pcspeaker support, and enable it
5794 - update patches MB10-MB12: ndiswrapper 1.51
5795
5796 * Mon Dec 24 2007 Thomas Backlund <tmb@mandriva.org> 2.6.23.12-1mdv
5797 - update to kernel.org 2.6.23.12 stable:
5798 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.23.12
5799 - update patch CF01: CFS scheduler v 24.1
5800 - drop patches CF02-CF04: CFS bugfixes (merged upstream)
5801 - add patch DM01: update to thinkpad-acpi v 0.18 (#35222)
5802 - update patch MB40: acer_acpi 0.10 final
5803 - add patch MS01: fix SLUB vs SLAB hackbench regression
5804 - switch to SLUB as default (same as upstream)
5805 - update defconfigs
5806
5807 * Sun Dec 16 2007 Thomas Backlund <tmb@mandriva.org> 2.6.23.11-1mdv
5808 - update to kernel.org 2.6.23.11 stable:
5809 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.23.11
5810
5811 * Sat Dec 15 2007 Thomas Backlund <tmb@mandriva.org> 2.6.23.10-1mdv
5812 - update to kernel.org 2.6.23.10 stable:
5813 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.23.10
5814 - drop patches AA01-AA08: -stable prepatches (merged upstream)
5815 - add patch AI10: fix kernel error message when CPU is not fully
5816 i686-compatible, and suggest desktop586 flavour (#34231)
5817 - rediff patch CF01: CFS scheduler v24
5818 - add patch CF04: sched: enable early use of sched_clock()
5819 - update patch MB40: acer_acpi 0.10rc5
5820 - update patch MC30: drbd v 8.0.8 (#36055)
5821
5822 * Tue Dec 4 2007 Thomas Backlund <tmb@mandriva.org> 2.6.23.9-3mdv
5823 - add patches CF02, CF03: CFS scheduler Local Dos bugfixes (#35822)
5824
5825 * Sun Dec 2 2007 Thomas Backlund <tmb@mandriva.org> 2.6.23.9-2mdv
5826 - add patches AA01-AA08 from stable queue:
5827 * libertas: properly account for queue commands
5828 * NET: random : secure_tcp_sequence_number should not assume
5829 CONFIG_KTIME_SCALAR
5830 * NETFILTER: Fix NULL pointer dereference in nf_nat_move_storage()
5831 * ramdisk: fix data corruption on memory pressure
5832 * PKT_SCHED: Check subqueue status before calling hard_start_xmit
5833 * Fix synchronize_irq races with IRQ handler
5834 * Input: ALPS - add support for model found in Dell Vostro 1400
5835 * Input: ALPS - add signature for ThinkPad R61
5836
5837 * Wed Nov 28 2007 Thomas Backlund <tmb@mandriva.org> 2.6.23.9-1mdv
5838 - update to kernel.org 2.6.23.9:
5839 * CVE-2007-5500, CVE-2007-5501, CVE-2006-6058
5840 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.23.9
5841 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.23.8
5842 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.23.7
5843 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.23.6
5844 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.23.5
5845 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.23.4
5846 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.23.3
5847 * http://www.eu.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.23.2
5848 - update patch CF01: CFS scheduler to v24
5849 - add patch DN20: iwlvifi 1.2.0
5850 - update patch MB10: ndiswrapper 1.49 final
5851 - update patch MB40: acer_acpi 0.10rc4
5852 - add patch NI07: netfilter IFWLOG api fix (Luiz)
5853 - add patch NI12: netfilter PSD api fix (Luiz)
5854 - sync with main:
5855 * update patches MB70-MB71: rt2400 cvs20071020 wireless support
5856 * update patches MB80-MB81: rt2500 cvs20071020 wireless support
5857 * update patches MB90-MB91: rt2570 cvs20071020 wireless support
5858 * update patches MC00-MC02: rt61 cvs202071020 wireless support
5859 * update patches MC10-MC12: rt73 cvs20071020 wireless support
5860 * add patches MC50-MC52: acx cvs200701 wireless support
5861 * add patches MC60-MC51: Atmel at76c503a wireless support
5862 * add patches MC80-MC81: Via High Speed serial support
5863 * add patch MD00: USB Video class support
5864 - enable DEBUG_BUGVERBOSE for x86_64 too
5865 - update defconfigs
5866
5867 * Tue Oct 30 2007 Thomas Backlund <tmb@mandriva.org> 2.6.23.1-2mdv
5868 - add patches DC01-DC03: fix x86_64 build of i8k (Dell SMM)
5869
5870 * Sat Oct 20 2007 Thomas Backlund <tmb@mandriva.org> 2.6.23.1-1mdv
5871 - update to kernel.org 2.6.23.1 stable
5872 - drop patch AA01: 2.6.23-rc8-git2, merged upstream
5873 - update kernel-laptop summary and descriptions
5874 - update patch AX10: High Resolution Timer Support & Tickless System
5875 to 2.6.23-hrt3
5876 - add patch CF01: update CFS scheduler to v22.1-rc0
5877 - update patch MB10: ndiswrapper-1.49rc4
5878 - update patch MB40: acer_acpi 0.10rc3
5879 - update patches MB60-MB64: ipw3945 1.2.2
5880 - sync wireless support with main:
5881 * update MB70,MB71: rt2400-cvs20070820
5882 * update MB80,MB81: rt2500-cvs20070820
5883 * update MB90,MB91: rt2570-cvs20070820
5884 * update MC00-MC02: rt61-cvs20070820
5885 * update MC10-MC12: rt73-cvs20070823
5886 - add patches MC40,MC41: Tablet Buttons Driver for Fujitsu Siemens
5887 (requested bu Austin)
5888 - re-enable CONFIG_INPUT_TABLET as it got disabled by mistake
5889 - set -laptop kernels to HZ_300 as HZ_100 is known to cause audio skips
5890 as noted during testing of main kernel
5891 - disable mrproper target on -devel rpms to stop 3rdparty installers from
5892 wiping out needed files and thereby breaking builds
5893 (based on an initial patch by Danny used in kernel-multimedia series)
5894 - update defconfigs
5895
5896 * Fri Sep 28 2007 Thomas Backlund <tmb@mandriva.org> 2.6.23-0.rc8.1mdv
5897 - update to kernel.org 2.6.23-rc8-git2 (fixes CVE-2007-4571)
5898 - drop old patch AA01: CVE-2007-4573 fix, merged upstream
5899 - drop patches AA10, AA11: ACPI and VESA wakeup fixes, merged upstream
5900 - rediff patch AX10: hrt/tickless support
5901
5902 * Sun Sep 23 2007 Thomas Backlund <tmb@mandriva.org> 2.6.23-0.rc7.2mdv
5903 - add patch AA01: x86_64 zero extend all registers after ptrace in
5904 32bit entry path (CVE-2007-4573)
5905 - add patch SA48: fix AppArmor return-code and rejected_mask
5906 (from John Johansen @ suse)
5907 - add patch FS03: unionfs: do not update mtime if there is no upper
5908 branch for the inode (blino@mandriva.com)
5909
5910 * Thu Sep 20 2007 Thomas Backlund <tmb@mandriva.org> 2.6.23-0.rc7.1mdv
5911 - update to kernel.org 2.6.23-rc7
5912 - drop patch AA01: rc6-git6, mergesd upstream
5913 - add patch AA10: fix VESA mode decoding in ACPI wakeup (LKML)
5914 - add patch AA11: fix ACPI wakeup devices after hibernation (LKML)
5915 - update patch AX10: High Resolution Timer Support & Tickless System
5916 2.6.23-rc7-hrt1
5917 - add patch MC32: drbd Kconfig and Makefile buildfix (from main, Luiz)
5918 - rediff patch KP01: tuxonice 2.2.10.3
5919 - require the fixed mkinitrd-4.2.17-52mdv
5920 - fix i386 defconfig to be i686, so that only desktop586 is built
5921 for i586 (Thanks to Danny for noticing)
5922 - update defconfigs
5923
5924 * Thu Sep 20 2007 Thomas Backlund <tmb@mandriva.org> 2.6.23-0.rc6.2mdv
5925 - update patch KP01: tuxonice 2.2.10.3 (suspend2) is back
5926 - update defconfigs
5927
5928 * Sun Sep 16 2007 Thomas Backlund <tmb@mandriva.org> 2.6.23-0.rc6.1mdv
5929 - update to kernel.org 2.6.23-rc6
5930 - update patch AA01: 2.6.23-rc6-git6
5931 - update patch AX10: High Resolution Timer Support & Tickless System
5932 2.6.23-rc6-hrt2
5933 - update patches FS01, FS02: unionfs 2.1.3
5934 - add patch SA47: fix AppArmor syslog logging (AppArmor svn rev 961)
5935 - update defconfigs
5936
5937 * Thu Sep 6 2007 Thomas Backlund <tmb@mandriva.org> 2.6.23-0.rc5.1mdv
5938 - update to kernel.org 2.6.23-rc5
5939 - add patch AA01: 2.6.23-rc5-git1
5940 - update patch AX10: High Resolution Timer Support & Tickless System
5941 - disable patch CA03: video 80x25 fallback, as there is a brand new
5942 setup code in 2.6.23-rcX
5943 - drop patch CF01: cfs sceduler, merged upstream
5944 - disable patches CK01-CK06: swap prefetch as it's broken
5945 - drop patches DA59-DA80: alsa fixes, merged upstream
5946 - drop patch DC01: P4M900 agpgart spport, merged upstream
5947 - drop patch DF01: dmi based autoloading, merged upstream
5948 - drop patch DI01: 2.6.23-ide-git-upstream, merged upstream
5949 - drop patch DI10: wacom bamboo support, merged upstream
5950 - drop patches DI25,DI26: marvell ide support, as it's broken
5951 - disable patch DN02: add 47xx support to b44, needs to be updated
5952 - drop patch DN03: forcedeth phy oui id fix, merged upstream
5953 - disable patch DN04: e1000 update, needs to be updated
5954 - drop patch DN05: r8169 link down fix, merged upstream
5955 - drop patched DN50-DN52: wireless (dscape) git
5956 - drop patches DS11, DS12: Amd SB700/800 smbus support, mreged upstream
5957 - drop patch DV01: fbsplash support
5958 - drop patches DV21, DV22: nvidiafb fixes, merged upstream
5959 - update/add patches FR01-FR22: ReiserFS4 from 2.6.23-rc4-mm1
5960 - update patch FS01: unionfs 2.1.2 for 2.6.23-rc3
5961 - rediff patch FS02: unionfs AppArmor buildfix
5962 - drop patches FS04, FS05: ext3/4 orphan list debug support and
5963 corruption fix, merged upstream
5964 - disable patch KP01: suspend2 support, as upstream needs to catch up
5965 - update patch MB10: ndiswrapper 1.48-rc2
5966 - redo patch MB11: ndiswrapper Kconfig & Makefile fix
5967 - add patch MB23: squasfs buildfix for 2.6.23
5968 - update patch MB40: acer_acpi v0.8.2
5969 - update patch MC30: drbd 8.0.6
5970 - disable patch NB01: bluetooth sco support, need to be rewritten
5971 - add patch NI02: ipset 2.6.23 buildfix
5972 - rediff patches SA03, SA21: AppArmor
5973 - add include/xen/ to filelists
5974 - update defconfigs
5975
5976 * Tue Sep 4 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22.6-2mdv
5977 - add patch DA81: alsa hda-intel codec detection fix (Danny)
5978 - enable USB_SUSPEND only on laptop kernels, as it causes to much
5979 regressions for normal users, but is a tradeoff for laptop users (#33089)
5980 - add patches FS04, FS05: ext3/4 orphan list debug support and corruption
5981 fix (#32527) (main kernel, Luiz)
5982 - make SUSPEND2 builtin on -laptop kernels as it cant resume without it
5983
5984 * Sat Sep 1 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22.6-1mdv
5985 - update to kernel.org 2.6.22.6:
5986 * fixes: http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.22.6
5987 - drop patch AA01: merged upstream
5988 - update patch AS01: linux-phc 0.3.0
5989 - update patch CF01: CFS v 20.5
5990 - redo patch FS02: unionfs AppArmor vfs uildfix (initial patch for
5991 2.1 by John Johansen <jjohansen@suse.de>
5992 - readd patch NI05: netfilter IFWLOG support
5993 - add patch NI06: IFWLOG buildfix for 2.6.22
5994 - readd patch NI10: netfilter PSD support
5995 - add patch NI11: PSD buildfix for 2.6.22
5996 - update patches SA01-SA46: AppArmor 2.1 prerelease
5997 (SuSe 10_3 branch, commit 942)
5998 - enable DEBUG_FS (#32886)
5999 - enable USB_EHCI_TT_NEWSCHED (#32894)
6000 - fix #29744, #29074 in a cleaner way by disabling the sourcing of
6001 arch/s390/crypto/Kconfig
6002 - update defconfigs
6003
6004 * Sun Aug 26 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22.5-2mdv
6005 - add patch AA01: 2.6.22.6-rc1
6006 - update patch CF01: CFS v 20.4
6007 - add patch DC01: add Via P4M900 agpgart support
6008 - drop patches DN33-DN43: old netfilter ipset, ifwlog, psd support
6009 - update patch MB40: acer_acpi v0.7
6010 - redo patch MB41: fix acer_acpi Kconfig and Makefile
6011 - add patch NI01: netfilter ipset support (from OpenWrt) (#32399)
6012 - make CPU_IDLE_GOV_MENU builtin on -laptop kernels (Request by Danny)
6013 - update defconfigs
6014
6015 * Fri Aug 24 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22.5-1mdv
6016 - update to kernel.org 2.6.22.5:
6017 * fixes CVE-2007-3848
6018 * other fixes: http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.22.5
6019 - update patch CF01: CFS scheduler v 20.2
6020 - drop patch CF02: CFS updates, merged upstream
6021 - drop patch CK07: merged in CFS
6022 - drop patch DB33: sb700 ahci support, merged upstream
6023 - update patch FS01: unionfs 2.1.2
6024 - update defconfigs
6025
6026 * Fri Aug 17 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22.3-1mdv
6027 - update to kernel.org 2.6.22.3:
6028 * fixes: CVE-2007-3105 and other bugs
6029 * full log: http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.22.3
6030 - add audio fixes from main kernel:
6031 DA59_hda_codec_fix_51_output.patch
6032 DA60_hda_codec_hp_spartan_quirk.patch
6033 DA61_usbaudio_roland_junog_quirk.patch
6034 DA62_hda-codec-hp-nettle-id.patch
6035 DA63_hda-codec-fix-hp-nettle-51.patch
6036 DA64_hda-codec-hp-lucknow-51-support.patch
6037 DA65_hda-codec-Add-quirk-for-HP-Samba.patch
6038 DA66_hda-codec-Add-LG-LW20-line-in-capture-sourc.patch
6039 DA67_hda-codec-Add-LG-LW20-si3054-modem-id.patch
6040 DA68_hda-codec-Add-quirks-for-HP-dx2200-dx2250.patch
6041 DA69_si3054.patch
6042 DA70_hda-codec-Add-quirk-for-Asus-P5LD2.patch
6043 DA80_usbaudio-logitech-id.patch
6044 - add network updates from main kernel:
6045 DN01_r8169_link_down_fix.patch
6046 DN02_e1000_7.6.5.patch
6047 DN03_fix-forcedeth-phy-oui-realtek-id.patch
6048 - add ide/ahci updates from main kernel:
6049 DB33_ahci_SB700_support.patch
6050 DI25_add_marvell_ide.patch
6051 - add smbus updates from main kernel:
6052 DS01_smbus_sb700_support.patch
6053 DS02_smbus_sb800_support.patch
6054 - add patch DI26: fix marvell ide to build with 2.6.22+
6055 - update patch FS01: unionfs 2.1
6056 - redo patch FS02: fix unionfs to build with AppArmor
6057 - update defconfigs
6058
6059 * Fri Aug 10 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22.2-1mdv
6060 - update to kernel.org 2.6.22.2:
6061 * fixes: CVE-2007-3851 and other bugs
6062 * full log: http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.22.2
6063 - rediff patch AX10: High Resolution Timer Support & Tickless System
6064 - drop patch DA15: Intel Santa Rosa support, merged upstream
6065 - update patch DI10: wacom bamboo to add missing define
6066 - update patch MB11: add missing KSRC parameter to ndiswrapper Makefile
6067 - rediff patch SA03: AppArmor vfs-notify_change
6068
6069 * Sun Jul 15 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22.1-2mdv
6070 - update patch AX10: High Resolution Timer Support & Tickless System
6071 to 2.6.22-hrt6
6072 - add patch CF02: CFS scheduler updates (from -rt tree)
6073 - update patch FS01: unionfs 2.0 2.6.22.1-u2
6074 - refiff patch FS02: unionfs AppArmor buildfix
6075 - use readlink instead of ls and awk in scripts, as ls broken in
6076 current coreutils (#31906), this also makes the scripts nicer
6077
6078 * Fri Jul 13 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22.1-1mdv
6079 - update to kernel.org 2.6.22.1:
6080 * NETFILTER: {ip, nf}_conntrack_sctp: fix remotely triggerable
6081 NULL ptr dereference (CVE-2007-2876)
6082 - update patch AX10: High Resolution Timer Support & Tickless System
6083 to 2.6.22-hrt2
6084 - update patch CF01: Ingo Molnar's CFS-v19 Scheduler for 2.6.22.1
6085 - add patch DN50: mac80211 (dscape) wireless drivers
6086 * ADMtek ADM8211
6087 * Broadcom BCM43xx
6088 * Iwlwifi
6089 * Prism64 PCI, USB
6090 * Ralink rt2400, rt2500, rt2500 usb, rt61, rt73
6091 * Realtek 8187 USB
6092 * ZyDAS ZD1211/ZD1211B USB
6093 - add patch DN51: update mac80211 iwlwifi to 0.1.1
6094 - add patch DN52: add missing parts to get dscape drivers to build
6095 - update patch MB40: acer_acpi v0.6
6096 - drop patch MC20: 3rdparty iwlwifi driver (replaced by DN50, DN51)
6097 - update defconfigs
6098
6099 * Tue Jul 10 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22-2mdv
6100 - update patch AX10: High Resolution Timer Support & Tickless System
6101 to 2.6.22-hrt1
6102 - update patch CF01: Ingo Molnar's CFS-v19 Scheduler for 2.6.22
6103 - add patch DF01: dmi based module autoloading
6104 - add patch DI01: IDE updates from upcoming 2.6.23-rc1
6105 - add patch DI10: Add Wacom Bamboo Tablet support (#31831)
6106 - add patch DV21: add proper support for geforce 7600
6107 - add patch DV22: modify nvidiafb to use a faster scroll method
6108 - update defconfigs
6109
6110 * Mon Jul 9 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22-1mdv
6111 - update to kernel.org 2.6.22 final
6112 - drop patch AA01: merged upstream
6113
6114 * Sun Jul 8 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22-0.rc7.2mdv
6115 - update patch AA01: kernel.org 2.6.22-rc7-git6
6116 - update patch AX10: High Resolution Timer Support & Tickless System
6117 to 2.6.22-rc7-hrt1
6118 - update patch CF01: Ingo Molnar's CFS-v19 Scheduler for 2.6.22-rc7
6119 - add patch CK01: Swap Prefetch
6120 - replace patch CK01 with patches CK01-CK07: Enhanced Swap Prefetch
6121 from 2.6.22-rc6-mm1
6122 - make kernel-source provide kernel-devel again until we figure out
6123 what to do with dkms & co
6124 - update defconfigs
6125
6126 * Tue Jul 3 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22-0.rc7.1mdv
6127 - update to kernel.org 2.6.22-rc7
6128 - add patch AA01: 2.6.22-rc7-git1
6129 - rediff patch SA03: AppArmor vfs-notify change
6130
6131 * Sun Jul 1 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22-0.rc6.2mdv
6132 - update patch AX10: High Resolution Timer Support & Tickless System
6133 to 2.6.22-rc6-hrt1
6134 - add patches MC31, MC31: drbd 8.0.4
6135 - make kernels provide drbd-api 86 (AdamW request)
6136 - update patches SA01-SA44: AppArmor 2.0.2 build 755
6137 - kernel-source does not provide kernel-devel anymore
6138 - add patches DA10,DA11: add NCQ support to sata_nv for MCP51/55/61
6139 - add patch DA15: add ich8m ata support
6140 - update patches DN15,DN16: Nozomi 3G driver
6141 - add patches FR01-FR12: Reiser4 filesystem
6142 - rediff patch FR01: to actually make it work
6143 - drop patches FR07, FR12: -mm specific code
6144 - add patch KP01: Suspend2 2.2.10.2 support
6145 - update patches SA01-SA45: AppArmor 2.0.2 build 755
6146 - update defconfigs
6147
6148 * Mon Jun 25 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22-0.rc6.1mdv
6149 - update to kernel.org 2.6.22-rc6
6150 - rediff patch AX10: High Resolution Timer Support & Tickless System
6151 - update patch CF01: Ingo Molnar's CFS-v18 Scheduler for 2.6.22-rc6
6152
6153 * Sun Jun 24 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22-0.rc5.2mdv
6154 - kernel-*-devel rpms does not provide kernel-source anymore
6155 - jump the gun on smp-enabled kernels (to help main kernel transition),
6156 so every kernel is now smp enabled, and we rely on smp-alternatives
6157 to get it right on single processor/core systems
6158 - drop "-smp" from kernel names, so now the only kernel flavours are:
6159 desktop586, desktop, laptop, server
6160 - add obsoletes & provides to *-latest rpms to cope with the naming changes
6161 - simplify specfile to match naming changes
6162 - fix kernel descriptions & summarys to match the nanming changes
6163 - re-add build & source symlinking logic to kernel-source rpm so
6164 it works with dkms
6165 - update README.urpmi regarding theese changes
6166 - update patch CF01: Ingo Molnar's CFS-v18 Scheduler
6167 - update patch FS01: unionfs 2.0 v. linux-2.6.22-rc5-u1
6168 - redo patch FS02: fix unionfs build with AppArmor
6169 - update patch MB10: ndiswrapper 1.47
6170 - update patch MB11: ndiswrapper Makefile fix
6171 - update patch MC20: iwlwifi 0.0.32 and enable it
6172 - drop patch MC21: iwlwifi include fix, merged upstream
6173 - update defconfigs
6174
6175 * Sun Jun 17 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22-0.rc5.1mdv
6176 - update to kernel.org 2.6.22-rc5
6177 - update patch AX10: High Resolution Timer Support & Tickless System
6178 2.6.22-rc5-hrt1
6179 - add patches DS01,DS02: Alsa pcspeaker support on ix86 (pkarlsen, #31058)
6180 - disable CONFIG_SND_PCSP, still broken
6181 - update patch FS01: unionfs 2.0 2.6.22-rc4-u1
6182 - add patch FS02: fix unionfs build to work with AppArmor patchset
6183 - update defconfigs
6184
6185 * Sat Jun 16 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22-0.rc4.4mdv
6186 - update patch AX10: High Resolution Timer Support & Tickless System
6187 2.6.22-rc4-hrt10
6188 - update patch CF01: Ingo Molnar's CFS-v17 Scheduler
6189 - drop patch CF02: merged upstream
6190
6191 * Wed Jun 13 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22-0.rc4.3mdv
6192 - macroized spec file is back (Thanks again Anssi)
6193 - update patch AX10: High Resolution Timer Support & Tickless System
6194 2.6.22-rc4-hrt7
6195 - drop patch CF02: SCHED_IDLEPRIO fix, fixed upstream
6196 - add new patch CF02: CFS-v17-rc4
6197
6198 * Sun Jun 10 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22-0.rc4.2mdv
6199 - macroizing spec file, shortens it by ~1300 lines (BIG thanks goes
6200 to Anssi for providing the patch)
6201 - fix macroizing to work with -smp flavour descriptions and summarys
6202 - enable building of laptop(-smp) flavours for ix86 & x86_64 to start
6203 streamlining the defconfigs & optimizations
6204 - update patch AX10: High Resolution Timer Support & Tickless System
6205 2.6.22-rc4-hrt6
6206 - update patch CF01: Ingo Molnar's CFS-v16 Scheduler
6207 - drop patch CF02: CFS smpboot mismerge fix, not needed anymore
6208 - add new patch CF02: fix SCED_IDLEPRIO to actually be usable
6209 - /sbin/modinfo-25 is now renamed to /sbin/modinfo
6210 - SIGH... Revert macroizing spec file for now as the new rpm does
6211 not work with it, so it needs to be reworked :-(
6212 - update defconfigs
6213
6214 * Tue Jun 5 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22-0.rc4.1mdv
6215 - update to kernel.org 2.6.22-rc4
6216 - rediff patch AX10: High Resolution Timer Support & Tickless System
6217 - rediff patch CF01: Ingo Molnar's CFS-v15 Scheduler
6218 - add patch CF02: fix CFS smpboot mismerge on i386
6219
6220 * Mon Jun 4 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22-0.rc3.2mdv
6221 - update patch AX10: High Resolution Timer Support & Tickless System
6222 2.6.22-rc3-hrt2
6223 - disable patches CK01-CK30: Con Kolivas 2.6.22-rc3-ck1 patchset
6224 - add patch CF01: Ingo Molnar's CFS-v15 Scheduler (Request by Thierry)
6225 - update patch MB40: acer_acpi 0.5 (requested by Ze)
6226 - redo patch MB61: really fix ipw3945 Kconfig for 2.6.22-rc2+
6227 - add patch MB72: fix rt2400 Kconfig for 2.6.22-rc2+
6228 - add patch MB83: fix rt2500 Kconfig for 2.6.22-rc2+
6229 - add patch MB91: fix rt2570 Kconfig for 2.6.22-rc2+
6230 - add patch MC03: fix rt61 Kconfig for 2.6.22-rc2+
6231 - add patch rt73: fix rt73 Kconfig for 2.6.22-rc2+
6232 - enable CONFIG_SND_AC97_POWER_SAVE (requested by Austin)
6233 - change from X86_BIGSMP to X86_GENERICARCH for ix86 smp config
6234 - update defconfigs
6235
6236 * Wed May 30 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22-0.rc3.1mdv
6237 - update to kernel.org 2.6.22-rc3
6238 - update patch AX10: High Resolution Timer Support & Tickless System
6239 - update patches CK01-CK30: 2.6.22-rc3-ck1 patchset
6240 - add patch MB22: add missng include linux/sched.h to fix squashfs build
6241 - update patch MB60: ipw3945 1.2.1
6242 - add patch MB61: fix ipw3945 Kconfig to work with 2.6.22+ series kernels
6243 - drop patch CP01: cpu hotplug Kconfig depencies fix, shouldnt be needed anymore
6244 - provide versioned kernel-devel and kernel-source (MDV #31006)
6245
6246 * Tue May 22 2007 Thomas Backlund <tmb@mandriva.org> 2.6.22-0.rc2.1mdv
6247 - update to kernel.org 2.6.22-rc2
6248 - add patch AX10: High Resolution Timer Support & Tickless System
6249 Support to x86_64 & Sparc64 (request by Thierry Vignaud)
6250 - update patches CK01-CK30: Con Kolivas -ck patchset 2.6.22-rc2-ck1
6251 - drop patch DA10: ati ixp700 support, merged upstream
6252 - drop patches DI10, DI11: eth1394 autoload blocking, merged upstream
6253 - add patch DN42: fix ipt_psd build
6254 - add patch DN43: fix ipt_IFWLOG build
6255 - drop patch DN50: dscape wireless stack, merged upstream
6256 - rediff patch DV01: fbsplash support
6257 - update patch FS01: unionfs 2.0: 2.6.22-rc2-u2
6258 - update patch MB10: ndiswrapper 1.45-rc1
6259 - add patch MB11: fix ndiswrapper srctree location
6260 - add patch MB21: fix squashfs inode build
6261 - update patches MC20, MC21: iwlwifi 0.0.18
6262 - rediff patch NB01: bluetooth-alsa support
6263 - update patches SA01-SA45: AppArmor 2.0.2-662
6264 - drop patch SA50: missing security.h parameter, merged upstream
6265 - remove blackfin arch files
6266 - disable CONFIG_IRQBALANCE on i386-smp, in favour of the better
6267 working userspace irqbalance daemon from contribs (Requested by Austin)
6268 - disable a few options:
6269 * IP_NF_SET: needs more fixes to work with 2.6.22-rc2+ kernels
6270 * UNION_FS: needs to be adapted for AppArmor
6271 * IWLWIFI: need to be adapted for 2.6.22-rc2+ kernels
6272 - update defconfigs
6273
6274 * Fri May 18 2007 Thomas Backlund <tmb@mandriva.org> 2.6.21.1-2mdv
6275 - gzip kernel (and thereby rename it consistently to vmlinuz)
6276 on sparc too (peroyvind)
6277 - add patch CK24: Swap Prefetch bugfixes and optimizations,
6278 brings the code to 2.6.21-ck2 level (Con Kolivas)
6279 - redo patch DA10: change it to full ATI IXP700 support:
6280 * IDE, PATA, SATA, AHCI, I2C, SMBUS
6281 - add patch SA50: fix include/linux/security.h missing parameter,
6282 needed on sparc builds (peroyvind, #30700)
6283 - enable CONFIG_TIMER_STATS (request by Michael Braun)
6284 - update kernel-tmb-source description to point out:
6285 * only needed when building own kernels
6286 * othervise install a mztching -devel- rpm
6287 - /sbin/depmod-25 is now renamed to /sbin/depmod
6288
6289 * Sun May 6 2007 Thomas Backlund <tmb@mandriva.org> 2.6.21.1-1mdv
6290 - update to kernel.org 2.6.21.1:
6291 * IPV6: Fix for RT0 header ipv6 change
6292 * IPV4: Fix OOPS'er added to netlink fib
6293 - add patch AI03: picopower irq router fix, found when merged into
6294 kernel.org -mm series (Andrew Morton)
6295 - drop patch CK00: standalone SD scheduler v. 0.46
6296 - update patches CK01-CK23: Cons CK patchset 2.6.21-ck1,
6297 now built around with the new SD scheduler v. 0.48 as base
6298 - add patch CK30: add Kconfig option to switch between -ck (desktop),
6299 and -cks (server) oriented optimizations of the CK patchset
6300 - add patch DA10: adds support for ATI IXP700 SATA & AHCI
6301 - update defconfigs
6302 - update README.urpmi regarding kernel-tmb-source
6303
6304 * Fri Apr 27 2007 Thomas Backlund <tmb@mandriva.org> 2.6.21-2mdv
6305 - revert read-only -devel rpms until I find a better solution...
6306
6307 * Thu Apr 26 2007 Thomas Backlund <tmb@mandriva.org> 2.6.21-1mdv
6308 - update to kernel.org 2.6.21 final
6309 - drop patch AA00: 2.6.21-rc7-git6, merged upstream
6310 - make devel trees read-only (like in kernel-multimedia series),
6311 to try and work around broken dkms & co
6312 - add /arch/s390/crypto/Kconfig to -devel and -source trees, fixes
6313 MDV bugs #29744, #29074 (reported against kernel-linus, but affects
6314 all post 2.6.20-rc3 series kernels, will be removed if/when fixed upstream
6315
6316 * Wed Apr 25 2007 Thomas Backlund <tmb@mandriva.org> 2.6.21-0.rc7.1mdv
6317 - fix patches tarball -rc versioning
6318 - update to kernel.org 2.6.21-rc7
6319 - add patch AA00: 2.6.21-rc7-git6
6320 - rediff patch AS01: linux-phc support
6321 - drop patch AX02: nmi watchdog timeout fix, merged upstream
6322 - update patch CE02: acpi-dsdt-initrd v0.8.4
6323 - update patch CK00: to SD sceduler v0.46 for 2.6.21 series
6324 - update patches CK01-CK24: Con Kolivas 2.6.21-rc7-ck2 patchset
6325 - rediff patch CR01: badram support
6326 - drop patch DA01: acpi update, merged upstream
6327 - drop patch DB01: bluetooth update, merged upstream
6328 - drop patches DC01-DC05: agpgart 1.0.2, merged upstream
6329 - drop patch DC10: drm update, merged upstream
6330 - drop patch DM10: mmc update, merged upstream
6331 - drop patch DM20: tifm update, merged upstream
6332 - drop patch DN03: bcm43xx speed fix, fixed differently upstream
6333 - add patch DN41: fixes netfilter IFWLOG, PSD, SET builds
6334 - update patch DN50: mac80211 v.7.0.6 (dscape stack)
6335 - drop patch DS01: alsa update, merged upstream
6336 - drop patch DU01: usb-rndis-lite, merged upstream
6337 - rediff patch DV01: fbsplash support
6338 - update patch FS01: unionfs 2.0 to 2.6.21-rc7-u1
6339 - drop patches FS11-FS13: supermount support
6340 - update patch MB30: acerhk 0.5.35
6341 - update patch MB40: acer_acpi 0.4
6342 - update patch MC20: iwlwifi 0.0.13
6343 - add patch MC21: fix iwlwifi includes
6344 - drop patches SA01-SA06: Apparmor v288
6345 - add patches SA01-SA41: Apparmor v564
6346 - update defconfigs
6347
6348 * Mon Apr 23 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.7-5mdv
6349 - update patch CK00: SD scheduler v 0.46
6350
6351 * Sat Apr 21 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.7-4mdv
6352 - update patch CK00: SD scheduler v 0.44
6353
6354 * Thu Apr 19 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.7-3mdv
6355 - update patch CK00: SD scheduler v 0.42 and re-enable it
6356 - disable patches CK01-CK11,CK21,CK30: old Staircase Scheduler,
6357 as SD sceduler is not dead after all...
6358
6359 * Wed Apr 18 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.7-2mdv
6360 - disable patch CK00: SD Scheduler as Con decided to drop the development
6361 - re-enable patches CK01-CK11,CK21,CK30: Staircase scheduler v17,
6362 as Con decided to return it as the base for the -ck sets again
6363 - add patch DU01: update usb-rndis-lite to support wm5 (#30130, #30128)
6364 - update patch MB10: ndiswrapper 1.42
6365 - add patch NB10: add sco-flowcontrol support to bluetooth, needed for
6366 bluetooth-alsa (Requested by Guillaume Bedot)
6367 - update defconfigs
6368
6369 * Sun Apr 15 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.7-1mdv
6370 - update to kernel.org 2.6.20.7:
6371 - http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.20.7
6372 - drop patch AA00: merged upstream
6373 - add patch AI02: add support for picopower Irq router (Requested by Austin)
6374 - update patch CK00: SD scheduler 0.40
6375
6376 * Thu Apr 12 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.6-3mdv
6377 - add patch AA00: 2.6.20.7-rc1
6378 - drop patch AA01-AA06, DA20: merged upstream
6379
6380 * Sun Apr 08 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.6-2mdv
6381 - enable CONFIG_AUDIT and CONFIG_AUDITSYSCALL, used by pam
6382 - add patches from Stefan Richter (kernel.org ieee1394 maintainer)(#20126)
6383 DI10_382b-ieee1394-eth1394-dont-autoload-by-hotplug-when-ohci1394-starts.patch
6384 DI11_392b-ieee1394-nodemgr-less-noise-in-dmesg.patch
6385 - add drivers/md/dm.h to -devel packages, needed for truecrypt build (Danny)
6386 - update patch MB10: ndiswrapper 1.41
6387 - update defconfigs
6388
6389 * Sat Apr 07 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.6-1mdv
6390 - update to kernel.org 2.6.20.6:
6391 - fixes CVE-2007-1357, and other bugfixes:
6392 - http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.20.6
6393 - http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.20.5
6394 - drop patches AA00,AA02,AA03: merged upstream
6395
6396 * Thu Apr 05 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.4-4mdv
6397 - add patches AA00-AA06: 2.6.20.5-rc1 + fixes
6398 - add patch AX02: increase NMI watchdog timeout for Quad Core Opterons
6399 - update patch CK00: Staircase-Deadline scheduler to 0.39
6400 - add patch DA20: fix SB600 sata h/w internal error
6401 - fix unistall scripts (#30048)
6402
6403 * Wed Mar 27 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.4-3mdv
6404 - update patch CK00: Staircase-Deadline scheduler 0.37
6405
6406 * Wed Mar 27 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.4-2mdv
6407 - update patch CK00: Staircase-Deadline scheduler 0.36
6408
6409 * Sat Mar 24 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.4-1mdv
6410 - update to kernel.org: 2.6.20.4
6411 http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.20.4
6412 - update patch CK00: RSDL scheduler 0.33
6413 - rediff patch CK22
6414
6415 * Sun Mar 18 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.3-2mdv
6416 - update patch CK00: RSDL scheduler to 0.31
6417
6418 * Tue Mar 13 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.3-1mdv
6419 - update to kernel.org 2.6.20.3
6420 - drop patches AA01-AA20: merged upstream
6421
6422 * Mon Mar 12 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.2-3mdv
6423 - update patch CK00: RSDL scheduler to 0.30
6424
6425 * Sun Mar 11 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.2-2mdv
6426 - update patch CK00: rsdl scheduler to 0.29
6427 - add patch DN16: nozomi debug and oops at unload fix (from main)
6428 - update patch MB10: ndiswrapper 1.38
6429
6430 * Sat Mar 10 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.2-1mdv
6431 - update to kernel.org 2.6.20.2
6432 fixes: CVE-2007-1000, CVE-2007-0005, other fixes:
6433 http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.20.2
6434 - drop patches AA01-AA06: merged upstream
6435 - add new patches AA01-AA20: 2.6.20.3-rc1
6436 - rewrite spec once more ;-)
6437 use cat & eof instead of echo to create scripts and files on the fly,
6438 makes the spec more readable (suggested by Danny)
6439 merge the rest of scripts
6440 - re-add sparc64 support, and actually make it work this time
6441 - add patch AX01: fix data corruption on-nVidia chipsets and ide/sata
6442 - update patch CK00: update RSDL scheduler to 0.28
6443 - drop patch DC03: merged upstream
6444 - update patch DC10: drm to 2.6.21-rc3
6445 - drop patch DM01: merged upstream
6446 - add patch DM10: update mmc support to 2.6.21-rc3 level
6447 - add patch DM20: update tifm_7xx1 to v 0.7 (AdamW request)
6448 - rediff patch DS01: alsa-1.0.14rc3
6449
6450 * Tue Mar 06 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.1-4mdv
6451 - rename kernel-headers-* packages to more appropriate kernel-devel-*
6452 - have *-devel-latest obsolete *-headers-latest
6453 - drop requires between kernel-*-devel and kernel-*
6454 - install devel files in /usr/src/'uname -r'
6455 - install full source in /usr/src/<version>-tmb-<release>
6456 - create post/postun/preun scripts at build time (removes code duplication)
6457 - update README.urpmi
6458 - configure server kernels to use CFQ i/o sceduler by default too
6459 - update patch CK00: Con Kolivas rotating staircase deadline scheduler
6460 to v. 0.26 and re-enable it, as it's now stable
6461 - disable patches CK01-CK11, CK21, CK30: old Staircase v17 scheduler
6462 - add patch DB01: bluetooth v. 1.2 (#29169)
6463 - add patch DC10: update drm to 2.6.21-rc2-git4
6464 - rollback patch DN50: dscape stack to v1.0.0 for now as the newer ones
6465 breaks the stable kernel.org drivers.
6466 - disable patch DN51: wireless.git update for now as it needs the newer
6467 dscape stack
6468 - rollback patch MC20: iwlwifi to 0.0.8 as the newer code depends on
6469 newer dscape stack
6470
6471 * Mon Feb 26 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.1-3mdv
6472 - add patch AS01: Linux Processor Hardware Control v.0.2.9 (Josh Schneider)
6473 - update patch DN50: dscape wireless stack to 3.0.2
6474 - add patch DN51: wireless.git 20070225: drivers using the dscape stack:
6475 adm8211, bcm43xx, prism54, rt2400, rt2500, rt61, rt73, zd1211
6476 - update patch DS01: alsa 1.0.14rc3 (tvignaud request)
6477 - drop patch FQ01: cpufreq-speedstep-dothan-3 (merged in patch AS01)
6478 - enable CONFIG_CC_OPTIMIZE_FOR_SIZE (tvignaud request)
6479 - update patch MC20: iwlwifi to 0.0.9
6480 - update defconfigs
6481 - post script fixes
6482
6483 * Fri Feb 23 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.1-2mdv
6484 - really fix build and source symlinks for desktop586 series (#28843)
6485 - add patch DN03: fix Broadcom 4311, 4312 detection (#28878)
6486
6487 * Wed Feb 21 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.1-1mdv
6488 - update to kernel.org 2.6.20.1:
6489 - Fix a free-wrong-pointer bug in nfs/acl server (CVE-2007-0772)
6490 - fix header paths in desktop-i586(-smp) rpms (#28843)
6491 - fix missing arch/i386/kernel/sigframe.h in header rpms (#28843)
6492 - update patch MC20: iwlwifi to v 0.0.8
6493
6494 * Sun Feb 18 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20-4mdv
6495 - fix RC versioning
6496 - fix the whole autoconf mess
6497 dont rely on /etc/init.d/kheader and /boot/kernel.h anymore
6498 drop all of the old autoconf hacks
6499 drop kernel-tmb-source-stripped(-latest) rpms
6500 introduce kernel-tmb-$flavour-headers(-latest) rpms to build 3rdparty
6501 drivers against (survives test: make mrproper oldconfig prepare scripts)
6502 kernel-tmb-source rpm does not include any autoconf stuff anymore
6503 add info regarding this to README.urpmi
6504 - add patch AA01: fix-missing-critical-phys_to_virt-in-lib_swiotlb
6505 - add patch AA02: ieee1394-video1394-DMA-fix
6506 - add patch AA03: ieee1394-fix-host-device-registering-when-nodemgr-disabled
6507 - add patch AA04: fix-oops-in-xfrm_audit_log
6508 - add patch AA05: md-raid5-fix-crash
6509 - add patch AA06: md-raid5-fix-export-blk_recount_segments
6510 - update patch CK00: Con Kolivas rotating staircase deadline scheduler 0.17,
6511 but disable it for now, as it's still buggy according to Con.
6512 - update patches CK01-CK23: Con Colivas 2.6.20-ck1 patchset, and
6513 re-enable patches CK01-CK11, CK21: Staircase v17 scheduler, as the
6514 kernel freeze bug has been found and fixed.
6515 - add patch CK30 : add ck_server_tuned config option and server optimization.
6516 - add patch DM01: fix cx25840 firmware loading (Stefan van der Eijk)
6517 - update patch MB10: ndiswrapper to 1.37
6518 - add patch MB31: acerhk include fix
6519 - redo patch MB52: qc-usb include fix
6520 - add patch MB82: rt2500 include fix
6521 - update patch MB20: squashfs 3.2-r2
6522 - drop patch MB21: squashfs build fix, merged upstream
6523
6524 * Sun Feb 11 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20-3mdv
6525 - update patch CK00: rotating staircase deadline scheduler 0.14
6526 - add patches DC01-DC05: agpgart 1.0.2 (request by Colin Guthrie)
6527 - add patch DN50: dscape ieee802.11 wireless network stack
6528 - update patch MB50: qc-usb to 0.6.5
6529 - drop patch MB52: qc-usb include fix (merged upstream)
6530 - add patches MC20: Intel opensource 3945 wireless driver 0.0.5
6531 - info and firmware at http://intellinuxwireless.org/
6532 - update defconfigs
6533
6534 * Tue Feb 6 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20-2mdv
6535 - update patches CK01-CK23: Con Kolivas patchset 2.6.20-rc6-ck1
6536 - disable patches CK01-CK11, CK21: old staircase scheduler
6537 - add patch CK00: Con Kolivas new rotating staircase deadline cpu scheduler 0.11
6538 - update pach FS01: unionfs to v 2.0
6539 - drop patches FS02, FS03: unionfs buildfixes (not needed anymore)
6540 - rediff patch FS11,FS13: supermount
6541
6542 * Mon Feb 5 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20-1mdv
6543 - update to kernel.org 2.6.20 final
6544 - drop patch AA01: merged upstream
6545
6546 * Sun Feb 4 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.0.rc7-3mdv
6547 - update patch AA01: to 2.6.20-rc7-git4
6548
6549 * Fri Feb 2 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.0.rc7-2mdv
6550 - add patch AA01: 2.6.20-rc7-git1
6551 - add patch DA01: acpi 20070126
6552 - update patch DN15: nozomi driver from GregKH / 2.6.20-rc6-mm3
6553 - update defconfigs
6554
6555 * Thu Feb 1 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.0.rc7-1mdv
6556 - update to kernel.org: 2.6.20-rc7
6557 - drop patch CP02: P4 clockmon N60 errata fix (not needed anymore)
6558 - rediff patch DS01: alsa 1.0.14rc2
6559 - merge patches from main kernel:
6560 - add patch MB70-MB71: RaLink RT2400 series wireless chipset support
6561 - add patch MB80-MB81: RaLink RT2500 series wireless chipset support
6562 - add patch MB90: RaLink RT2570 series USB Wireless chipset support
6563 - add patches MC00-MC02: RaLink RT2561 & RT2661 PCI Wireless chipset support
6564 - add patches MC10-MC12: RaLink RT2571 & RT2671 series USB Wireless chipset
6565 - update defconfigs
6566
6567 * Sat Jan 27 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.0.rc6-2mdv
6568 - add patch MB60: ipw3945 v 1.2.0
6569 - fix missing / in post scripts (reported by Dick Gevers)
6570 - update defconfigs
6571
6572 * Thu Jan 25 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.0.rc6-1mdv
6573 - update to kernel.org: 2.6.20-rc6
6574 - drop patch AA01: profile_hits export (merged upstream)
6575 - rediff patch DS01: alsa 1.0.14rc2
6576 - update defconfigs
6577
6578 * Thu Jan 25 2007 Thomas Backlund <tmb@mandriva.org> 2.6.20.0.rc5-1mdv
6579 - update to kernel.org: 2.6.20-rc5
6580 - add patch AA01: fix export of profile_hits, needed for KVM on UP
6581 - update patches CK01-CK26 to CK01-CK22: Con Kolivas 2.6.20-rc5-ck1
6582 - rediff patch CE02: acpi dsdt initrd support
6583 - rediff patch CR01: BadRAM support
6584 - rediff patch DA02: fix acpi double proc video entry
6585 - rediff patch DM02: dmraid45 support
6586 - add patch DM03: fix dmraid4-5 build for 2.6.20
6587 - drop patch DN10: ipw2200 v1.2.0 (merged upstream)
6588 - add patch DN37: netfilter IFWLOG buildfix for 2.6.20
6589 - add patch DS01: alsa 1.0.14rc2
6590 - drop patch DS03: asus w6a quirk (merged upstream)
6591 - rediff DV01: fbsplash support for 2.6.20
6592 - update patch FS01: unionfs support to 1.5pre-cvs200701171418
6593 - add patch FS02: unionfs build fix for 2.6.20
6594 - drop patch FS10: inode oops fix (not needed anymore)
6595 - rediff patch FS11: supermount 2.0.4 support
6596 - rediff patch FS13: supermount 2.0.5 update
6597 - update patch MB10: ndiswrapper to 1.35-rc1
6598 - add patch MB21: squashfs build fix for 2.6.20
6599 - update patches SA01-SA04: AppArmor v288
6600 - add patch SA06: apparmor buildfix for 2.6.20
6601 - update defconfigs
6602 - disable dmraid4-5 support for now as it's broken...
6603
6604 * Sun Jan 21 2007 Thomas Backlund <tmb@mandriva.org> 2.6.19.2-3mdv
6605 - update README.urpmi regarding modular ide and other partitions
6606 - update patch CR01: BadRAM to 2.6.19.1 level (David Walser)
6607 - drop patch DB16: gzloop, not used anymore (Oliver Blin)
6608 - fix "static" symlinks in /boot when it's on sepatate partition
6609 - remove "static" symlinks if last kernel-tmb is uninstalled
6610
6611 * Sat Jan 13 2007 Thomas Backlund <tmb@mandriva.org> 2.6.19.2-2mdv
6612 - update patch MB20: squashfs to v3.2
6613 - drop patch MB21: not needed anymore
6614 - update patch FS01: unionfs to 1.5pre-cvs200701042308, and enable it
6615
6616 * Wed Jan 10 2007 Thomas Backlund <tmb@mandriva.org> 2.6.19.2-1mdv
6617 - update to kernel.org 2.6.19.2:
6618 - bonding: incorrect bonding state reported via ioctl
6619 - dvb-core: fix bug in CRC-32 checking on 64-bit systems
6620 - x86-64: Mark rdtsc as sync only for netburst, not for core2
6621 - Fix for shmem_truncate_range() BUG_ON()
6622 - ebtables: don't compute gap before checking struct type
6623 - asix: Fix typo for AX88772 PHY Selection
6624 - IPV4/IPV6: Fix inet{,6} device initialization order
6625 - UDP: Fix reversed logic in udp_get_port()
6626 - SPARC64: Fix "mem=xxx" handling
6627 - SPARC64: Handle ISA devices with no 'regs' property
6628 - SOUND: Sparc CS4231: Use 64 for period_bytes_min
6629 - NET: Don't export linux/random.h outside __KERNEL__
6630 - ramfs breaks without CONFIG_BLOCK
6631 - i2c: fix broken ds1337 initialization
6632 - fix aoe without scatter-gather [Bug 7662]
6633 - handle ext3 directory corruption better (CVE-2006-6053)
6634 - ext2: skip pages past number of blocks in ext2_find_entry (CVE-2006-6054)
6635 - connector: some fixes for ia64 unaligned access errors
6636 - SOUND: Sparc CS4231: Fix IRQ return value and initialization
6637 - V4L: Fix broken TUNER_LG_NTSC_TAPE radio support
6638 - V4L: cx2341x: audio_properties is an u16, not u8
6639 - dm-crypt: Select CRYPTO_CBC
6640 - sha512: Fix sha384 block size
6641 - read_zero_pagealigned() locking fix
6642 - fix OOM killing of swapoff
6643 - sched: fix bad missed wakeups in the i386, x86_64, ia64, ACPI and APM idle code
6644 - sparc32: add offset in pci_map_sg()
6645 - V4L: cx88: Fix leadtek_eeprom tagging
6646 - Revert "zd1211rw: Removed unneeded packed attributes
6647 - VM: Fix nasty and subtle race in shared mmap'ed page writeback
6648 - Fix incorrect user space access locking in mincore() (CVE-2006-4814)
6649 - Bluetooth: Add packet size checks for CAPI messages (CVE-2006-6106)
6650 - DVB: lgdt330x: fix signal / lock status detection bug
6651 - cciss: fix XFER_READ/XFER_WRITE in do_cciss_request
6652 - NetLabel: correctly fill in unused CIPSOv4 level and category mappings
6653 - Fix up page_mkclean_one(): virtual caches, s390
6654 - corrupted cramfs filesystems cause kernel oops (CVE-2006-5823)
6655 - PKTGEN: Fix module load/unload races
6656 - IB/srp: Fix FMR mapping for 32-bit kernels and addresses above 4G
6657 - kbuild: don't put temp files in source
6658 - ARM: Add sys_*at syscalls
6659 - Buglet in vmscan.c
6660 - i386: CPU hotplug broken with 2GB VMSPLIT
6661 - ieee1394: ohci1394: add PPC_PMAC platform code to driver probe
6662 - libata: handle 0xff status properly
6663 - SCSI: add missing cdb clearing in scsi_execute()
6664 - sched: remove __cpuinitdata anotation to cpu_isolated_ma
6665 - ieee80211softmac: Fix mutex_lock at exit of ieee80211_softmac_get_genie
6666 - softmac: Fixed handling of deassociation from AP
6667 - zd1211rw: Call ieee80211_rx in tasklet
6668 - smc911x: fix netpoll compilation faliure
6669 - drop patch AA02: merged upstream
6670 - drop patch FS20: merged upstream
6671 - remove support for sparc (32 bit)
6672 - add info to README.urpmi regarding modular ide and PATA CD/DVD
6673
6674 * Sun Dec 31 2006 Thomas Backlund <tmb@mandriva.org> 2.6.19.1-4mdv
6675 - drop patch FS13: old supermount fix
6676 - add patch FS13: update supermount to 2.0.5 (Andrey Borzenkov) (#27665)
6677 - add patch FS20: really fix file content corruption (#27693, #27859)
6678
6679 * Thu Dec 21 2006 Thomas Backlund <tmb@mandriva.org> 2.6.19.1-3mdv
6680 - add support for static boot entries using symlinks in /boot
6681 - drop patch FS20: content corruption fix, does not fix the problem
6682
6683 * Tue Dec 17 2006 Thomas Backlund <tmb@mandriva.org> 2.6.19.1-2mdv
6684 - add patch MB21: fix squashfs build and re-enable it
6685 - update patch FS13: supermount buildfix
6686 - disable supermount as it still oopses
6687 - enable ecryptfs
6688 - add patch FS20: try to fix file content corruption (from LKML) (#27693)
6689 - really disable supermount
6690
6691 * Tue Dec 12 2006 Thomas Backlund <tmb@mandriva.org> 2.6.19.1-1mdv
6692 - update to kernel.org 2.6.19.1:
6693 - NETLINK: Put {IFA,IFLA}_{RTA,PAYLOAD} macros back for userspace
6694 - forcedeth: Disable INTx when enabling MSI in forcedeth
6695 - x86: Fix boot hang due to nmi watchdog init code
6696 - m32r: make userspace headers platform-independent
6697 - softirq: remove BUG_ONs which can incorrectly trigger
6698 - autofs: fix error code path in autofs_fill_sb()
6699 - PM: Fix swsusp debug mode testproc
6700 - compat: skip data conversion in compat_sys_mount when data_page is NULL
6701 - drm-sis linkage fix
6702 - add bottom_half.h
6703 - NETLINK: Restore API compatibility of address and neighbour bits
6704 - IrDA: Incorrect TTP header reservation
6705 - IPSEC: Fix inetpeer leak in ipv4 xfrm dst entries
6706 - USB: Fix oops in PhidgetServo
6707 - XFRM: Use output device disable_xfrm for forwarded packets
6708 - TOKENRING: Remote memory corruptor in ibmtr.c
6709 - do_coredump() and not stopping rewrite attacks? (CVE-2006-6304)
6710 - IB/ucm: Fix deadlock in cleanup
6711 - softmac: fix unbalanced mutex_lock/unlock in ieee80211softmac_wx_set_mlme
6712 - NETFILTER: bridge netfilter: deal with martians correctly
6713 - NETFILTER: Fix iptables compat hook validation
6714 - NETFILTER: Fix {ip, ip6, arp}_tables hook validation
6715 - SUNHME: Fix for sunhme failures on x86
6716 - PKT_SCHED act_gact: division by zero
6717 - Revert "ACPI: SCI interrupt source override"
6718 - cryptoloop: Select CRYPTO_CBC
6719 - NET_SCHED: policer: restore compatibility with old iproute binaries
6720 - EBTABLES: Prevent wraparounds in checks for entry components' sizes
6721 - EBTABLES: Deal with the worst-case behaviour in loop checks
6722 - EBTABLES: Verify that ebt_entries have zero ->distinguisher
6723 - EBTABLES: Fix wraparounds in ebt_entries verification
6724 - softmac: remove netif_tx_disable when scanning
6725 - IPV6 NDISC: Calculate packet length correctly for allocation
6726 - drop patches AA01,AA03: merged upstream
6727 - add patch FS13: fix supermount build on 2.6.19
6728
6729 * Sun Dec 10 2006 Thomas Backlund <tmb@mandriva.org> 2.6.19-4mdv
6730 - bump release to get it past the buildsystem
6731
6732 * Sat Dec 9 2006 Thomas Backlund <tmb@mandriva.org> 2.6.19-3mdv
6733 - fix include/linux/config.h install point
6734 - fix mismerged patch DM02: dm-raid45 support
6735
6736 * Sat Dec 9 2006 Thomas Backlund <tmb@mandriva.org> 2.6.19-2mdv
6737 - readd include/linux/config.h until the autoconf stuff is reworked
6738 - update patch MB10: ndiswrapper to 1.31
6739 - drop patch 100: merged in upcoming 2.6.19.1
6740 - add patch AA01: 2.6.19.1-rc2
6741 - add patch AA02: DM_CRYPT needs CRYPTO_CBC
6742 - add patch AA03: add missing bottom_half.h from 2.6.19.1-rc2
6743 - update patches CK01-CK26: Con Colivas 2.6.19-ck2
6744
6745 * Wed Dec 6 2006 Thomas Backlund <tmb@mandriva.org> 2.6.19-1mdv
6746 - update to kernel.org 2.6.19
6747 - update patches CK01-CK25: Con Colivas CK1 patchset
6748 - drop patch AX01_fix-x86_64-linking-on-32bit (merged upstream)
6749 - drop patch DC01_add_via_drm_pciid (merged upstream)
6750 - drop patch DF01_generic_acl_structure (merged upstream)
6751 - drop patch DF02_add_acl_to_tmpfs (merged upstream)
6752 - drop patch DI08_libata_enable (merged upstream)
6753 - disable patch DM01: enable_broken_dmstripe (shouldn't be needed anymore)
6754 - rediff patch DM02: dm-raid45 support
6755 - drop patch DN06: e100 v 3.5.14 (newer version upstream)
6756 - rediff patch DN10: ipw2200 v 1.2.0
6757 - add patch: DN35_ipset_needs_listhelp until ipser is reworked for 2.6.19
6758 - drop patch DP03_ICH7-8_quirks (merged upstream)
6759 - disable patch DS02_alsa_hda-intel-error-handling (may not be needed anymore)
6760 - rediff patch DV01: fbsplash-0.9.2-r5
6761 - drop patch DV25_intel_agp_965 (merged upstream)
6762 - drop patch DV26_i965_drm_support (merged upstream)
6763 - rediff patch FS01: unionfs 1.4.0
6764 - rediff patch MB02: 3rdparty merge
6765 - add patch: MB53_qc-usb-includes2: fixes build
6766 - add patch: SA05_fix_apparmor_inline_build: fixes build
6767 - update defconfigs for 2.6.19 series
6768 - add patch100: revert ACPI_SCI_interrupt_source_override, will be removed
6769 when 2.6.19.1 is released...
6770
6771 * Sat Dec 2 2006 Thomas Backlund <tmb@mandriva.org> 2.6.18.5-1mdv
6772 - update to kernel.org 2.6.18.5:
6773 - pcmcia: fix 'rmmod pcmcia' with unbound devices
6774 - BLUETOOTH: Fix unaligned access in hci_send_to_sock
6775 - alpha: Fix ALPHA_EV56 dependencies typo
6776 - TG3: Add missing unlock in tg3_open() error path
6777 - softmac: fix a slab corruption in WEP restricted key association
6778 - AGP: Allocate AGP pages with GFP_DMA32 by default
6779 - V4L: Do not enable VIDEO_V4L2 unconditionally
6780 - bcm43xx: Drain TX status before starting IRQs
6781 - fuse: fix Oops in lookup
6782 - UDP: Make udp_encap_rcv use pskb_may_pull
6783 - NETFILTER: Missing check for CAP_NET_ADMIN in iptables compat layer
6784 - NETFILTER: ip_tables: compat error way cleanup
6785 - NETFILTER: ip_tables: fix module refcount leaks in compat error paths
6786 - NETFILTER: Missed and reordered checks in {arp,ip,ip6}_tables
6787 - NETFILTER: arp_tables: missing unregistration on module unload
6788 - NETFILTER: Honour source routing for LVS-NAT
6789 - NETFILTER: Kconfig: fix xt_physdev dependencies
6790 - NETFILTER: xt_CONNSECMARK: fix Kconfig dependencies
6791 - NETFILTER: H.323 conntrack: fix crash with CONFIG_IP_NF_CT_ACCT
6792 - IA64: bte_unaligned_copy() transfers one extra cache line
6793 - x86 microcode: don't check the size
6794 - scsi: clear garbage after CDBs on SG_IO
6795 - IPV6: Fix address/interface handling in UDP and DCCP, according to the scoping architecture
6796
6797 * Fri Dec 1 2006 Thomas Backlund <tmb@mandriva.org> 2.6.18.4-1mdv
6798 - update to kernel.org 2.6.18.4:
6799 - bridge: fix possible overflow in get_fdb_entries (CVE-2006-5751)
6800
6801 * Tue Nov 21 2006 Thomas Backlund <tmb@mandriva.org> 2.6.18.3-2mdv2007.1
6802 - redo patch DN10: update ipw2200 to 1.2.0
6803 - re-enable ipw2200 in defconfigs
6804
6805 * Sun Nov 19 2006 Thomas Backlund <tmb@mandriva.org> 2.6.18.3-1mdv2007.1
6806 - update to 2.6.18.3
6807 - CIFS: New POSIX locking code not setting rc properly to zero on successful
6808 - CIFS: report rename failure when target file is locked by Windows
6809 - cciss: fix iostat
6810 - cpqarray: fix iostat
6811 - Char: isicom, fix close bug
6812 - block: Fix bad data direction in SG_IO
6813 - pci: don't try to remove sysfs files before they are setup
6814 - Patch for nvidia divide by zero error for 7600 pci-express card
6815 - CPUFREQ: Make acpi-cpufreq unsticky again
6816 - security/seclvl.c: fix time wrap (CVE-2005-4352)
6817 - fix via586 irq routing for pirq 5
6818 - NET: Set truesize in pskb_copy
6819 - TCP: Don't use highmem in tcp hash size calculation
6820 - correct keymapping on Powerbook built-in USB ISO keyboards
6821 - x86_64: Fix FPU corruption
6822 - Input: psmouse - fix attribute access on 64-bit systems
6823 - NET: __alloc_pages() failures reported due to fragmentation
6824 - e1000: Fix regression: garbled stats and irq allocation during swsusp
6825 - usbtouchscreen: use endpoint address from endpoint descriptor
6826 - USB: failure in usblp's error path
6827 - init_reap_node() initialization fix
6828 - ipmi_si_intf.c sets bad class_mask with PCI_DEVICE_CLASS
6829 - fix UFS superblock alignment issues
6830 - SPARC: Fix missed bump of NR_SYSCALLS
6831 - Fix sys_move_pages when a NULL node list is passed
6832 - SPARC64: Fix futex_atomic_cmpxchg_inatomic implementation
6833 - POWERPC: Make alignment exception always check exception table
6834 - S390: user readable uninitialised kernel memory, take 2
6835 - add patch DB16: add support for gzloop
6836
6837 * Wed Nov 15 2006 Thomas Backlund <tmb@mandriva.org> 2.6.18.2-3mdv2007.1
6838 - add patches SA01-SA04: Novell AppArmor v154
6839 - update defconfigs to enable Security Capabilities and AppArmor
6840
6841 * Mon Nov 13 2006 Thomas Backlund <tmb@mandriva.org> 2.6.18.2-2mdv2007.1
6842 - bump release
6843 - disable nozomi build
6844
6845 * Mon Nov 6 2006 Thomas Backlund <tmb@mandriva.org> 2.6.18.2-1mdv2007.0
6846 - update to kernel.org 2.6.18.2
6847 - usbfs: private mutex for open, release, and remove
6848 - md: check bio address after mapping through partitions
6849 - IPV6: fix lockup via /proc/net/ip6_flowlabel [CVE-2006-5619]
6850 - tcp: cubic scaling error
6851 - JMB 368 PATA detection
6852 - fill_tgid: fix task_struct leak and possible oops
6853 - Use min of two prio settings in calculating distress for reclaim
6854 - vmscan: Fix temp_priority race
6855 - NFS: nfs_lookup - don't hash dentry when optimising away the lookup
6856 - Reintroduce NODES_SPAN_OTHER_NODES for powerpc
6857 - PCI: Remove quirk_via_abnormal_poweroff
6858 - SPARC64: Fix PCI memory space root resource on Hummingbird
6859 - ISDN: fix drivers, by handling errors thrown by ->readstat()
6860 - ISDN: check for userspace copy faults
6861 - rtc-max6902: month conversion fix
6862 - posix-cpu-timers: prevent signal delivery starvation
6863 - fix Intel RNG detection
6864 - Watchdog: sc1200wdt - fix missing pnp_unregister_driver()
6865 - ALSA: snd_rtctimer: handle RTC interrupts with a tasklet
6866 - uml: remove warnings added by previous -stable patch
6867 - uml: make Uml compile on FC6 kernel headers
6868 - x86-64: Fix C3 timer test
6869 - SCTP: Always linearise packet on input
6870 - NET: Fix skb_segment() handling of fully linear SKBs
6871 - fix missing ifdefs in syscall classes hookup for generic targets
6872 - SCSI: aic7xxx: pause sequencer before touching SBLKCTL
6873 - sky2: 88E803X transmit lockup (2.6.18)
6874 - Fix potential interrupts during alternative patching
6875 - fuse: fix hang on SMP
6876 - IB/mthca: Use mmiowb after doorbell ring
6877 - IPoIB: Rejoin all multicast groups after a port event
6878 - SCSI: aic7xxx: avoid checking SBLKCTL register for certain cards
6879 - knfsd: Fix race that can disable NFS server
6880 - md: Fix calculation of ->degraded for multipath and raid10
6881 - md: Fix bug where spares don't always get rebuilt properly when they become live
6882 - ALSA: Fix re-use of va_list
6883 - DVB: fix dvb_pll_attach for mt352/zl10353 in cx88-dvb, and nxt200x
6884 - bcm43xx: fix watchdog timeouts
6885 - SPARC64: Fix memory corruption in pci_4u_free_consistent()
6886 - SPARC64: Fix central/FHC bus handling on Ex000 systems
6887 - JFS: pageno needs to be long
6888 - Bluetooth: Check if DLC is still attached to the TTY
6889 - SERIAL: Fix oops when removing suspended serial port
6890 - SERIAL: Fix resume handling bug
6891 - Fix uninitialised spinlock in via-pmu-backlight code
6892 - SCSI: DAC960: PCI id table fixup
6893 - uml: fix processor selection to exclude unsupported processors and features
6894 - sky2: GMAC pause frame
6895 - sky2: accept multicast pause frames
6896 - ALSA: Repair snd-usb-usx2y for usb 2.6.18
6897 - ALSA: Fix bug in snd-usb-usx2y's usX2Y_pcms_lock_check()
6898 - ALSA: Dereference after free in snd_hwdep_release()
6899 - sound/pci/au88x0/au88x0.c: ioremap balanced with iounmap
6900 - ALSA: powermac - Fix Oops when conflicting with aoa driver
6901 - ALSA: emu10k1: Fix outl() in snd_emu10k1_resume_regs()
6902 - sky2: turn off PHY IRQ on shutdown
6903 - sky2: pause parameter adjustment
6904 - sky2: MSI test race and message
6905 - mm: fix a race condition under SMC + COW
6906 - __div64_32 for 31 bit
6907 - splice: fix pipe_to_file() ->prepare_write() error path
6908 - Fix sfuzz hanging on 2.6.18
6909 - replace patch CK01 with CK01-CK24: Con Colivas patchset with the
6910 broken-out versions to make it easier to disable some parts
6911 - disable patch CK18: mm-prio_dependant_scan-1 as it conflicts with the
6912 chnges in the stable .2
6913 - rediff patches CK14, CK15, CK23
6914 - update patch FS01: unionfs to 1.4
6915
6916 * Mon Oct 23 2006 Thomas Backlund <tmb@mandriva.org> 2.6.18.1-1mdv2007.0
6917 - update to kernel.org 2.6.18.1
6918 - add utsrelease.h to the dontdiff file
6919 - V4L: copy-paste bug in videodev.c
6920 - block layer: elv_iosched_show should get elv_list_lock
6921 - NETFILTER: NAT: fix NOTRACK checksum handling
6922 - bcm43xx: fix regressions in 2.6.18
6923 - x86-64: Calgary IOMMU: Fix off by one when calculating register space location
6924 - ide-generic: jmicron fix
6925 - scx200_hrt: fix precedence bug manifesting as 27x clock in 1 MHz mode
6926 - invalidate_inode_pages2(): ignore page refcounts
6927 - rtc driver rtc-pcf8563 century bit inversed
6928 - fbdev: correct buffer size limit in fbmem_read_proc()
6929 - mm: bug in set_page_dirty_buffers
6930 - TCP: Fix and simplify microsecond rtt sampling
6931 - MD: Fix problem where hot-added drives are not resynced
6932 - IPV6: Disable SG for GSO unless we have checksum
6933 - PKT_SCHED: cls_basic: Use unsigned int when generating handle
6934 - sata_mv: fix oops
6935 - SPARC64: Fix sparc64 ramdisk handling
6936 - IPV6: bh_lock_sock_nested on tcp_v6_rcv
6937 - CPUFREQ: Fix some more CPU hotplug locking
6938 - SPARC64: Fix serious bug in sched_clock() on sparc64
6939 - Fix VIDIOC_ENUMSTD bug
6940 - load_module: no BUG if module_subsys uninitialized
6941 - i386: fix flat mode numa on a real numa system
6942 - cpu to node relationship fixup: map cpu to node
6943 - cpu to node relationship fixup: acpi_map_cpu2node
6944 - backlight: fix oops in __mutex_lock_slowpath during head /sys/class/graphics/fb0/*
6945 - do not free non slab allocated per_cpu_pageset
6946 - rtc: lockdep fix/workaround
6947 - i386 bootioremap / kexec fix
6948 - powerpc: Fix ohare IDE irq workaround on old powermac
6949 - sysfs: remove duplicated dput in sysfs_update_file
6950 - powerpc: fix building gdb against asm/ptrace.h
6951 - Remove offsetof() from user-visible <linux/stddef.h>
6952 - Clean up exported headers on CRIS
6953 - Fix v850 exported headers
6954 - Don't advertise (or allow) headers_{install,check} where inappropriate
6955 - Remove UML header export
6956 - Remove ARM26 header export
6957 - Fix H8300 exported headers
6958 - Fix m68knommu exported headers
6959 - Fix exported headers for SPARC, SPARC64
6960 - Fix 'make headers_check' on m32r
6961 - Fix 'make headers_check' on sh64
6962 - Fix 'make headers_check' on sh
6963 - Fix ARM 'make headers_check'
6964 - One line per header in Kbuild files to reduce conflicts
6965 - sky2 network driver device ids
6966 - sky2: tx pause bug fix
6967 - netdrvr: lp486e: fix typo
6968 - mv643xx_eth: fix obvious typo, which caused build breakage
6969 - zone_reclaim: dynamic slab reclaim
6970 - Fix longstanding load balancing bug in the scheduler
6971 - jbd: fix commit of ordered data buffers
6972 - ALSA: Fix initiailization of user-space controls
6973 - USB: Allow compile in g_ether, fix typo
6974 - IB/mthca: Fix lid used for sending traps
6975 - S390: user readable uninitialised kernel memory (CVE-2006-5174)
6976 - zd1211rw: ZD1211B ASIC/FWT, not jointly decoder
6977 - V4L: pvrusb2: Limit hor res for 24xxx devices
6978 - V4L: pvrusb2: Suppress compiler warning
6979 - V4L: pvrusb2: improve 24XXX config option descriptio
6980 - V4L: pvrusb2: Solve mutex deadlock
6981 - DVB: cx24123: fix PLL divisor setup
6982 - V4L: Fix msp343xG handling regression
6983 - UML: Fix UML build failure
6984 - uml: use DEFCONFIG_LIST to avoid reading host's config
6985 - uml: allow using again x86/x86_64 crypto code
6986 - NET_SCHED: Fix fallout from dev->qdisc RCU change
6987 - enable and update patch DM02: dm-raid45 support to 2.6.18.1-20061023
6988 - rediff patch CK01
6989
6990 * Wed Oct 18 2006 Thomas Backlund <tmb@mandriva.org> 2.6.18-1mdv2007.0
6991 - update to kernel.org 2.6.18
6992 - see http://www.kernel.org/pub/linux/kernel/v2.6/ChangeLog-2.6.18
6993 - update patch CK01: to 2.6.18-ck1
6994 - drop patch CK02: ck1 fix, merged upstream
6995 - rediff patch CR01: badram support
6996 - drop patches DA01,DA02: acpi patches, merged upstream
6997 - drop patch DA03: asus_acpi update, merged upstream
6998 - rediff patch DA04: acpi double proc fix
6999 - drop patch DI03: nforce ide/sata update, merged upstream
7000 - drop patch DI10: ata_piix probe fix, merged upstream
7001 - rediff patch DM01: broken dmstripe fix
7002 - disable patch DM02: dm-raid45 until upstream supports 2.6.18
7003 - rediff patch DN02: add 47xx to b44
7004 - drop patch DN03: ipt_register_table correct return, merged upstream
7005 - drop patch DN05: e1000 update, merged upstream
7006 - rediff patch DN06: e100 update
7007 - drop patch DN07: forcedeth, merged upstream
7008 - drop patch DN08: sundance update, merged upstream
7009 - update patch DN10: ipw2200 to v. 1.2.0
7010 - drop patch DN11: ipw2200 1.1.3 wpa fix, merged upstream
7011 - drop patch DN35: sip conntrack support, merged upstream
7012 - drop patches DN50-DN55: old r8169 update
7013 - drop patch DP01: via pci_quirk, should be fixed upstream
7014 - drop patch DS01,DS04: update to alsa-1.0.12, merged upstream
7015 - drop patch DU02: ftdi_sio testo support, merged upstream
7016 - update patch DV01: fbsplash for 2.6.18
7017 - drop patch DV10: v4l dvb update, merged upstream
7018 - drop patch DV13: quickcam compilation fix, merged upstream
7019 - update defconfigs
7020 - use autoconf hacks from kernel-linus for now
7021
7022 * Sun Oct 15 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.14-1mdv2007.0
7023 - update to kernel.org 2.6.17.14
7024 - Input: logips2pp - fix button mapping for MX300
7025 - ahci: do not fail softreset if PHY reports no device
7026 - MMC: Always use a sector size of 512 bytes
7027 - Add PIIX4 APCI quirk for the 440MX chipset too
7028 - xirc2ps_cs: Cannot reset card in atomic context
7029 - PKT_SCHED: cls_basic: Use unsigned int when generating handle
7030 - Fix sparc64 ramdisk handling
7031 - Fix serious bug in sched_clock() on sparc64
7032 - DVB: cx24123: fix PLL divisor setup
7033 - V4L: Fix msp343xG handling regression
7034 - sysfs: remove duplicated dput in sysfs_update_file
7035 - ext3 sequential read regression fix
7036 - Backport: Old IDE, fix SATA detection for cabling
7037 - NFS: More page cache revalidation fixups
7038 - LOCKD: Fix a deadlock in nlm_traverse_files()
7039 - SUNRPC: avoid choosing an IPMI port for RPC traffic
7040 - NFS: Fix a potential deadlock in nfs_release_page
7041 - dvb-core: Proper handling ULE SNDU length of 0 (CVE-2006-4623)
7042 - add support for sparc builds
7043 - sync config from kernel-2.6-linus
7044 - build desktop(-smp) and server(-smp)
7045 - kernel is sparc64 (pkarlsen)
7046 - update patch DV10: v4l dvb to 2.6.18.1 level
7047 - drop patch DV13: merged in DV10
7048
7049 * Thu Sep 14 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.13-4mdv2007.0
7050 - and hopefully the last rebuild needed after the mirror cleaning...
7051 - stop gpg signing the rpms built on cluster, incase that is what
7052 is confusing the uploads...
7053 - gpg sign the patches tarball
7054
7055 * Wed Sep 13 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.13-3mdv2007.0
7056 - youri.devel screwed up the mirrors even more as it didn't build x86_64
7057 contrary to what was said, so as a last resort, try youri.queue from
7058 seggie as a last resort...
7059
7060 * Wed Sep 13 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.13-2mdv2007.0
7061 - a simple rebuild to see if youri.devel can get the tmb kernels
7062 on the mirrors...
7063
7064 * Sun Sep 10 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.13-1mdv2007.0
7065 - update Source4: README.kernel-tmb-sources
7066 - updates from *mm* kernel:
7067 - update patch DA04: new revision of acpi double proc entry
7068 - update to kernel.org 2.6.17.13
7069 - lib: add idr_replace
7070 - pci_ids.h: add some VIA IDE identifiers
7071 - update to kernel.org 2.6.17.12
7072 - sky2: version 1.6.1
7073 - sky2: fix fiber support
7074 - sky2: MSI test timing
7075 - sky2: use dev_alloc_skb for receive buffers
7076 - sky2: clear status IRQ after empty
7077 - sky2: accept flow control
7078 - dm: Fix deadlock under high i/o load in raid1 setup
7079 - dm: mirror sector offset fix
7080 - dm: fix block device initialisation
7081 - dm: add module ref counting
7082 - dm: fix mapped device ref counting
7083 - dm: add DMF_FREEING
7084 - dm: change minor_lock to spinlock
7085 - dm: move idr_pre_get
7086 - dm: fix idr minor allocation
7087 - dm snapshot: unify chunk_size
7088 - Remove redundant up() in stop_machine()
7089 - Missing PCI id update for VIA IDE
7090 - PKTGEN: Fix oops when used with balance-tlb bonding
7091 - PKTGEN: Make sure skb->{nh,h} are initialized in fill_packet_ipv6() too
7092 - Silent data corruption caused by XPC
7093 - uhci-hcd: fix list access bug
7094 - binfmt_elf: fix checks for bad address
7095 - bug in futex unqueue_me
7096 - fcntl(F_SETSIG) fix
7097 - IPV6: Fix kernel OOPs when setting sticky socket options
7098 - SCTP: Fix sctp_primitive_ABORT() call in sctp_close()
7099 - SPARC64: Fix X server hangs due to large pages
7100 - TG3: Disable TSO by default on some chips due to hardware errata
7101 - Have ext2 reject file handles with bad inode numbers early
7102 - Allow per-route window scale limiting
7103 - bridge-netfilter: don't overwrite memory outside of sk
7104 - fix compilation error on IA64
7105 - INET: Use pskb_trim_unique when trimming paged unique skbs
7106 - spectrum_cs: Fix firmware uploading errors
7107 - TEXTSEARCH: Fix Boyer Moore initialization bug
7108 - drop patch DN60: merged upstream
7109
7110 * Wed Sep 6 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.11-3mdv2007.0
7111 - mostly a rebuild to try and get the kernels on the mirrors...
7112 - dont build laptop kernels by default
7113 - update patch DN33: netfilter_IFWLOG from *main*
7114
7115 * Fri Sep 1 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.11-2mdv2007.0
7116 - update patch DA04: updated acpi-double-proc-entries (from *mm*)
7117 - update patch DN04: updated b44/b47 fix (from *main* kernel)
7118 - update patch MB20: squashfs to 3.1-r2
7119 - add patch AI01: Toshiba Equium A60 needs pci-assign-busses (MDV #18989)
7120 - re-enable X86_GENERIC optimizations again as the mdv cluster is fixed
7121
7122 * Thu Aug 24 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.11-1mdv2007.0
7123 - update to kernel.org 2.6.17.11:
7124 * 1394: fix for recently added firewire patch that breaks things on ppc
7125 * MD: Fix a potential NULL dereference in md/raid1
7126 * swsusp: Fix swap_type_of
7127 * dm: BUG/OOPS fix
7128 * [IPV4]: severe locking bug in fib_semantics.c
7129 * IA64: local DoS with corrupted ELFs
7130 * ip_tables: fix table locking in ipt_do_table
7131 * PCI: fix ICH6 quirks
7132 * SERIAL: icom: select FW_LOADER
7133 * sys_getppid oopses on debug kernel
7134 * [NETFILTER]: ulog: fix panic on SMP kernels
7135 * tpm: interrupt clear fix
7136 * ipx: header length validation needed
7137 * disable debugging version of write_lock()
7138 * Fix BeFS slab corruption
7139 * [RTNETLINK]: Fix IFLA_ADDRESS handling
7140 * [NET]: add_timer -> mod_timer() in dst_run_gc()
7141 * [IPV4]: Limit rt cache size properly
7142 * sky2: phy power problem on 88e805x
7143 * Have ext3 reject file handles with bad inode numbers early
7144 - update to kernel.org 2.6.17.10:
7145 * elv_unregister: fix possible crash on module unload
7146 * Fix possible UDF deadlock and memory corruption (CVE-2006-4145)
7147 * Fix sctp privilege elevation (CVE-2006-3745)
7148 - drop patch DP02: merged upstream
7149 - add code to binary rpms post scripts so we dont have to depend on
7150 libdrakx getting the source and build symlinks correct when binarys
7151 gets installed after source (MDV #24578)
7152 - add patch AX01: fix x86_64 linking on 32bit cross-compiling
7153 - add patch DA04: fix badness in acpi video proc_remove_entry (Danny, #22249)
7154 - add patch DP03: add ICH7/8 ACPI/GPIO io resource quirks
7155 - add patch DS04: update alsa to 1.0.12 final (from *mm*)
7156
7157 * Sat Aug 19 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.9-1mdv2007.0
7158 - update to kernel.org 2.6.17.9
7159 * powerpc: Clear HID0 attention enable on PPC970 at boot time
7160 (CVE-2006-4093)
7161 - re-enable patch DN55: sync r8169 with upstream 20060626, and revert
7162 one change that broke r8169 (Danny).
7163 - fix patch DA01: acpi video oops on unload due to erraneous
7164 semicolon (Danny)
7165 - add patch DN60: Use pskb_trim_unique when trimming paged unique skbs
7166 - fixes BUG+OOPS in skbuff (from LKML)
7167 - add patch DP01: Via pci-quirk irq behaviour change
7168 - reverts to a sceme that is similar to the one in 2.6.16, but
7169 more restrictive (from LKML)
7170 - add patch DP02: revert wrong pci quirks for ICH6
7171 - add patch DM02: add support for device-mapper raid4/5 targets
7172 - disable patch DU01: revert back to probing for new usb scheme first,
7173 and add a note to readme.urpmi regarding this...
7174 - update defconfigs
7175
7176 * Sat Aug 12 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.8-3mdv2007.0
7177 - really make the ps2mouse modular again :/
7178 - add post install script magic from *mm* to cope with modular ps2mouse
7179 and pcspkr
7180 - another sync from main kernel:
7181 - add patches DV25, DV26: Intel 965 AGP, DRM Support
7182 - Add patches FS11, FS12: Supermount 2.0.4 Support
7183 - update patch MB10: ndiswrapper 1.23
7184 * Bug fixes to recent changes in 64-bit driver support.
7185 * ZyDas ZD1211 driver uses interrupt-out URBs, so set them up properly.
7186 * Bug fixes to Atheros USB driver support.
7187 * Added support for Broadcom 802.11n (draft) driver
7188 * Added support for 64-bit Marvell driver
7189 * Optimizations for 64-bit drivers
7190 * If network interface name changes (through udev, ifrename etc),
7191 ndiswrapper notices it and changes entry in procfs
7192 - update defconfigs
7193
7194 * Fri Aug 11 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.8-2mdv2007.0
7195 - spec cleanup
7196 - update defconfigs
7197 - change ps2mouse support back to modular again, since it othewise needs
7198 more modules to be builtin too :/
7199 - selected updates from main kernel:
7200 - update patch DS01: alsa 1.0.12.rc2a
7201 - enable CONFIG_SND_VERBOSE_PROCFS (#24231)
7202
7203 * Mon Aug 7 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.8-1mdv2007.0
7204 - update to kernel.org 2.6.17.8
7205 - UHCI: Fix handling of short last packet
7206 - Fix budget-av compile failure
7207 - invalidate_bdev() speedup
7208 - cond_resched() fix
7209 - e1000: add forgotten PCI ID for supported device
7210 - ext3 -nobh option causes oops
7211 - PCI: fix issues with extended conf space when MMCONFIG disabled because of e820
7212 - Sparc64 quad-float emulation fix
7213 - Update frag_list in pskb_trim
7214 - scx200_acb: Fix the block transactions
7215 - Don't allow chmod() on the /proc/<pid>/ files
7216 - i2c: Fix 'ignore' module parameter handling in i2c-core
7217 - S390: fix futex_atomic_cmpxchg_inatomic
7218 - Fix race related problem when adding items to and svcrpc auth cache
7219 - ext3: avoid triggering ext3_error on bad NFS file handle
7220 - H.323 helper: fix possible NULL-ptr dereference
7221 - tty serialize flush_to_ldisc
7222 - ieee1394: sbp2: enable auto spin-up for Maxtor disks
7223 - VLAN state handling fix
7224 - sky2: NAPI bug
7225 - Add stable branch to maintainers file
7226 - ALSA: Don't reject O_RDWR at opening PCM OSS
7227 - scx200_acb: Fix the state machine
7228 - add selected patches from upcoming main kernel:
7229 - DN34_ipset_svn20060804.patch
7230 - DN35_conntrack_sip_svn20060804.patch
7231 - DN40_netfilter_psd.patch
7232 - rediff patch DN05
7233 - update DV10: v4l/media/dvb to 2.6.18-rc3-git7 level
7234 - drop patch DV12: merged in DV10
7235 - make ps2mouse support builtin again
7236 - update defconfigs
7237 - update README.urpmi
7238
7239 * Wed Aug 2 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.7-3mdv2007.0
7240 - rename patch DN11... to DN15...
7241 - drop patch DN04, as it broke via-rhine for some (#24073)
7242 - disable patch DN55 for now, as it broke r8169 for some...
7243 - add patch DC01: add another via id to drm_pciids (#24021)
7244 - add patch DF01: add generic_acl support (#24045)
7245 - add patch DF02: add acl support to tmpfs (#24045)
7246 - add patch DN11: ipw2200 wpa fix (#24051)
7247 - add patch DS03: add Asus W6A support to snd-hda-intel (#19962)
7248 - add patch DV13: fix so quickcam_messenger actually gets built (LKML)
7249 - update defconfigs
7250
7251 * Fri Jul 28 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.7-2mdv2007.0
7252 - fix kernel-tmb-source-stripped README
7253 - fix some errors and typos in the Changelog
7254 - fix versioning when building RC and kernels without stable patches
7255 - selected patches from *mm*: (replacing my old patches:DN40-44 that I
7256 actually forgot to apply :/ )
7257 - DN50_r8169-mac-address-change-support.patch
7258 - DN51_r8169-RX-fifo-overflow-recovery.patch
7259 - DN52_r8169-hardware-flow-control.patch
7260 - DN53_r8169-remove-rtl8169_init_board.patch
7261 - DN54_r8169-sync-with-vendor-s-driver.patch
7262 - add patch DN55: sync r8169 code with 2.6.18-rc2 and upstream code
7263 - add patch DN07: update forcedeth to 0.56
7264 - adds flow control (stop frame)
7265 - adds more ethtool support
7266 - adds support for MCP61 and MCP65
7267 - add patch DN08: update sundance to 1.1
7268 - add patch DI03: support for nVidia MCP61 and MCP65
7269 - add patch DN11: nozomi 2.1-0.060703 for Option 3G/HSDPA support
7270 - add patch DV12: revert VBI_OFFSET change in bttv-vbi that proke PAL
7271 - add patches MB50-MB52: qc-usb-0.6.4 support (from *mm*)
7272
7273 * Tue Jul 25 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.7-1mdv2007.0
7274 - update to kernel.org 2.6.17.7 final
7275 - drop patches AB01-AB45: merged upstream, or fixed differently
7276 - disable patch FS06: (update symlinks to 10) for now as it may bring
7277 stack issues, need to be checked (Thierry)
7278
7279 * Mon Jul 24 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.6-2mdv2007.0
7280 - drop patch FS11: (fixes bad nfs file handle triggering ext3_error)
7281 - it creates more problem than it fixes :-(
7282 - sync from main kernel:
7283 - add patch DN05: update e1000 to v.7.1.9
7284 - add patch DN06: update e100 to v.3.5.14
7285 - add patch FS06: update supported symlinks to 10 and consecutive symlinks
7286 to 80
7287
7288 * Sun Jul 23 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.6-1mdv2007.0
7289 - disable X86_GENERIC optimization as the Mandriva build cluster is currently
7290 broken regarding -mtune=generic
7291 - as 2.6.17.7 seems to have been delayed:
7292 add patches AB01-AB45: updates to 2.6.17.7-stable-preview
7293 * [patch 01/45] XFS: corruption fix
7294 * [patch 02/45] IB/mthca: restore missing PCI registers after reset
7295 * [patch 03/45] x86_64: Fix modular pc speaker
7296 * [patch 04/45] BLOCK: Fix bounce limit address check
7297 * [patch 05/45] memory hotplug: solve config broken: undefined reference to `online_page
7298 * [patch 06/45] v4l/dvb: Fix budget-av frontend detection
7299 * [patch 07/45] v4l/dvb: Fix CI on old KNC1 DVBC cards
7300 * [patch 08/45] v4l/dvb: Fix CI interface on PRO KNC1 cards
7301 * [patch 09/45] pnp: suppress request_irq() warning
7302 * [patch 10/45] Reduce ACPI verbosity on null handle condition
7303 * [patch 11/45] via-velocity: the link is not correctly detected when the device starts
7304 * [patch 12/45] 2 oopses in ethtool
7305 * [patch 13/45] v4l/dvb: Kconfig: fix description and dependencies for saa7115 module
7306 * [patch 14/45] PKT_SCHED: Fix illegal memory dereferences when dumping actions
7307 * [patch 15/45] PKT_SCHED: Return ENOENT if action module is unavailable
7308 * [patch 16/45] PKT_SCHED: Fix error handling while dumping actions
7309 * [patch 17/45] v4l/dvb: Backport fix to artec USB DVB devices
7310 * [patch 18/45] v4l/dvb: Backport the DISEQC regression fix to 2.6.17.x
7311 * [patch 19/45] v4l/dvb: Backport the budget driver DISEQC instability fix
7312 * [patch 20/45] v4l/dvb: stradis: dont export MODULE_DEVICE_TABLE
7313 * [patch 21/45] dvb-bt8xx: fix frontend detection for DViCO FusionHDTV DVB-T Lite rev 1.2
7314 * [patch 22/45] Make powernow-k7 work on SMP kernels
7315 * [patch 23/45] Fix powernow-k8 SMP kernel on UP hardware bug
7316 * [patch 24/45] cdrom: fix bad cgc.buflen assignment
7317 * [patch 25/45] splice: fix problems with sys_tee()
7318 * [patch 26/45] USB serial ftdi_sio: Prevent userspace DoS (CVE-2006-2936)
7319 * [patch 27/45] tpm: interrupt clear fix
7320 * [patch 28/45] pdflush: handle resume wakeups
7321 * [patch 29/45] ieee80211: TKIP requires CRC32
7322 * [patch 30/45] Fix IPv4/DECnet routing rule dumping
7323 * [patch 31/45] Add missing UFO initialisations
7324 * [patch 32/45] ALSA: Suppress irq handler mismatch messages in ALSA ISA drivers
7325 * [patch 33/45] ALSA: RME HDSP - fixed proc interface (missing {})
7326 * [patch 34/45] ALSA: hda-intel - Fix race in remove
7327 * [patch 35/45] ALSA: Fix workaround for AD1988A rev2 codec
7328 * [patch 36/45] ALSA: Fix undefined (missing) references in ISA MIRO sound driver
7329 * [patch 37/45] ALSA: fix the SND_FM801_TEA575X dependencies
7330 * [patch 38/45] ALSA: Fix mute switch on VAIO laptops with STAC7661
7331 * [patch 39/45] ALSA: Fix model for HP dc7600
7332 * [patch 40/45] ALSA: Fix missing array terminators in AD1988 codec support
7333 * [patch 41/45] ALSA: Fix a deadlock in snd-rtctimer
7334 * [patch 42/45] ALSA: au88x0 - Fix 64bit address of MPU401 MMIO port
7335 * [patch 43/45] struct file leakage
7336 * [patch 44/45] serial 8250: sysrq deadlock fix
7337 * [patch 45/45] fix fdset leakage
7338 - update to kernel.org 2.6.17.6
7339 * Relax /proc fix a bit
7340 - drop patch AA01: merged upstream
7341 - add patch CK02: fixes idleprio and suspend to disk bug
7342 - rediff patch: DA01
7343 - add patch DA03: update asus_acpi to 0.30
7344 - add patch DN04: update via-rhine to 1.4.0
7345 - add patch DN10: update ipw2200 to 1.1.3
7346 - add patch DN40: rtl8169: adds support for changing mac address
7347 - add patch DN41: rtl8169: adds RX fifo overflow recovery
7348 - add patch DN42: rtl8169: use mii registers to check/set/use hardware flow control
7349 - add patch DN43: rtl8169: replaces rtl8169_init_board with rtl_init_phy
7350 - add patch DN44: rtl8169: adds support for pci-e 81xx hardware (#23705)
7351 - rediff patch: DS01
7352 - add patch DU02: add support for testo hardware to ftdi_sio (#23666)
7353 - add patch DV10: update linuxtv support to 2.6.18-rc2-git1 level
7354 * bugfixes, optimizations
7355 * support additional hardware with current drivers:
7356 - pcHDTV HD5500 HDTV
7357 - Kworld MCE 200 Deluxe
7358 - PixelView PlayTV P7000
7359 - NPG Tech Real TV FM Top 10
7360 - WinFast DTV2000 H
7361 - Geniatech DVB-S
7362 - LifeView FlyVIDEO3000 (NTSC)
7363 - Samsung TCPG 6121P30A
7364 - ...
7365 * support new hardware:
7366 - AverMedia 6 Eyes support
7367 - Blackbird MPEG encoder support
7368 - Texas Instruments TLV320AIC23B audio codec
7369 - Hauppauge WinTV-PVR USB2 support
7370 - USB Logitech Quickcam Messenger
7371 - GENPIX 8PSK->USB module support
7372 - ...
7373 - add patch DV11: remove unused VIDIOC_S_CTRL_OLD check from matroxfb_base ioctl
7374 - add patch FS11: fixes bad nfs file handle triggering ext3_error
7375 - update patch MB10: ndiswrapper to 1.21
7376 * Calls to Miniport functions with serialized drivers (such as RT2500)
7377 are serialized, so they should work with SMP.
7378 * Enable interrupts in IRQ handler; otherwise, some drivers (e.g.,
7379 Marvell 8335) don't work.
7380 * Kernel crash with changing mac address (with 'ifconfig hw ether ...')
7381 fixed.
7382 * Fixes to 64-bit drivers; TI 1450 (used in AVM Fritz) is supported
7383 with 64-bit.
7384 * Fix to SMP kernel crash when USB device is unplugged.
7385 * Fix to a bug (in 1.20) that locked up when used with RT2500 with SMP.
7386 * RT2500 is supported with 64-bit.
7387
7388 * Sat Jul 15 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.5-1mdv2007.0
7389 - update to kernel.org 2.6.17.5
7390 * Fix nasty /proc vulnerability (CVE-2006-3626)
7391 - Add Patch AA01: Relax /proc fix a bit as it broke hal for some
7392 users (Linus Torvalds)
7393
7394 * Thu Jul 13 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.4-1mdv2007.0
7395 - update to kernel.org 2.6.17.4
7396 * fix prctl privilege escalation and suid_dumpable (CVE-2006-2451)
7397 - add patch DA02: fix DA02_fix_AE_AML_MUTEX_NOT_ACQUIRED (#23534)
7398 - add patch DI10: fixes ata_piix PCS-related issues and ICH8 support
7399 - enable VIDEO_V4L1 support again even if it's marked DEPRECEATED
7400 - update defconfigs
7401 - reenable patch DS02: fix snd-hda-intel error handling
7402
7403 * Tue Jul 4 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.3-1mdv2007.0
7404 - update to kernel.org 2.6.17.3
7405 * NETFILTER: SCTP conntrack: fix crash triggered by packet without
7406 chunks [CVE-2006-2934]
7407 - update to kernel.org 2.6.17.2
7408 * Input: return correct size when reading modalias attribute
7409 * idr: fix race in idr code
7410 * Link error when futexes are disabled on 64bit architectures
7411 * kbuild: bugfix with initramfs
7412 * ide-io: increase timeout value to allow for slave wakeup
7413 * libata: minor patch for ATA_DFLAG_PIO
7414 * ohci1394: Fix broken suspend/resume in ohci1394
7415 * IPV6 ADDRCONF: Fix default source address selection without
7416 CONFIG_IPV6_PRIVACY
7417 * IPV6: Fix source address selection
7418 * UML: fix uptime
7419 * bcm43xx: init fix for possible Machine Check
7420 * x86: compile fix for asm-i386/alternatives.h
7421 * NTFS: Critical bug fix (affects MIPS and possibly others)
7422 * SPARC32: Fix iommu_flush_iotlb end address
7423 * ETHTOOL: Fix UFO typo
7424 * SCTP: Fix persistent slowdown in sctp when a gap ack consumes rx buffer
7425 * SCTP: Send only 1 window update SACK per message
7426 * SCTP: Reset rtt_in_progress for the chunk when processing its sack
7427 * SCTP: Reject sctp packets with broadcast addresses
7428 * SCTP: Limit association max_retrans setting in setsockopt
7429 * PFKEYV2: Fix inconsistent typing in struct sadb_x_kmprivate
7430 * IPV6: Sum real space for RTAs
7431 * USB: Whiteheat: fix firmware spurious errors
7432 - fix kernel-tmb-doc building
7433 - drop patch DN20: merged upstream
7434 - update patch FS01: unionfs to v. 1.3
7435 - drop patch FS02: merged upstream
7436 - make kernel-source(-stripped) provide: kernel-source-fbsplash so
7437 it works with fbsplash-utils (Danny)
7438
7439 * Sat Jun 24 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17.1-1mdv2007.0
7440 - update to kernel.org 2.6.17.1
7441 * CVE-2006-3085
7442 - redo patch CE02: acpi-dsdt-initrd to match updated ACPI in DA01
7443 - drop patch CE11: acpi-ec-nospinlock, as its merged in DA01
7444 - add patch DA01: update ACPI support to 20060608
7445 - add patch DS01: update ALSA to 1.0.12rc1
7446 - disable patch DS02: snd-hda-intel error-handling as it should be fixed
7447 in the updated alsa
7448 - update patch MB10: ndiswrapper to 1.18
7449 * Support for RNDIS was broken in 1.16; they work now
7450 * Suspend/resume improved
7451 * Netpoll support added
7452 * Support for RNDIS driver with Vista drivers for 64-bit
7453 * Fix Kernel crash with RT2500 under heavy load
7454 - drop Obsoletes on virtual rpms
7455
7456 * Tue Jun 20 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17-2mdv2007.0
7457 - Fix EXTRAVERSION when no stable patch applied ( now where did I put
7458 my brown paper bag ??? )
7459
7460 * Sun Jun 18 2006 Thomas Backlund <tmb@mandriva.org> 2.6.17-1mdv2007.0
7461 - update to kernel.org 2.6.17
7462 - update CK01 to 2.6.17-ck1
7463 - drop patches merged upstream: CA73, CP03, CP10, DC01, DC11, DN10,
7464 DN37, DN38, DN39, DS01, DV02, FS20
7465 - rediff patches: CR01, DI08, DM01, DN02
7466 - add patch DN20: fix bcm43xx init-vs-irq workaround
7467 - disable BLK_DEV_UB as it conflicts with usb-storage (#23159)
7468 - add info to README.urpmi regerding modular PS2 (#23141)
7469
7470 * Sat Jun 17 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.20-4mdv2007.0
7471 - add patch CP10: fix nVidia HPET timer override
7472 - add patch DC01: add drm from 2.6.17-rc6-git7 to match xorg 7.1
7473 - add patch DC11: fixes pptp large data transfer random hangs
7474 - add patch DN10: update to forcedeth 0.54
7475 - add patch FS20: add autofs5 support from 2.6.17-rc6-git7 (#22399)
7476
7477 * Sun Jun 11 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.20-3mdv2007.0
7478 - rework rhconfig.h for autoconf, and fix a typo
7479 - enable in defconfig as module: BT_CMTP (Michael Braun)
7480 - enable in defconfig: KEXEC (Raphael Gertz)
7481 - disable in defconfig FB_TILEBLITTING as it conflicts fbsplash
7482 - add patch CP03: update powernow-k8 to 1.60.1
7483 - add patch DU01: enable usbcore old_scheme_first to fix error:
7484 "device not accepting address"
7485 - add patch CR01: add support for BadRAM (poor mans "IBM ChipKill")(from *mm*)
7486 - add patch DV01: fbsplash 0.9.2-r5 (from *mm*)
7487 - add patch DV02: fix fbsplash build (from *mm*)
7488
7489 * Sat Jun 10 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.20-2mdv2007.0
7490 - Update patch CK01 to 2.6.16-ck12
7491 - Update patch FS01 to unionfs-1.2
7492 - Drop old patch FS02 as it didnt fix the unionfs smp bug
7493 - Add new patch FS02 to fix unionfs Makefile versioning
7494 - Spec fixes: dont strip scripts dir in source-stripped rpm, and some typos
7495 - Update README.urpmi with info regarding need to recreate initrd and rerun
7496 lilo for first time istallers...
7497 - enable HIGHPTE for HIGHMEM4G & HIGHMEM64G in create_configs
7498 - enable following defconfig options:
7499 * EMBEDDED, PACKET_MMAP, NET_SCH_CLK_CPU, PNPBIOS_PROC_FS, TULIP_NAPI,
7500 TULIP_NAPI_HW_MITIGATION, AMD8111E_NAPI, ADAPTEC_STARFIRE_NAPI,
7501 8139TOO_8129, VIA_RHINE_MMIO, E1000_NAPI, R8169_NAPI, IXGB_NAPI,
7502 S2IO_NAPI, IPW2100_MONITOR, PC300_MLPPP, SERIAL_8250_SHARE_IRQ,
7503 IPMI_PANIC_EVENT, IPMI_PANIC_STRING, WATCHDOG_NOWAYOUT, WDT_501_PCI,
7504 FT_PROC_FS, USB_DYNAMIC_MINORS, USB_SUSPEND, USB_SERIAL_SAFE_PADDED
7505 - disable following defconfig options:
7506 * NET_SCH_CLK_GETTIMEOFDAY, MOUSE_ATIXL, TOUCHSCREEN_ADS7846, RISCOM8,
7507 LEGACY_PTYS, DVB_USB_DIBUSB_MB_FAULTY, FB_HGA_ACCEL, FB_ATY_GENERIC_LCD,
7508 FB_3DFX_ACCEL, FB_TRIDENT_ACCEL, FB_GEODE, MDA_CONSOLE,
7509 FRAMEBUFFER_CONSOLE_ROTATION, FONT_10x18, USB_LIBUSUAL,
7510 USB_HIDINPUT_POWERBOOK, USB_APPLETOUCH
7511
7512 * Mon Jun 5 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.20-1mdv2007.0
7513 - fix another error in rhconfig.h (Doh :/ )
7514 - update to kernel.org 2.6.16.20
7515 - drop patch DI03 (merged upstream)
7516 - rediff patch DN39
7517 - re-enable LVM & cfor laptop kernels
7518
7519 * Sat Jun 3 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.19-4mdv2007.0
7520 - fix rhconfig.h autoconf breakage
7521 - update patch MB30: acerhk to version 0.5.33
7522 - add patch MB40: acer_acpi - the acerhk clone for x86_64
7523 - enable USB_EHCI_ROOT_HUB_TT
7524
7525 * Sat Jun 3 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.19-3mdv2007.0
7526 - a simple rebuild on n2 to see if n5 produces broken kernel rpms
7527
7528 * Thu Jun 1 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.19-2mdv2007.0
7529 - enable X86_BIGSMP for ix86 smp kernels to support cpu hotplugging
7530 - enable USB_EHCI_SPLIT_ISO for all kernels
7531 - add patch CP02: disable only 12.5 duty cycle in p4-clockmod on errata N60,
7532 not everything below 2 GHz
7533 - add patch DI03: help resume from libata
7534 - add patch DN03: fix ipt_register_table() wrongly return 0 instead of
7535 error code when xt_register_table() fails
7536 - fix automatic upgrades because of name change:
7537 * make desktop(-smp)-latest obsolete desktop686(-smp)-latest <=2.6.16.18-3
7538 * make desktop586(-smp)-latest obsolete desktop(-smp)-latest <=2.6.16.18-3
7539
7540 * Wed May 31 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.19-1mdv2007.0
7541 - update to 2.6.18.19
7542 * Netfilter: CVE-2006-1343
7543 - more spec cleanups...
7544 - fix defconfig-maximum on ix86
7545 - add more patches from *mm* series:
7546 - add patch DB32: SiS 965 IDE support
7547 - add patch DI02: prevent disk spindown on reboot
7548 - add patch CP01: HOTPLUG_CPU must depend on !X86_PC (#22594)
7549 - add patch DS02: fix Alsa intel hda error handling (Danny)
7550
7551 * Tue May 30 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.18-4mdv2007.0
7552 - do some renaming of the desktop flavours to be consistent with mm series
7553 * old i586,1GB desktop(-smp) is now desktop586(-smp)
7554 * old i686,4GB desktop686(-smp) is now desktop(-smp)
7555 - require bootloader-utils >= 1.12-1mdv2007.0 wich is fixed for the
7556 above name change...
7557 - update support files for new names, so autoconf still works.
7558 - sync laptop configs with the mm series
7559 - create_configs cleanup and fixing for new naming
7560 - update defconfigs, some syncs from multimedia series:
7561 * disable following config options:
7562 AUDIT, AUDITSYSCALL, DETECT_SOFTLOCKUP, FORCED_INLINING
7563 * enable following config options:
7564 MODVERSIONS, MODULE_SRC_VERSION_ALL, X86_MCE_NONFATAL, X86_REBOOTFIXUPS,
7565 APM_ALLOW_INTS, APM_REAL_MODE_POWER_OFF, CPU_FREQ_DEFAULT_GOV_USERSPACE,
7566 CPU_FREQ_GOV_USERSPACE, NET_SCH_CLK_GETTIMEOFDAY, SERIAL_8250_CONSOLE,
7567 SERIAL_8250_ACPI, SERIAL_8250_EXTENDED, SERIAL_CORE_CONSOLE, CRAMFS,
7568 NFS_DIRECTIO
7569 * enable/change following config options as/to modules:
7570 CPU_FREQ_GOV_PERFORMANCE, BINFMT_MISC, PACKET, INET_DIAG, INET_TCP_DIAG,
7571 IEEE1394, MII, INPUT_MOUSEDEV, AGP, USB_KBD, USB_MOUSE
7572
7573 * Sat May 27 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.18-3mdv2007.0
7574 - use 'distsuffix' macro for rpmtag so it's correct on both 2006.0 and
7575 Cooker / 2007.0
7576 - add *tmb* to 'uname -r' to differentiate against upcoming *mm*,
7577 as we now use same naming scheme...
7578 - add support for flavours laptop and laptop-smp, and their virtual rpms,
7579 but dont build them by default
7580 - selected patches from main kernel:
7581 - add patch CA03: boot in 80x25 videomode if users selects unsupported mode
7582 - add patch DB25: fix megaraid_mbox sysfs name
7583 - add patch DI08: enable ATAPI support in libata
7584 - selected pateches from multimedia kernel:
7585 - add patch CA73: fixes crash in powernow-k8
7586
7587 * Thu May 25 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.18-2mdv2007.0
7588 - fix README.urpmi text
7589 - fix x86_64 server-smp summary
7590 - change rpmtag s/mdk/mdv/ (also used in 'uname -r')
7591 - kernel-tmb now goes 'mkrel' for rpm names, but not for 'uname -r'
7592 - update requires on bootloader-utils to 1.10-mkrel 2
7593 - update requires on mkinitrd to 4.2.17-mkrel 20
7594 - switch from Requires to Requires(pre) for compiled kernels
7595 to make sure all support files are in place at install time
7596 - disable generation of useless debug rpms
7597
7598 * Tue May 23 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.18-1mdk
7599 - update to kernel.org 2.6.16.18
7600 - hang on to you hats ;-), CONFIG_PARTITION_ADVANCED is enabled
7601 again, allong with: CONFIG_OSF_PARTITION, CONFIG_MAC_PARTITION,
7602 CONFIG_LDM_PARTITION, CONFIG_KARMA_PARTITION
7603 please report any problems you may have...
7604
7605 * Sun May 21 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.17-1mdk
7606 - update to kernel.org 2.6.16.17
7607 - update CK01 to 2.6.16-ck11
7608 - drop ZZ01 as it's included in 2.6.16.17
7609 - for server sets, set HZ_100, enable CPUSET
7610 - add README.urpmi regarding modular ide
7611 - change CONFIG_SND to module
7612 - selected patches from main kernel
7613 - add patch DN01: add module alias to bonding
7614 - add patch DN02: adds bcm47xx support to b44
7615 - adds patches DN37,DN38,DN39: support for wireless softmac,
7616 prism54usb, bcm43xx, adm8211, tiacx
7617 - add patch DS01: Alsa 1.0.11
7618 - add patch FQ01: cpufreq speedstep support for dothan
7619 - add patch FS10: fixes oops in destroy_inode
7620 - add patches MB01,MB02: 3rdparty framework
7621 - add patch MB10: ndiswrapper 1.16
7622 - add patch MB20: squashfs 3.0
7623 - add patch MB30: acerhk 0.5.18
7624
7625 * Sat May 20 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.16-6mdk
7626 - fix mkinitrd requires s/-/>=/
7627 - change requires on mkintrd and bootloader-utils to match 'mkrel'
7628 for packages rebuilt for 2006.0
7629 - fix typo in kernel-tmb.patchlist
7630
7631 * Fri May 18 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.16-5mdk
7632 - first build with new toolchain (gcc-4.1.1, glibc 2.4.0)
7633 - add patch ZZ01: CVE-2006-0039 Netfilter race, oops, info leak
7634 * (from upcoming -stable 2.6.16.17)
7635 - fix create_configs for server-smp to serversmp change
7636 - update FS01: to unionfs snapshot 20060503-0408
7637 - add FS02: unionfs smp oops fix (Junjiro Okajima (unionfs developer))
7638 - update requires on bootloader-utils to 1.10-1mdk
7639 * adds support for kernel-tmb sets in kheader, needed for autoconf
7640 - update requires on mkinitrd to 4.2.17-19mdk
7641 * makes ide-controller statement in modprobe.conf optional when
7642 installing a kernel with ide support built-in
7643
7644 * Tue May 16 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.16-4mdk
7645 - fix PrepareKernel and create_configs breakage due to versioning change
7646 - change CONFIG_EDD from module to builtin
7647 - add patch DM01: adds boot parameter broken_dmstripe to allow unaligned
7648 dm-stripe partitions to get activated...
7649
7650 * Sat May 13 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.16-3mdk
7651 - change kprovides and requires for source-stripped
7652 - drop unneeded kernel-tmb-latest virtual rpm
7653 - fix missing parts of rhconfig.h (source15) to get autoconf working again
7654 - update CE02_acpi-dsdt-initrd to v0.8.1-2.6.16 (Eric Piel)
7655 - change RTC from module to built-in
7656 - change IP_NF_CONNTRACK from built-in to module
7657 - use tarball patches.description as kernel-tmb.patchlist to not duplicate work
7658 - add patch FS01: Unionfs snapshot 20060423-1600
7659
7660 * Wed May 11 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.16-2mdk
7661 - fix pre, post, postun scripts to match change in versioning
7662 - fix autoconf , rhconfig and version.h generation to match the
7663 versioning change ...
7664 - keep a list of patches in kernel-tmb.patchlist outside patches
7665 tarball so it shows up in Mandriva CVS ...
7666
7667 * Wed May 11 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.16-1mdk
7668 - update to 2.6.16.16
7669 - update CK01 to 2.6.16-ck10
7670 - fix CE02_acpi-dsdt-initrd to acually get it selectable (Udo Rader)
7671 - readd needed arch/i386/kernel/sigframe.h to -stripped source (rapsys)
7672 - strip a few more files from -stripped source
7673 - rename /boot/(vnlinuz,initrd)-* to match naming of other kernels
7674 to ease installer/bootloader-utils support (Request by Pixel)
7675
7676 * Mon May 8 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.14-1mdk
7677 - update to 2.6.16.14
7678 - fix scripts build (needed for external modules)
7679 - create a really slip-streamed kernel-tmb-source-stripped
7680 (~14MB vs main ~65MB)
7681
7682 * Wed May 3 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.13-1mdk
7683 - quick update to 2.6.16.13
7684
7685 * Tue May 2 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.12-1mdk
7686 - update to kernel.org 2.6.16.12
7687 - update patch CK01 to 2.6.16-ck9
7688 - NOTE: This nice system with kernel metapackages to allow for
7689 automated updating of kernels and kernel-source without breaking
7690 current installs is pretty much what Oliver Thauvin already suggested
7691 in 2004-12-07 !! For more info see Bugzilla #21345 comment 26.
7692 So many thanks to Oliver for this!!
7693
7694 * Mon May 1 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.11-4mdk
7695 - add patches.description in patches tarball to keep track of patches
7696 - patch CE02: add support for custom DSDT in initrd
7697 - patch CE11: acpi_ec_no_spinlock (Udo Rader)
7698 - patch CK01: Con Kolivas patchset 2.6.16-ck8
7699 * smpnice, staircase scheduler, swap prefetch, readahead, ...
7700 - patch DN33: netfilter IFWLOG support (Gertz Raphael)
7701 - update defconfigs for the above patches
7702 - disable swap prefetch for server(-smp) kernels
7703 - set HZ_1000 on desktop sets, HZ_100 on server sets
7704 - fix description for ix86 desktop kernels to mention the fact
7705 that only 870-900MB RAM is detected (even if marked 1GB)...
7706 - enable SERIAL_NONSTANDARD support (Gertz Raphael)
7707 - add provides kernel to cope with basesystem requires
7708 - make ide fully modular (so you need: alias ide-controller 'modulename'
7709 in /etc/modprobe.conf or fixed initrd to detect modular ide
7710 - add metapackages for every kernel flavour to allow for auto-updating
7711 kernels/souce with urpmi --auto-select without removing the previous one:
7712 * kernel-tmb-desktop-latest, kernel-tmb-desktop-smp-latest
7713 * kernel-tmb-desktop686-latest, kernel-tmb-desktop686-smp-latest
7714 * kernel-tmb-server-latest, kernel-tmb-server-smp-latest
7715 * kernel-tmb-source-latest, kernel-tmb-latest (shows all flavours)
7716 - fix version.h generation
7717 - specfile cleanups & fixes
7718
7719 * Tue Apr 25 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.11-3mdk
7720 - set CONFIG_PHYSICAL_START=0x400000 (Thierry)
7721 - make md modular (Luca)
7722
7723 * Tue Apr 25 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.11-2mdk
7724 - readd versioned package names
7725 - disable CONFIG_PARTITION_ADVANCED (Raphael)
7726
7727 * Tue Apr 25 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.11-1mdk
7728 - update to 2.6.16.11
7729 - fix configs for missing initrd (doh...)
7730 - set server(-smp) kernels to use HZ_1000 (Luiz)
7731
7732 * Thu Apr 20 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.9-1mdk
7733 - update to 2.6.16.9
7734
7735 * Wed Apr 19 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.8-1mdk
7736 - update to 2.6.16.8
7737
7738 * Tue Apr 18 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.6-1mdk
7739 - update to 2.6.16.6
7740
7741 * Tue Apr 18 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.5-3mdk
7742 - more spec cleanups
7743 - create_config script cleaning
7744
7745 * Mon Apr 17 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.5-2mdk
7746 - optimize configs
7747 - fix descriptions
7748
7749 * Sun Apr 16 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16.5-1mdk
7750 - update to 2.6.15.5
7751 - fix spec and support files for stable extraversion release
7752
7753 * Sun Apr 16 2006 Thomas Backlund <tmb@mandriva.org> 2.6.16-1mdk
7754 - Alive Again !!! ... ;-)
7755 - Scrap the old versioning as I don't track main kernel anymore...
7756 - Start fresh from unpatched kernel
7757 - Switch to kernel.org versioning.
7758 - build desktop up & smp kernels:
7759 * i586, 1GB. CFQ Scheduler, Voluntary Preempt
7760 * x86_64, CFQ Scheduler, Voluntary Preempt
7761 - build i686 optimized desktop686 up & smp kernels:
7762 * i686, 4GB, CFQ Scheduler, Voluntary Preempt
7763 - build server up & smp kernels:
7764 * i686, 64GB, Deadline Scheduler, No Preempt
7765 * x86_64, Deadline Scheduler, No Preempt
7766 - build as modular as possible
7767 - use MDV Releasespecific rpmname
7768 - redo spec and support files to match all changes
7769
7770 * Tue Aug 31 2004 Svetoslav Slavtchev <svetljo@gmx.de> 2.6.7-2.tmb.6mdk
7771 - yet another tiny resync with -mm3
7772 MC50_ndiswrapper-0.10.tar
7773 MD10_ivtv-0.1.10-pre2-ck104y.tar
7774 MG70_ipw2100-0.53_and_ipw2200-0.4.tar
7775 - add ecc driver (from -mm3)
7776 ZS58_ecc.patch
7777 ZS59_ecc-fix.patch
7778 - add drbd-0.7.1 (from -mm3)
7779 ZS20_drbd-0.7.1.patch
7780 ZS21_drbd-add_drbd_buildtag.patch
7781 - add cluster support and gfs (from -mm3)
7782 ZC01_cman.patch
7783 ZC02_cman_integrate.patch
7784 ZC03_dlm.patch
7785 ZC04_dlm_integrate.patch
7786 ZC05_VFS_call_down_into_FS_on_flock_calls.patch
7787 ZC06_lock_harness.patch
7788 ZC07_lock_harness_integrate.patch
7789 ZC08_gfs.patch
7790 ZC09_gfs_integrate.patch
7791 ZC10_lock_nolock.patch
7792 ZC11_lock_nolock_integrate.patch
7793 ZC12_lock_dlm.patch
7794 ZC13_lock_dlm_integrate.patch
7795 ZC14_lock_gulm.patch
7796 ZC15_lock_guilm_integrate.patch
7797 ZC16_gnbd.patch
7798 ZC17_gnbd_integrate.patch
7799 - fix kernel-BOOT compile
7800 thinkpad depends on CONFIG_PM
7801 GFS depends on CONFIG_IPV6
7802
7803 * Mon Aug 09 2004 Svetoslav Slavtchev <svetljo@gmx.de> 2.6.7-2.tmb.5mdk
7804 - build win4lin kernels too
7805 - disable dxr3 on alpha
7806 alpha should build happily again :-)
7807
7808 * Mon Aug 09 2004 Svetoslav Slavtchev <svetljo@gmx.de> 2.6.7-2.tmb.4mdk
7809 - re-add alsa addons
7810 DS10_alsa-1.0.5_addons.tar
7811 DS11_echoaudio-0.8.10.tar
7812 DS20_alsa_usx2y_fixes.patch
7813 DS21_alsa_usx2y_build.patch
7814 DS22_alsa_usx2y__usbaudio_exports.patch
7815 DS23_alsa_hdspm_include.patch
7816 DS24_alsa_echoaudio_integrate.patch
7817 DS25_alsa_pdplus_integrate.patch
7818 DS27_alsa_msnd_integrate.patch
7819 DS28_alsa_serialmidi_integrate.patch
7820 DS29_alsa_serialmidi_k2.6cleanups.patch
7821 DS30_alsa_msnd_include_pnp.h.patch
7822 DS31_alsa_echoaudio_export_no_symbol.patch
7823 DS32_alsa-atiixp_modem_integrate.patch
7824 DS33_alsa-emu10k1x_integrate.patch
7825 DS34_alsa_audigyls_integrate.patch
7826 DS35_alsa_audigyls_20040612.patch
7827 DS36_alsa_snd_amagic.h.patch
7828 DS37_alsa_sound_opti92x-ad1848-locking-fix.patch
7829 DS38_alsa_add_tvmixer.patch
7830 - 3rdparty resync with -sds
7831 DV16_epcam-linux2.6.1.patch
7832 DV17_vpx3224.patch
7833 MB20_eagle-usb-1.9.8.tar
7834 MB30_hostap-0.2.4.tar
7835 MB46-lirc_serial_sir_split.patch
7836 MB70_dfg1394-1.3.tar
7837 MB80_1prism25-0.2.1-pre21.tar
7838 MB90_ov511-2.28.tar
7839 MB91_ov511_mark_in-kernel_driver_as_old.patch
7840 MC20_bcm5700-7.3.5.tar
7841 MC30_at76c503a-cvs20072004.tar
7842 MC50_ndiswrapper-0.9.tar
7843 MC70_acecad-3.1.tar
7844 MC71_acecad-3.1-hid.patch
7845 MD00_lpfcdriver-2.6-8.0.7.tar
7846 MD10_ivtv-0.1.10-pre2-ck101.tar
7847 MD70_fuse-1.3.tar
7848 ME10_shfs-0.35.tar
7849 ME20_usbvision0.9.6cvs20040717.tar
7850 ME30_gatos-km-cvs20040719.tar
7851 ME40_cdfs-2.6.3.tar
7852 ME60_exaudio-1.62.tar
7853 ME61_exaudio_lirc_path.patch
7854 ME70_spca5xx_26x-10072004.tar
7855 ME71_spca50x_mdelay.patch
7856 ME80_qcamvc-1.0.7cvs20040608.tar
7857 ME90_pvfs2-0.1.1.tar
7858 MF20_dyc_ar5k.tar
7859 MF21_dyc_ar5kmod_drop_stdio_include.patch
7860 MF30_ibmcrypto.tar
7861 MF40_fpi2002-0.1.tar
7862 MF41_fpi2002_k26.patch
7863 MF50_cxacru_2003-10-05.tar
7864 MF51_cxacru-2.6.x_add_ids_to_speedtch.patch
7865 MF60_cpad-0.2.tar
7866 MF61_cpad26-0.1_use_kconfig.patch
7867 MF62_cpad_blacklist_cpad_in_hid.patch
7868 MF70_acx100-0.2.0pre8_plus_fixes_23.tar
7869 MF80_thinkpad-5.5.tar
7870 MF90_subfs_submount-0.9.tar
7871 MG10_prism54_usb-cvs20040621.tar
7872 MG20_rhineget.tar
7873 MG21_rhine_main.patch
7874 MG22_rhineget_depend_on_NET_and_X86.patch
7875 MG30_rfswitch-0.1.tar
7876 MG31_rfswitch_merge_fix.patch
7877 MG40_fsam7400-0.3.1.tar
7878 MG50_zr364xx-0.52.tar
7879 MG60_v3tv-v4l2_cvs20040717.tar
7880 MG70_ipw2100-0.51.tar
7881 MG90_omnibook-2004-07-01.tar
7882 MG91_omnibook-cpufreq.patch
7883 MG92_omnibook_Makefile_fix_alt1.patch
7884 MH00_mod_marvel-cvs20031215.tar
7885 MH00_mod_marvel.desc
7886 MH10_gpib-3.2.00.tar
7887 - security fixes
7888 ZG51_1100_ip_tables.patch
7889 ZG52_1105_CAN-2004-0497.patch
7890 ZG53_1110_proc.patch
7891 ZG54_1325_iptables-headers.patch
7892 ZG55_1115_net_eql.patch
7893
7894 * Thu Jul 15 2004 Thomas Backlund <tmb@mandrake.org> 2.6.7-2.tmb.3mdk
7895 - fix BOOT compiling
7896 - update squashfs to 2.0 Final (MC80)
7897 * Initrds are now supported for kernels 2.6.x.
7898 * amd64 bug fixes.
7899 * Check-data and gid bug fixes.
7900
7901 * Wed Jul 14 2004 Thomas Backlund <tmb@mandrake.org> 2.6.7-2.tmb.2mdk
7902 - bootsplash is back (CD01, CD04) (from sds15)
7903 - rediff (CK01) because of bootsplash
7904 - update Win4Lin patch to 2.6.7 (P100)
7905 - update mki-adapter26 to 1.3.6 (P101)
7906 - drop libata vs. pata piix fix (DI11), let the user choose
7907 between libata and pata piix support
7908 - drop the outdated hfsplus from 3rdparty (MD30, MD31, MD32)
7909 - BadRAM support is back (ZS04)
7910 - uss725 works again (DU02, DU07, DU08) (from sds15)
7911 - Cloop 2.0.1 is back (ZS18, ZS19) (from sds15)
7912
7913 * Wed Jul 07 2004 Thomas Backlund <tmb@mandrake.org> 2.6.7-2.tmb.1mdk
7914 - full restart from main 2.6.7.2mdk to get back in sync with main
7915 (meaning it may have less hw support and features than my 2.6.5
7916 series now in the beginning until I have synced up with sds15...)
7917 - first tmb kernel to be uploaded to amd64 contribs
7918 - build kernels with preempt
7919 - changelog will from now on always reference the patches with
7920 their prefix to make it easier to keep track of changes
7921 - restructure patches tarball for easier maintenance:
7922 * all alsa specific patches now using DS prefix
7923 * 3rdparty driver tarballs now have patches affecting them directly
7924 after the tarball. Tarballs now starts from prefix MB10 and will
7925 have room for 9 patches reserved, meaning next tarball will get
7926 MB20 and so on...
7927 - alsa 1.0.5 (DS01) (from sds15)
7928 - update alsa to 1.0.5a (DS02) (from sds15)
7929 - move (old DA54) alsa hp quirk fix to (DS03)
7930 - fix dell laptop alsa hang (DS04) (from sds15)
7931 - move (old MC01) acx100 to (MB10) and update to 0.2.0pre7-fixes6 (from sds15)
7932 * move (old MD01) compil fix to (MB11)
7933 - move (MC02) eagle-usb to (MB20) and update to 1.9.7cvs (from sds15)
7934 * drop claiminterface fix (old MD02)
7935 * move (old MD02) mdelay fix to (MB21)
7936 - move (old MC03) hostap to (MB30) and update to 0.2.2cvs20040609 (from sds15)
7937 * add build integration fix (MB31) (from sds15)
7938 - move (old MC04) lirc to (MB40)
7939 * move (old MD04) buildfixes to (MB41)
7940 * move (old MD05) devfs fixes to (MB42)
7941 * move (old MD06) parport enumarate fix to (MB43)
7942 * move (old MD07) atiusb fix to (MB44)
7943 * add floting point fix (MB45) (from sds15)
7944 - move (old MC05) lufs to (MB50)
7945 * add support for extra opts (MB51)
7946 - move (old MC07) qc-usb to (MB60) and update to 0.6.0
7947 - move (old MC08) dfg1394 to (MB70) and update to 1.1cvs20040314 (from sds15)
7948 * drop irq interval fix (old MD08)
7949 * add dfg1394 firewire init fix (MB71) (from sds15)
7950 - move (old MC09) prism25 to (MB80) and update to 0.2.1-pre20 (from sds15)
7951 - move (old MC10) ov511 to (MB90)
7952 - move (old MC11) dxr3 to (MC00) and update to 0.14_200403013 (from sds15)
7953 * drop i2c fix (old MD11)
7954 - move (old MC12) iscsi to (MC10)
7955 * move (old MD12) iscsi shost fix to (MC11)
7956 - move (old MC13) bcm57xx to (MC20) and update to 7.1.22
7957 * drop buildfixes (old MD13)
7958 * add ULL fix (MC21)
7959 - move (old MC15) at76c503 to (MC30) and update to 0.12beta14 (from sds15)
7960 - move (old MC16) vc_ar5k to (MC40)
7961 - move (old MC17) ndiswrapper to (MC50) and update to 0.7 (from sds15)
7962 - move (old MC18) mod_marvel to (MC60) and update to marvel_mgatv cvs20040408 (from sds15)
7963 - move (old MC19) acecad to (MC70)
7964 * move (old MD19) cur_altsetting fix to (MC71)
7965 - move (old MC20) squashfs to (MC80) and update to 2.0
7966 - move (old MC21) bcm44xx to (MC90)
7967 - drop old lpfc driver (old MC23)
7968 - add new lpfcdriver ver 20040409 (MD00) (from sds15)
7969 - move (old MC24) ivtv to (MD10) and update to 0.1.10-pre2-ck97h (from sds15)
7970 * drop i2c fix (old MD24)
7971 * fix includes (MD11) (from sds15)
7972 * use kernel min/max for msp3400 (MD12) (from sds15)
7973 - move (old MC25) rivatv to (MD20) and update to cvs20040626 (from sds15)
7974 * drop old tweaks (old MD25)
7975 * add new tweaks (MD21) (from sds15)
7976 - move (old MC26) hfsplus to (MD30)
7977 * move (old MD26) quiet build fix to (MD31)
7978 * move (old MD27) drop gendisk fix to (MD32)
7979 - move (old MC27) viahss to (MD40)
7980 - move (old MC28) w9968cf to (MD50)
7981 * move (old MD28) i2c fix to (MD51)
7982 * remove misplaced semicolon (MD52) (from sds15)
7983 - move (old MC29) poldhu to (MD60)
7984 * move (old MD29) no CardServices fix to (MD61)
7985 - move (old MC30) fuse to (MD70)
7986 * move (old MD30) modversions fix to (MD71)
7987 - move (old MC32) svgalib_helper to (MD80)
7988 * move (old MD32) buildfixes to (MD81)
7989 - move (old MC33) ogfs to (MD90)
7990 - move (old MC34) iteraid to (ME00) and update to 1.45
7991 - move (old MC35) iteraid includes fix to (ME01)
7992 - move (old MC36) shft to (ME11)
7993 - fix BugZilla #10057
7994 * re-enable CONFIG_BLK_DEV_PIIX
7995 * disable pata piix driver support only for controllers
7996 covered by the libata piix driver (DI11)
7997 - add ipw2100-0.46_3 (DN50) (from sds15)
7998 * add docs, Kconfig and Makefile change (DN51) (from sds15)
7999 * add support for Fujitsu-Siemens Amilio 7400 (DN52) (from sds15)
8000 * add KConfig (DN53) (from sds15)
8001 * compile with HOSTAP CVS (DN54) (from sds15)
8002 - kernel command line needs to support more args (CA07)
8003 - fix zh_cn coding error in nls codepage 939 (FN10) (BugZilla #360)
8004 - fix pwc driver (DV13) (from sds15)
8005
8006 * Wed Jun 02 2004 Thomas Backlund <tmb@mandrake.org> 2.6.5-1.tmb.6mdk
8007 - update iteraid to 1.45 (MC41, MC42)
8008 * 64bit fixes, works on amd64
8009 - fix zh_cn coding error in nls codepage 939 (FN10) (BugZilla #360)
8010
8011 * Fri Apr 30 2004 Thomas Backlund <tmb@mandrake.org> 2.6.5-1.tmb.5mdk
8012 - iteraid 1.44
8013 - fix kernel-source include strip for ppc64
8014 - disable CONFIG_FB_ATY_XL_INIT in ppc
8015 - add workaround for ppp_mppe from 2.4 series
8016 - misc fixes and addons from 2.6.5-sls9 (Svetljo)
8017 * support for VIA CLE266 framebuffer
8018 * support for VIA6410 IDE and VIA6421 SATA
8019 * acpi 20040426, processor-load, link-tolerant
8020 * cpufreq 20040419, userspace warning
8021 * nForce2 ioapic fix
8022 * nForce2 idle lockups fix
8023
8024 * Fri Apr 16 2004 Thomas Backlund <tmb@mandrake.org> 2.6.5-1.tmb.4mdk
8025 - fix BOOT compiling
8026
8027 * Thu Apr 15 2004 Thomas Backlund <tmb@mandrake.org> 2.6.5-1.tmb.3mdk
8028 - fix posix-timers to have proper per-process scope
8029 - update Netraverse Win4Lin patch to 2.6.5
8030 - CAN-2004-0075-vicam (Svetljo)
8031 - CAN-2004-0177-ext3 (Svetljo)
8032 - CAN-2004-0109 isofs fix (Svetljo)
8033 - fix for synaptics (Svetljo)
8034
8035 * Tue Apr 13 2004 Danny Tholen <obiwan@mailmij.org> 2.6.5-1.tmb.2mdk
8036 - remove broken old hfs patches
8037 - patch orinoco drivers to fix Tx timeouts
8038 - patch for oops with tumbler/snapper cards
8039 - disable preempt on smp for ppc (broken)
8040
8041 * Tue Apr 6 2004 Thomas Backlund <tmb@mandrake.org> 2.6.5-1.tmb.1mdk
8042 - kernel.org 2.6.5
8043 - alsa 1.0.4 final (Svetljo)
8044 - alsa addons + fixes (Svetljo)
8045 - echoaudio 0.8.10pre1 (Svetljo)
8046 - acpi4asus 0.28 (Svetljo)
8047 - scsi updates (Svetljo)
8048 - Amd K8PowerNow ACPI (Svetljo)
8049 - ipw2100 v0.39 (Svetljo)
8050 - orinoco cvs 20040328 + monitor mode support (Svetljo)
8051 - tv / dvb card support updates (Svetljo)
8052 - cifs 1.0.5cvs (Svetljo)
8053 - ReiserFS updates/fixes (Svetljo)
8054 - packet writing, dvd-/+rw support (Svetljo)
8055 - TI cardbus IRQ routing fixes (Svetljo)
8056 - ipmi updates (Svetljo)
8057
8058 * Sun Apr 4 2004 Danny Tholen <obiwan@mailmij.org> 2.6.4-1.tmb.6mdk
8059 - ppc fixes and rebuild:
8060 * preempt fixes
8061 * syscall and keywest fixes
8062 * add therm_adm103x module
8063 * map sysrq on ibook/powerbook keyboard to f11
8064 * fix config
8065
8066 * Wed Mar 24 2004 Thomas Backlund <tmb@mandrake.org> 2.6.4-1.tmb.5mdk
8067 - fix iteraid module includes
8068 - change descriptions to Mandrakelinux
8069 - fix amd64 rpm building
8070 - add the missing drm_ioctl32 fixes for amd64
8071
8072 * Wed Mar 24 2004 Thomas Backlund <tmb@mandrake.org> 2.6.4-1.tmb.4mdk
8073 - add two new compile flags to src.rpm:
8074 * '--with win4lin' will compile the kernels with win4lin support,
8075 and the kernels will be named kernel-tmb-win4lin-...
8076 * '--with laptop' will compile the kernel with laptop-specific
8077 changes, currently the only change is to make USB support builtin,
8078 as it's currently needed for synaptics to work...
8079 - merge x86_64 spec changes from main kernels
8080 - use Dannys modules.description generation workaround until
8081 module-init-tools are updated...
8082
8083 * Tue Mar 23 2004 Thomas Backlund <tmb@mandrake.org> 2.6.4-1.tmb.3mdk
8084 - fix specfile rm -rf for ppc(64) and missing 'asm-' in *x86* includes
8085 * thanks to Danny for reporting this
8086 - remove orinoco 0.14alpha2 patch, it's to buggy at this stage...
8087 - drop lirc patch MD07, as it's merged in the updated MD05
8088 - fix ZS99 menu-cleanups patch to actually allow ppc builds (Danny)
8089 - new ppc(64) configs (Danny)
8090 - map sysrq to powerbutton on power and ibooks (Danny)
8091 - acpi 20040311 (Svetljo)
8092 - update packet writing support (Svetljo)
8093 - support ITE it8212 RAID chip (Svetljo)
8094
8095 * Sun Mar 21 2004 Thomas Backlund <tmb@mandrake.org> 2.6.4-1.tmb.2mdk
8096 - initial support for ppc64
8097 - make smaller kernel-source package
8098 * initial patch by Svetljo ;-)
8099 * add even more rm -rf to the spec file based on arches groups
8100 - groups are: alpha, ix86/amd64, ppc/ppc64, sparc/sparc64
8101 - rebuilding for one group removes sources for the 3 others
8102 - add newline to patch MD14
8103 * gets rid of 'patch unexpectedly ends in middle of line' message
8104 - selected sync with main 2.6.3-7mdk
8105 * x86_64 really disable IO-APIC on NVIDIA boards (gb)
8106 * edd get legacy parameters.
8107 * ide-scsi error handling fixes.
8108 * tun name fix.
8109 * at76c503a 0.12 Beta8 with MSI6978 Wlan PC2PC support.
8110 * d_alloc_root, vma corruption, ramdisk memleak fixes.
8111 * loop setup race fix.
8112 * AMD 768MPX bootmem fix.
8113 * bootsplash 3.1.4
8114 * fix ipmi build
8115 - drop CardServices Compability Layer (it's broken)
8116 - fix ini9100u build
8117 - fix kernel threading
8118 - forcedeth 0.25
8119 - orinoco 0.14alpha2
8120 - pcmcia 2.6.5-rc2
8121 - usb 2.6.5-rc2
8122 - ndiswrapper 0.6
8123 - ipw2100 v0.36
8124 - always show kernel version in oops, as people tend to forget
8125 to report this crucial information
8126 - drop patch DU02, it makes usb hang on shutdown
8127
8128 * Thu Mar 11 2004 Thomas Backlund <tmb@mandrake.org> 2.6.4-1.tmb.1mdk
8129 - resync with kernel.org 2.6.4
8130 * dropped 103 patches merged upstream
8131 - disable packet writing support :-( until it's updated to 2.6.4
8132
8133 * Thu Mar 11 2004 Thomas Backlund <tmb@mandrake.org> 2.6.3-4.tmb.3mdk
8134 - BadRAM support for ix86 (initial patch by Udo Rader)
8135 * fixed bug that disabled __free_page(page) if BadRAM is disabled
8136 * modified so it actually builds with tmb kernels
8137 * modified so that it's possible to build a kernel with it disabled
8138 * add BadRAM info to /proc/meminfo
8139 - clean 3rdparty mod_marvel tarball
8140 - remove 3rdparty Makefile with mrproper, as it's autogenerated
8141 - set CONFIG_8139_RXBUF_IDX=2, was set for embedded systems... :-(
8142 - ndiswrapper 0.5
8143 - Intel Pro Wireless 2100 (centrino) 0.29
8144 - update sis190 and sis900 nics
8145 - update pcnet32 to 1.28, fixes hangs
8146 - updated alpha and sparc64 configs (Stefan)
8147 - updated ppc config (Danny)
8148 - aic79xx 20040209 (svetljo)
8149 - acpi 2004020 (svetljo)
8150 - add support for scsi media changers (svetljo)
8151 - alsa 1.0.3 (svetljo)
8152 * update usx2y, msnd, pdplus patches
8153 * update to echoaudio 0.8.8rc1
8154 * add support for Intel8x0 and AMD768/8111 based modems
8155 * add support for RME Hammerfall DSP MADI soundcards
8156 * add support for ATI IXP 150/200/250 AC97 controller
8157 - ieee1394 firewire rev 1181 (svetljo)
8158 - update adaptec i2o dpt raid controllers (svetljo)
8159 - add support for HP OmniBook (svetljo)
8160 - update Permedia2 driver (svetljo)
8161 - update ATI IXP IDE support (svetljo)
8162 - fix matroxfb yres virtual (svetljo)
8163 - add support for modular vesafb (svetljo)
8164 - add support for tahoe 9xx serial cards (svetljo)
8165 - add support for Berkshire Products USB-PC watchdog (svetljo)
8166 - update video drivers: (svetljo)
8167 * cpia, v4l, bt832, tuner, bttv, saa7134, cx88, i2c, zoran
8168 * update documentation
8169 - add saa5546a Teletext support (svetljo)
8170 - update cifs to 1.04bk20040229 (svetljo)
8171 - ext3 support for online resizing (svetljo)
8172 - update hfs and add support for hfsplus (svetljo)
8173 - update umsdos support (svetljo)
8174 - add support for ufs2 filesystem (svetljo)
8175 - update udf support (svetljo)
8176 - update xfs support (svetljo)
8177 - hostap 0.2.1 cvs 20040303 (svetljo)
8178 - prism54 cvs 20040229 (svetljo)
8179 - prism25 0.2.1-pre20 (svetljo)
8180 - bcm5700 7.1.22 (svetljo)
8181 - at76c503a 0.12Beta7 (svetljo)
8182 - fuse 1.1 final (svetljo)
8183 - usbvision 0.9.6 (svetljo)
8184 - ogfs cvs20040302 (svetljo)
8185 - Gatos ATI AIW capture driver (svetljo)
8186 - cdfs 2.6.3 (svetljo)
8187 - NOARP ARP filter 2.0.0 (svetljo)
8188 - exaudio 1.58 (svetljo)
8189 - updates and addons for device-mapper: (svetljo)
8190 * transparent device encryption
8191 * support mutipath hardware
8192 * snapshot, mirror, kcopycd support
8193 * bad block relocation support
8194 * evms support
8195 * lock fixes, bugfixes, updates...
8196 - packet writing support (svetljo)
8197 - add sysfs classes ppp, raw, vc (svetljo)
8198 - add modular support to mce handler (svetljo)
8199 - dbus over netlink socket support (svetljo)
8200 - fix vc init race (svetljo)
8201 - add support for Linux event logging (svetljo)
8202 - mark mda console broken (svetljo)
8203 - cloop 2.0.1 (svetljo)
8204 - support IBM RAS Service processor (svetljo)
8205 - add support for Cirrus PD6729 Compatible bridge support (svetljo)
8206 - add support for IBM Power Linux RAID adapters (svetljo)
8207 - add support for Swappiness Autoregulation (svetljo)
8208 - add support for USB EPCAM Cameras (svetljo)
8209 - acx100 0.2.0-pre7 + 20040219 updates and fixes (svetljo)
8210 - spca5x video driver 20040228 (svetljo)
8211 - quickcam-vc 1.0.7 (svetljo)
8212 - fix Intel e1000 hang (svetljo)
8213 - update dvb support: (svetljo)
8214 * docs, saa7134, skystar, frontends, stv0299, tda1004x, av7110, ttusb
8215
8216 * Sun Mar 07 2004 Thomas Backlund <tmb@mandrake.org> 2.6.3-4.tmb.2mdk
8217 - quiet down atkbd warnings...
8218 - require gcc 3.3.2-6mdk or newer since I build with -funit-at-a-time
8219 - remove qla2xxx from 3rdparty as it's already in main kernel.org
8220 * move qla addons from 3rdparty to main scsi qla tree
8221 - fix kdb kernel debugger (Douglas Wilkins)
8222 * minor -> MINOR
8223 * kdb belongs in kern_table, not in fs_table
8224 - fix rmmod hang (svetljo)
8225 - add support for mppe (svtljo)
8226 - make quiet mode real quiet (svetljo)
8227 - block ide-scsi for ide cdroms (svetljo)
8228 - enable Silicon Image Serial ATA (svetljo)
8229 - fix 3rdparty merge lost in sync with main (svetljo)
8230
8231 * Mon Mar 02 2004 Thomas Backlund <tmb@mandrake.org> 2.6.3-4.tmb.1mdk
8232 - sync with main 2.6.3-4mdk
8233 * netfilter rtsp.
8234 * dcache security fix.
8235 * usb released wait on deregister bus.
8236 * usb-storage update.
8237 * ICH6 piix/libata support.
8238 * aacraid update.
8239 * sk98lin update.
8240 * mtp fusion update to 3.00.03.
8241 * ext3 fix access POSIX compiliant.
8242 * pm runtime deadlock fix.
8243 * sg direct io allowed as default.
8244 * bdclaim security oops fix.
8245 * blacklist Compaq ProLiant DL360 (acpi=off).
8246 * ipmi v30 (erwan request).
8247 - fixed configs for alpha and sparc64 (Stefan)
8248
8249 * Tue Feb 24 2004 Thomas Backlund <tmb@mandrake.org> 2.6.3-2.tmb.1mdk
8250 - sync with main 2.6.3-2mdk
8251 * bootsplash compil depend fix (chmou).
8252 * no more ide cdrom use ide-scsi.
8253 * fix libata pci quirks (remove 0x24d1).
8254 * parport updates.
8255 * enable ATM in BOOT kernel (tv request).
8256 - a few fixes from alsa cvs
8257 * emu10k, ac97, cmipci
8258
8259 * Tue Feb 24 2004 Thomas Backlund <tmb@mandrake.org> 2.6.3-1.tmb.3mdk
8260 - make sure scsi initio is built too
8261 - add -funit-at-a-time back
8262
8263 * Sun Feb 22 2004 Thomas Backlund <tmb@mandrake.org> 2.6.3-1.tmb.2mdk
8264 - fix bootsplash
8265
8266 * Sun Feb 22 2004 Thomas Backlund <tmb@mandrake.org> 2.6.3-1.tmb.1mdk
8267 - fully synced with kernel-2.6.3.1mdk
8268 - build i686-up-4GB kernel too
8269 - i2c fixes
8270 - add Asus P4B533-V to pci quirks
8271
8272 * Mon Feb 16 2004 Thomas Backlund <tmb@mandrake.org> 2.6.2-1.tmb.2mdk
8273 - selected fixes from kernel-2.6.2.3mdk
8274 * pmpbios off by default
8275 * 8259 timer ack fix
8276 * selinux enforce node fix
8277 * xattr error checking fix
8278 * smb uid/gid permission fix
8279 - modify alpha.config (stefan)
8280 - disable ia64 support
8281 - drop CP02_nforce2_disconnect_quirk
8282 * raises cpu temp about 6 degrees C according to acpi-devel ML :(
8283 - drop CP03_nforce2_apic_io-edge_fix
8284 * does not work anymore
8285 - redo CP05 for correct patches to mpparse on ix86 and amd64
8286 - drop CA10_pcix-enhanced.patch
8287 * this is the one that breaks nforce2 systems
8288 - drop DA20_sysfs-class-10-vc.patch
8289 * this still triggers the tty locking race (akpm)
8290 - make sure kernel-source is readable by all (chmod -R a+rX)
8291 - disable -funit-at-a-time for now, seems to break current gcc
8292
8293 * Sun Feb 8 2004 Thomas Backlund <tmb@mandrake.org> 2.6.2-1.tmb.1mdk
8294 - fully synced with kernel-2.6.2.1mdk
8295 - add 2.6.3-rc1 as a patch (so we don't change version)
8296 * includes alsa 1.0.2c
8297 * network fixes, netfilter fixes
8298 * sisfb updated
8299 * scsi fixes, aha152x fixes
8300 * + lots of other fixes...
8301 - add sparc/sparc64 configs & fixes done on sparc.eijk.nu
8302 - switch on smp and BOOT for sparc/sparc64
8303 - add alpha configs & fixes done on alpha.eijk.nu
8304 - switch on smp and BOOT for alpha
8305 - modifications to lufs 0.9.7 (jaco)
8306 * Preserve LUFS filesystem uid/gid's if configured
8307 * Allow external links if configured
8308 - usb pwc 9.0 beta1 (request by Warly)
8309 - pci.ids 20040207tmb
8310 - build i386 and amd64 with -funit-at-a-time if compiler supports it
8311 - updated requirements for build / install:
8312 * module-init-tools >= 3.0-0.pre9.2mdk
8313 * modutils >= 2.4.26-3mdk
8314 * mkinitrd >= 3.5.18-3mdk
8315 * bootloader-utils >= 1.6-4mdk
8316
8317 * Wed Jan 28 2004 Thomas Backlund <tmb@mandrake.org> 2.6.2-0.rc2.1.tmb.2mdk
8318 - fix pre/rc kernel versioning...
8319 - redo DA10: alsa 1.0.2 patch
8320 * alsa developers reuploaded the tarball with a few fixes
8321 without other notice than the bugtracker :(
8322 * make sure we display correct alsa version: 1.0.2
8323
8324 * Tue Jan 27 2004 Thomas Backlund <tmb@mandrake.org> 2.6.2-0.rc2.1.tmb.1mdk
8325 - 2.6.2-rc2
8326 - alsa 1.0.2
8327 - forcedeth 0.22
8328 - squashfs 1.3r3
8329 - pci.ids 20040125tmb
8330 - sync with 2.6.2-0.rc1.1mdk
8331 * force inline memcmp when use Os (gb)
8332 * slim BOOT kernel.
8333 * ndis wrapper 0.4.
8334 * acpi 20031203.
8335 * raid6 20040107.
8336 * nfs/nfsd updates.
8337
8338 * Wed Jan 20 2004 Thomas Backlund <tmb@mandrake.org> 2.6.1-1.tmb.10mdk
8339 - argh... me sucks... agp stuff should stay as modules
8340
8341 * Tue Jan 20 2004 Thomas Backlund <tmb@mandrake.org> 2.6.1-1.tmb.9mdk
8342 - 2.6.1-bk6
8343 - sync with -mm5
8344 - dropped ramdisk leak patches CF03, CF04 (mm5: was wrong)
8345 - dropped DA32_ide-siimage-stack-fix (mm5: needs to be reworked)
8346 - dropped ppc64 fixes CB01-CB07 (merged upstream)
8347 - dropped CF01, CF02, DA33, DA41, DF02, DF03, DN21 (merged upstream)
8348 - dropped remove_CardServices DO01 - DO07 (merged upstream)
8349 - dropped v4l patches DV21-DV30 (merged upstream)
8350 - dropped ext2/3 fixes FE01-FE04, xfs FX01 (merged upstream)
8351 - dropped BA01, BA03, BI03, FA05, FJ01, ME01, ME02 (merged upstream)
8352 - dropped acpi CE05-CE08, kdb CK01-CK03, CM01, CM03 (merged upstream)
8353 - dropped sysfs patches MS01-MS05, MS07-MS09 (merged upstream)
8354 - resync DA10_alsa_1.0.1, DA22_alsa_bt87x
8355 - resync DC01 pci.ids.tmb
8356 - resync FA04_invalidate_inodes-speedup
8357 - resync FA08_O_DIRECT-race-fixes-rollup
8358 - CA02: define MAX_INIT_ARGS/ENVS 32 to support more kernel args (Jaco)
8359 - FS01: upgrade supermount-ng to 2.0.4-2.6.1
8360
8361 * Mon Jan 19 2004 Thomas Backlund <tmb@mandrake.org> 2.6.1-1.tmb.8mdk
8362 - 2.6.1-bk4
8363 - drop patches: (merged upstream)
8364 * DA01-DA07, DA19, DA36-DA38, DF05
8365 - resynced patches DV01-DV16 and moved to DV20-DV30 (v4l)
8366 - make some more drivers modules instead of builtin...
8367 - from -mm4:
8368 * update libata 0.52
8369 * pcmcia CardService updates
8370 * sysfs support
8371 * readd alsa sysfs
8372 * md blockdevice fixes
8373 * restore HT detection algoritm
8374 * ramdisk and fixes and cleanup
8375 * ali m1533 dma hang fix
8376 * change BUG to BUG_ON calls for code speedup
8377 * laptop mode support
8378 * fix msi megaraid id
8379 * fix keyboard scancode to keep 2.4 compability
8380 * fix kernel-locking doc tmplate
8381 - scsi aic79xx 20031222 (svetljo)
8382 - cifs 1.00 (svetljo)
8383 - 3rdparty qc-usb 0.6.0 (svetljo)
8384
8385 * Tue Jan 13 2004 Thomas Backlund <tmb@mandrake.org> 2.6.1-1.tmb.7mdk
8386 - fix changelog for 5mdk
8387 - add initial support more arches
8388 * alpha, ia64, x86_64, sparc, sparc64
8389 * add configs for all above (based on 2.6.1 defconfigs)
8390 * enable them in the scripts
8391 * please tell me what you want changed in the configs,
8392 as I don't have the h/w myself...
8393 - drop loop related patches DB21-DB27 gotten from -mm as they
8394 are broken (svetljo)
8395 - gzip modules to minimize needed space for installed kernel
8396 - make apm support builtin, not as module
8397
8398 * Mon Jan 12 2004 Thomas Backlund <tmb@mandrake.org> 2.6.1-1.tmb.6mdk
8399 - back out drm/dri 20040107cvs (seems to cause xfree hangs)
8400 - fix changelog typos for 1mdk to 4mdk
8401
8402 * Sun Jan 11 2004 Thomas Backlund <tmb@mandrake.org> 2.6.1-1.tmb.5mdk
8403 - drop pnp-fix-1, makes kernel oops with Bad EIP (svetljo)
8404 - dont depend on udev and sysfsutils, atleast for now (svetljo)
8405
8406 * Sun Jan 11 2004 Thomas Backlund <tmb@mandrake.org> 2.6.1-1.tmb.4mdk
8407 - keep BLK_DEV_MD builtin, not as a module
8408
8409 * Sun Jan 11 2004 Thomas Backlund <tmb@mandrake.org> 2.6.1-1.tmb.3mdk
8410 - another quick fix... (me sux again :-()
8411 - fix 3rdparty config... (svetljo)
8412 - fix unpackaged files
8413 - disable BLK_DEV_IDEPNP
8414 - sync some more of the configs from kernel-2.6 in contribs
8415
8416 * Sat Jan 10 2004 Thomas Backlund <tmb@mandrake.org> 2.6.1-1.tmb.2mdk
8417 - bugfix for broken sound, me sux :-(
8418 - drop the alsa sysfs patch until all sysfs patches are added...
8419
8420 * Sat Jan 10 2004 Thomas Backlund <tmb@mandrake.org> 2.6.1-1.tmb.1mdk
8421 - 2.6.1
8422 - add --with nosrc option to build nosrc.rpm
8423 - fix typo in description (jaco)
8424 - disable CONFIG_REISERFS_CHECK
8425 - disable IEEE1394_OUI_DB
8426 - disable MTD_DOC2000 (wont build)
8427 - build agp drivers as modules
8428 - dropped a lot of patches (merged upstream):
8429 * CA09-CA11, CA13, CA15, CA17, CA19-CA24, CA27-CA28, CA35, CA37-CA40,
8430 * CA43-CA44, CB10, CC01, CI01, CM04-CM09, CS01, DA04, DA11-DA12,
8431 * DA16, DA18, DA21-DA22, DB01-DB04, DB16-DB23, DF03, DI01-DI02,
8432 * DM01-DM02, DN01, DN05, DP01, DS01, DU01, DV13-DV14, FA01, FA03,
8433 * FA07, FA09, FE01-FE03, FQ01
8434 - dropped patches that needs verification:
8435 * CA08, CA12, CA14, CA33, CA36, CB11-CB12, DA15, DA20,
8436 * DB05-DB06, DB08
8437 - rediffed patches:
8438 * DS02, DV02
8439 - replaced patches with newer ones:
8440 * DB09-DB14 replaced with DB21-DB27 (from mm1)
8441 * DA17 with DA37-DA38
8442 - forcedeth 0.20
8443 - pci.ids 20040109tmb
8444 - supermount-ng 2.0.3a
8445 - ieee1394 rev 1092
8446 * typos fixed, updated oui.db
8447 - ext2 / ext3 fixes (from mm1)
8448 * inode fixes, debug fixes, next generation fixes
8449 - libata sata_sil 0.52 updates (from mm1)
8450 * support 3114, add another 3112 model (from mm1)
8451 - add support for radeon Yd (from mm1)
8452 - drm/dri 20040107 cvs (from mm1)
8453 - NetGear FA311 mac byte swap address fix (from mm1)
8454 - scsi fixes (from mm1)
8455 * inia100 fixes
8456 * qla1280 fixes
8457 - misc fixes (from mm1)
8458 * rmmod race fix
8459 * rtc leak fix
8460 * vc init race fix
8461 - nforce2 fixes for disconnect_quirk, io_apic edge (svetljo)
8462 - alsa 1.0.1 (from mm1)
8463 - alsa 1.0.1 addons (svetljo)
8464 * nforce 3 support
8465 * add sysfs class
8466 * aureal/vortex/vortex2
8467 * usx2y, pdplus, mixart, msnd, pdaudio, bt87x
8468 * echoaudio 0.8.3
8469 - hpt374 autotune fix (svetljo)
8470 - 3rparty drivers (svetljo)
8471 * bcm5700 7.1.9
8472 * bcm4400 3.0.7
8473 * qla2xxx-8.00.00b8
8474 * ivtv-281103cvs
8475 * hfsplus_20030930
8476 * viahss-0.92
8477 * ogfs
8478 * w9968cf-1.24
8479 * vt_ar5k-20030509
8480 * fuse-1.1_pre1
8481 * airo_mpi-20031220
8482 * svgalib_helper-1.9.18
8483 - 3rdparty Makefile, Kconfig, misc fixes (svetljo)
8484
8485 * Thu Jan 1 2004 Thomas Backund <tmb@mandrake.org> 2.6.0-1.tmb.1mdk
8486 - first kernel-tmb based on 2.6.0 final made by Nicholas
8487 - squashfs 1.3r2
8488 - pci.ids 2003-12-09 + my addons
8489 - use some specfile and scripts magic from Juans 2.4.spec
8490 - fix postun macros
8491 - merge changes from contrib kernel-2.6-2.6.0-1mdk
8492 * thanks to Oliver Blin and Oliver Thauvin for their great work
8493 * keep preemptive and cramfs buitin for now...
8494 * supermount 2.0.3
8495
8496 * Thu Dec 18 2003 Nicolas Planel <nplanel@mandrakesoft.com> 2.6.0-1mdk
8497 - 2.6.0 final version ;)
8498 - ndis wrapper 0.3.
8499 - fix uss725.
8500
8501 * Wed Dec 17 2003 Nicolas Planel <nplanel@mandrakesoft.com> 2.6.0-0.5mdk
8502 - bk13.
8503 - acecad 1.3.
8504 - uss725.
8505 - bttv videodev i2c videobuf updates 20031216.
8506 - dvb timeout fix.
8507 - mod_marvel (Kevin O'Connor).
8508 - matrox_fb fixes (Kevin O'Connor).
8509 - forcedeth v19.
8510 - kdb build fix.
8511 - add siimage 3114 support.
8512 - prism25 0.2.1-pre16.
8513 - qc-usb cvs20031216.
8514
8515 * Fri Dec 12 2003 Nicolas Planel <nplanel@mandrakesoft.com> 2.6.0-0.4mdk
8516 - bk8.
8517 - add vt|ar5k wireless chipset support.
8518 - dos partition table consistency.
8519 - warly touch boot logo ;)
8520 - ndis wrapper 0.2. (only for up kernel)
8521 - alsa 1.0.0rc2.
8522 - agpgart and mousedev as built-in.
8523
8524 * Thu Dec 04 2003 Nicolas Planel <nplanel@mandrakesoft.com> 2.6.0-0.3mdk
8525 - bk1:
8526 * ide-scsi.c uninitialized variable
8527 * x86 kernel page fault error codes
8528 * lost wakeups problem
8529 * missing initialization of /proc/net/tcp seq_file
8530 - rework merge version.h (now all kernel have UTS_RELEASE defined)
8531 - 2.6.0-test11q2 :
8532 * libata update
8533 * pwc 8.12
8534 * prism54 cvs20031203
8535 * alsa 1.0.0rc1
8536
8537 * Fri Nov 28 2003 Nicolas Planel <nplanel@mandrakesoft.com> 2.6.0-0.2mdk
8538 - re-support on the fly module building (great for properitary packages)
8539 - 2.6.0-test11q2 :
8540 * lots of mm patches
8541 * import somes 3rdparty and patches : (svetoslav)
8542 * lirc
8543 * at76c503a
8544 * bcm5700
8545 * dfg1394
8546 * dxr3
8547 * iscsi-mod
8548 * lufs
8549 * ov511
8550 * prism25
8551 * prism54
8552 * qc-usb
8553
8554 * Mon Nov 24 2003 Nicolas Planel <nplanel@mandrakesoft.com> 2.6.0-0.1mdk
8555 - First version to move on kernel-2.6.0. (aka: ready for a new age).
8556 - 2.6.0-test10q1 :
8557 * only i386 config for the moment
8558 * bootsplash 3.1.3
8559 * mdk logo
8560 * forcedeth v18
8561 * adiusbadsl 1.0.4 (untested)
8562 * acx100 0.2.0pre6
8563 * hostap 0.1.2
8564
8565 # Local Variables:
8566 # rpm-spec-insert-changelog-version-with-shell: t
8567 # End:

  ViewVC Help
Powered by ViewVC 1.1.30