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

Contents of /cauldron/kernel-tmb/pristine/SPECS/kernel-tmb.spec

Parent Directory Parent Directory | Revision Log Revision Log


Revision 201830 - (show annotations) (download)
Thu Jan 26 09:58:51 2012 UTC (12 years, 1 month ago) by tmb
Original Path: cauldron/kernel-tmb/current/SPECS/kernel-tmb.spec
File size: 314382 byte(s)
- update to 3.2.2 (CVE-2012-0056)
- update patches:
    * CK01: Con Kolivas 3.2-ck1 patchset
    * KP01: TuxOnIce 3.2.1


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

  ViewVC Help
Powered by ViewVC 1.1.30