source: projects/specs/branches/6/k/kernel/kernel34-vl.spec @ 9272

Revision 9272, 125.1 KB checked in by iwamoto, 9 years ago (diff)

kernel: CVE-2013-6885, CVE-2014-8133, CVE-2014-9419, CVE-2014-9529, CVE-2014-9584

Line 
1%define _noVersionedDependencies 1
2%define _minimum_patches 0
3%define _apply_drm_patches 1
4
5%if "%{?_dist_release}" > "vl6"
6%global kmod kmod
7%else
8%global kmod module-init-tools
9%endif
10
11Summary: The Linux kernel (the core of the Linux operating system)
12Summary(ja): Linux カーネル (Linux オペレーティングシステムの心臓部分)
13
14# What parts do we want to build?  We must build at least one kernel.
15# These are the kernels that are built IF the architecture allows it.
16
17%define buildup 1
18%define buildpae 0
19%define builddoc 0
20%define buildsource 0
21
22%define with_headers 1
23%define with_firmware 0
24
25# Versions of various parts
26
27#
28# Polite request for people who spin their own kernel rpms:
29# please modify the "release" field in a way that identifies
30# that the kernel isn't the stock distribution kernel, for example by
31# adding some text to the end of the version number.
32#
33%define sublevel 4
34%define patchlevel 105
35%define kversion 3.%{sublevel}
36%define rpmversion 3.%{sublevel}.%{patchlevel}
37%define release 3%{?_dist_release}
38
39%define make_target bzImage
40%define hdrarch %_target_cpu
41%define asmarch %_target_cpu
42
43%define KVERREL %{rpmversion}-%{release}
44
45# groups of related archs
46%define all_x86 i686
47%define all_ppc ppciseries ppcpseries ppc ppc64
48
49# Override generic defaults with per-arch defaults
50
51# don't build noarch kernels or headers
52%ifarch noarch
53%define builddoc 1
54%define buildsource 1
55%define buildup 0
56%define buildpae 0
57%define with_headers 0
58%define with_firmware 0
59%define all_arch_configs $RPM_SOURCE_DIR/kernel-%{kversion}-*.config
60%endif
61
62%ifarch i686
63%define buildpae 1
64%endif
65
66# build x86 headers on i686 build
67# build noarch package with i686 build
68%ifarch i686
69%define with_headers 1
70%define buildsource 1
71%define builddoc 1
72%define with_firmware 0
73%endif
74
75%ifarch %{all_x86}
76%define all_arch_configs $RPM_SOURCE_DIR/kernel-%{kversion}-i686*.config
77%define image_install_path boot
78%define hdrarch i386
79%define asmarch x86
80%endif
81
82%ifarch x86_64
83%define all_arch_configs $RPM_SOURCE_DIR/kernel-%{kversion}-x86_64*.config
84%define image_install_path boot
85%define asmarch x86
86%endif
87
88%ifarch ppc64
89%define all_arch_configs $RPM_SOURCE_DIR/kernel-%{kversion}-ppc64*.config
90%define image_install_path boot
91%define make_target bzImage zImage.stub
92%define hdrarch powerpc
93%define asmarch powerpc
94%endif
95
96%ifarch ppc64iseries
97%define all_arch_configs $RPM_SOURCE_DIR/kernel-%{kversion}-ppc64*.config
98%define image_install_path boot
99%define make_target bzImage
100%endif
101
102%ifarch sparc
103%define all_arch_configs $RPM_SOURCE_DIR/kernel-%{kversion}-sparc.config
104%endif
105
106%ifarch sparc64
107%define all_arch_configs $RPM_SOURCE_DIR/kernel-%{kversion}-sparc64*.config
108%define asmarch sparc
109%endif
110
111%ifarch ppc
112%define all_arch_configs $RPM_SOURCE_DIR/kernel-%{kversion}-ppc*.config
113%define image_install_path boot
114%define make_target vmlinux
115%define hdrarch powerpc
116%define asmarch powerpc
117%endif
118
119%ifarch ia64
120%define all_arch_configs $RPM_SOURCE_DIR/kernel-%{kversion}-ia64.config
121%define image_install_path boot/efi/EFI/redhat
122%endif
123
124#
125# Three sets of minimum package version requirements in the form of Conflicts:
126# to versions below the minimum
127#
128
129#
130# First the general kernel 2.6 required versions as per
131# Documentation/Changes
132#
133%define kernel_dot_org_conflicts  ppp <= 2.3.15, pcmcia-cs <= 3.1.20, isdn4k-utils <= 3.0, mount < 2.10r-5, nfs-utils < 1.0.3, e2fsprogs < 1.29, util-linux < 2.10, jfsutils < 1.0.14, reiserfsprogs < 3.6.3, xfsprogs < 2.1.0, procps < 2.0.9, oprofile < 0.5.3
134
135#
136# Then a series of requirements that are distribution specific, either
137# because we add patches for something, or the older versions have
138# problems with the newer kernel or lack certain things that make
139# integration in the distro harder than needed.
140#
141%define package_conflicts  cipe < 1.4.5, kudzu <= 0.92, initscripts < 6.51, dev < 3.2-7, iptables < 1.2.5-3, bcm5820 < 1.81, nvidia-rh72 <= 1.0 ipw2200-firmware < 2.3 selinux-policy-targeted < 1.23.16-1
142
143#
144# Several packages had bugs in them that became obvious when the NPTL
145# threading code got integrated.
146#
147%define nptl_conflicts SysVinit < 2.84-13, pam < 0.75-48, vixie-cron < 3.0.1-73, privoxy < 3.0.0-8, spamassassin < 2.44-4.8.x,  cups < 1.1.17-13
148
149#
150# We moved the drm include files into kernel-headers, make sure there's
151# a recent enough libdrm-devel on the system that doesn't have those.
152#
153%define kernel_headers_conflicts libdrm-devel < 2.4.0-4
154
155#
156# Packages that need to be installed before the kernel is, because the %post
157# scripts use them.
158#
159%define kernel_prereq  fileutils, %{kmod}, initscripts >= 8.80, mkinitrd >= 6.0.93, linux-firmware >= 20110601-1
160
161Name: kernel
162Group: System Environment/Kernel
163License: GPLv2
164Version: %{rpmversion}
165Release: %{release}
166ExclusiveArch: noarch i686 x86_64 %{all_ppc}
167ExclusiveOS: Linux
168Provides: kernel = %{rpmversion}
169Provides: kernel26 = %{rpmversion}
170Provides: kernel-drm = 4.3.0
171Provides: kernel-drm-nouveau = 16
172Provides: kernel-%{_target_cpu} = %{rpmversion}-%{release}
173Provides: alsa-driver = 1.0.20
174Requires(pre): %{kernel_prereq}
175Conflicts: %{kernel_dot_org_conflicts}
176Conflicts: %{package_conflicts}
177Conflicts: %{nptl_conflicts}
178# We can't let RPM do the dependencies automatic because it'll then pick up
179# a correct but undesirable perl dependency from the module headers which
180# isn't required for the kernel proper to function
181AutoReqProv: no
182#
183# List the packages used during the kernel build
184#
185BuildRequires: %{kmod}
186BuildRequires: patch >= 2.5.4, bash >= 2.03, tar
187BuildRequires: coreutils
188BuildRequires: bzip2, gzip, xz
189BuildRequires: xz-lzma-compat
190BuildRequires: findutils, m4, perl, make >= 3.78, gnupg, diffutils
191BuildRequires: net-tools
192BuildRequires: gcc >= 3.3.5, binutils >= 2.15
193
194Vendor:         Project Vine
195Distribution:   Vine Linux
196Packager:       daisuke, shaolin, iwamoto
197
198Source0: ftp://ftp.kernel.org/pub/linux/kernel/v3.x/linux-%{kversion}.tar.xz
199
200Source10: COPYING.modules
201Source11: genkey
202
203Source21: kernel-%{kversion}-i686.config
204Source22: kernel-%{kversion}-i686-pae.config
205Source23: kernel-%{kversion}-x86_64.config
206Source32: kernel-%{kversion}-ppc.config
207
208
209# Source 100 - 500 for Vine Linux
210# fb boot logo
211Source100: logo_vine_clut224.ppm
212
213#
214# Patches 0 through 100 are meant for core subsystem upgrades
215#
216%if %{patchlevel}
217Patch1: patch-%{kversion}.%{patchlevel}.xz
218# Patch11: patch-3.4.88-rc1.xz
219%endif
220
221# Patches 100 through 500 are meant for architecture patches
222# 200 - 299   x86(-64)
223
224# atom errata
225# Patch280: linux-2.6-x86-workaround-failures-on-intel-atom.patch
226
227
228# 300 - 399   ppc(64)
229Patch350: linux-2.6.23-windtunnel-printk.patch
230
231#
232# Patches 800 through 899 are reserved for bugfixes to the core system
233# and patches related to how RPMs are build
234#
235Patch800: linux-2.6-build-nonintconfig.patch
236# Patch810: linux-3.4_revert_DFbit.patch
237#
238# Patches 1000 to 5000 are reserved for bugfixes to drivers and filesystems
239#
240
241# NIC driver updates
242
243Patch1394: linux-2.6-zd1211rw-gw-us54gxs.patch
244# tg3 add new id (57766,5778[26])
245Patch1430: linux-3.4.7-tg3-support-newid.patch
246# asix: Adds support for Lenovo 10/100 USB dongle
247Patch1440: linux-3.4.62_support_Lenovo_USB_Ether_dongle.patch
248# atheros alx driver
249Patch1450: linux-3.4_add_support_atheros_alx.patch
250# e1000e update
251Patch1460: linux-3.4_update_e1000e_3.1.0.2.patch.xz
252# Patch1460: linux-3.4_update_e1000e_3.0.4.patch
253# Patch1460: linux-3.4.94_update_e1000e_2.5.4.patch
254# fix fmvj18x_cs
255Patch1470: linux-3.4_fix_fmvj18x_cs.patch
256# rtlwifi fix
257# Patch1480: linux-3.4.103_rtl8192ce-fix-null-dereference-in-watchdog.patch
258
259# Misc bits.
260Patch1610: linux-2.6.23-atkbd-dell-multimedia.patch
261Patch1630: linux-2.6.23-module_version.patch
262Patch1650: linux-2.6-input-kill-stupid-messages.patch
263Patch1770: linux-2.6-valid-ether-addr.patch
264Patch1830: linux-2.6-w1-hush-debug.patch
265Patch1840: linux-2.6-defaults-pci_no_msi.patch
266Patch1850: linux-2.6-silence-fbcon-logo.patch
267Patch1860: linux-2.6-silence-acpi-blacklist.patch
268Patch1890: linux-2.6.35-mmc-sdhci-update.patch
269
270Patch1900: linux-2.6.35-quirk-lenovo-itpm.patch
271
272# initial MBA Mid2011 hacky support
273Patch1910: linux-3.0.4_macbookair_middle2011_fixedmode_hackyhack.patch
274
275# GC-WB300D BT
276# Patch1920: linux-3.4_add_support_GC-WB300D_bt_ath3k.patch
277
278# VM bits
279Patch2001: linux-2.6-vm-silence-atomic-alloc-failures.patch
280
281# IDE
282Patch2010: linux-3.2-ide-piix-prefer-ata_piix.patch
283
284# SCSI
285Patch2301: linux-2.6.23-VMWare5-fix-LSI_emulation.patch
286Patch2504: linux-2.6-at76.patch
287
288# DRM
289# drm update from ubuntu maverick kernel
290Patch2700: linux-2.6.35-drm-update.patch
291# ignore invalid EDID extensions
292# https://bugs.freedesktop.org/show_bug.cgi?id=31154
293Patch2710: linux-2.6-drm-ignore-invalid-EDID-extensions.patch
294
295#
296# External drivers that are about to get accepted upstream
297#
298
299#
300# 6000 to 10000 is for Vine Linux
301#
302
303# unionfs 2.5.10
304# http://www.am-utils.org/project-unionfs.html
305Patch6030: unionfs-2.5.10_for_3.2.patch
306Patch6031: unionfs-2.5.8-open-unlink-ftruncate-crash-fix.patch
307
308# aufs3
309Patch6100: linux-3.4-aufs3.patch
310#Patch6101: linux-3.2-aufs3-proc_map.patch
311
312#
313# TuxOnIce (formerly suspend2) patch
314%define tuxonice_version 3.2.1-for-linux-3.4.1xx
315Patch9000: tuxonice-%{tuxonice_version}.patch
316#Patch9010: tuxonice-build-fix-on-powerpc.patch
317
318#
319# 10000 to 20000 is for stuff that has to come last due to the
320# amount of drivers they touch. But only these should go here.
321# Not patches you're too lazy for to put in the proper place.
322#
323Patch10000: linux-2.6-LINUX_COMPILER-LANG_C.patch
324
325# Security fix patches
326Patch20000: linux-3.4.36_CVE-2012-2100.patch
327Patch20010: linux-3.4.105_CVE-2014-9090.patch
328Patch20020: linux-3.4.x_CVE-2014-7841.patch
329Patch20030: linux-3.4.x_CVE-2014-8369.patch
330Patch20040: linux-3.4.x_CVE-2014-8884.patch
331Patch20050: linux-3.4_CVE-2013-6885.patch
332Patch20060: linux-3.4.105_CVE-2014-9419.patch
333Patch20070: linux-3.4_CVE-2014-8133.patch
334Patch20080: linux-3.4_CVE-2014-9529.patch
335Patch20090: linux-3.4_CVE-2014-9584.patch
336
337# END OF PATCH DEFINITIONS
338
339BuildRoot: %{_tmppath}/kernel-%{KVERREL}-root
340
341%description
342The kernel package contains the Linux kernel (vmlinuz), the core of any
343Linux operating system.  The kernel handles the basic functions
344of the operating system:  memory allocation, process allocation, device
345input and output, etc.
346
347%description -l ja
348kernel パッケージには、Linux オペレーティングシステムの心臓部分とも
349いえる Linux カーネル (vmlinuz) が含まれています。
350カーネルは,メモリ管理,プロセス管理,デバイスの入出力等,オペレーティング
351システムの基本的な部分を司ります。
352
353%package devel
354Summary: Development package for building kernel modules to match the kernel.
355Summary(ja): 特定のバージョンのカーネル用のモジュールを構築するための開発パッケージ
356Group: System Environment/Kernel
357AutoReqProv: no
358Provides: kernel26-devel-%{_target_cpu} = %{rpmversion}-%{release}
359
360%description devel
361This package provides kernel headers and makefiles sufficient to build modules
362against the kernel package.
363
364### kernel-source
365%package source
366Summary: The source code for the Linux kernel.
367Summary(ja): Linux カーネルのソースコード
368Group: Development/Libraries
369BuildArch: noarch
370Requires(pre): fileutils
371Requires: make >= 3.78
372Requires: gcc >= 3.2
373Requires: binutils
374# documentations
375Requires: kernel-doc = %{rpmversion}-%{release}
376# for menuconfig
377Requires: ncurses-devel readline-devel
378# for gconfig
379#Requires: gtk2-devel
380# for xconfig
381#Requires: qt-devel
382
383%description source
384The kernel-source package contains the source code files for the Linux
385kernel. The source files can be used to build a custom kernel that is
386smaller due only including drivers for your particular hardware, if you are
387so inclined (and you know what you're doing). The customisation guide in the
388documentation describes in detail how to do this. This package is neither
389needed nor usable for building external kernel modules for linking into the
390default kernel.
391
392If you use "gconfig" to configure the kernel, install gtk2-devel package.
393If you use "xconfig" to configure the kernel, install qt-devel package.
394
395%description source -l ja
396kernel-source パッケージには Linux カーネルのソースコードが含まれて
397います.カーネルのソースコードは多くの C プログラムの作成に必要です.
398カーネルのソースコードに定義されている制限に依存することがあるからです.
399このソースコードを使って,あなたのシステム向けにチューンアップした
400カスタムカーネルを作成することもできます.
401
402"gconfig" をつかってカーネルのコンフィグレーションを行う場合は、gtk2-devel
403パッケージをインストールしてください。
404"xconfig" をつかってカーネルのコンフィグレーションを行う場合は、qt-devel
405パッケージをインストールしてください。
406
407### kernel-doc
408%package doc
409Summary: Various documentation bits found in the kernel source.
410Summary(ja): カーネルソース内のさまざまなドキュメント群
411Group: Applications/Documentation
412BuildArch: noarch
413
414%description doc
415This package contains documentation files from the kernel
416source. Various bits of information about the Linux kernel and the
417device drivers shipped with it are documented in these files.
418
419You'll want to install this package if you need a reference to the
420options that can be passed to Linux kernel modules at load time.
421
422%description doc -l ja
423このパッケージにはカーネルソースに含まれているドキュメントが
424収められています.Linux カーネルやデバイスドライバに関する様々な
425情報がこのドキュメントには記されています.
426
427Linux カーネルモジュールを読み込む際の引数を調べたい場合等,
428このパッケージをインストールすると良いでしょう.
429
430### kernel-headers
431%package headers
432Summary: Header files for the Linux kernel for use by glibc
433Summary(ja): Linux カーネルのヘッダファイル
434Group: Development/System
435Obsoletes: glibc-kernheaders
436Provides: glibc-kernheaders = 3.0-46
437Conflicts: %{kernel_headers_conflicts}
438
439%description headers
440Kernel-headers includes the C header files that specify the interface
441between the Linux kernel and userspace libraries and programs.  The
442header files define structures and constants that are needed for
443building most standard programs and are also needed for rebuilding the
444glibc package.
445
446%description headers -l ja
447kernel-headers パッケージには、Linux カーネルとユーザスペースプログラムや
448ライブラリとの間のインタフェースを規定する C ヘッダファイルが収録されて
449います。ヘッダファイルではデータ構造や定数値が定義されており、多くの
450プログラムをコンパイルする際に必要となります。また、glibc パッケージを
451リビルドする際にも必要となるものです。
452
453%package firmware
454Summary: Firmware files used by the Linux kernel
455Summary(ja): Linux kernel で使用されているファームウェア
456Group: Development/System
457License: GPL+ and GPLv2+ and MIT and Redistributable, no modification permitted
458BuildArch: noarch
459
460%description firmware
461Kernel-firmware includes firmware files required for some devices to
462operate.
463
464%description firmware -l ja
465Kernel-firmware にはいくつかのデバイスを利用するために必要なファームウェアファイルが
466含まれています。
467
468%package pae
469Summary: The Linux kernel compiled for PAE capable machines.
470Summary(ja): PAE 対応マシン用にコンパイルされた Linux カーネル
471
472Group: System Environment/Kernel
473Provides: kernel = %{rpmversion}
474Provides: kernel26 = %{rpmversion}
475Provides: kernel-drm = 4.3.0
476Provides: kernel-%{_target_cpu} = %{rpmversion}-%{release}pae
477Provides: alsa-driver = 1.0.20
478Requires(pre): %{kernel_prereq}
479Conflicts: %{kernel_dot_org_conflicts}
480Conflicts: %{package_conflicts}
481Conflicts: %{nptl_conflicts}
482# We can't let RPM do the dependencies automatic because it'll then pick up
483# a correct but undesirable perl dependency from the module headers which
484# isn't required for the kernel proper to function
485AutoReqProv: no
486
487%description pae
488This package includes a version of the Linux kernel with support for up to
48964GB of high memory.  It requires a CPU with Physical Address Extensions
490(PAE). The non-PAE kernel can only address up to 4GB of memory.
491Install the kernel-pae package if your machine has more than 4GB of memory.
492
493%description pae -l ja
494このパッケージには 64GB までのメモリをサポートする Linux カーネルが収められて
495います.このカーネルを利用するためには PAE 対応の CPU が必要です。
496
497あなたのマシンが 4GB 以上のメモリを搭載している場合は kernel-pae パッケージを
498インストールしてください.
499
500%package pae-devel
501Summary: Development package for building kernel modules to match the PAE capable kernel.
502Summary(ja): 特定のバージョンのPAE対応カーネル用のモジュールを構築するための開発パッケージ
503Group: System Environment/Kernel
504Provides: kernel-pae-devel-%{_target_cpu} = %{rpmversion}-%{release}
505Provides: kernel-devel-%{_target_cpu} = %{rpmversion}-%{release}pae
506Provides: kernel-devel = %{rpmversion}-%{release}pae
507Provides: kernel26-devel = %{rpmversion}-%{release}pae
508AutoReqProv: no
509
510%description pae-devel
511This package provides kernel headers and makefiles sufficient to build modules
512against the PAE capable kernel package.
513
514
515%prep
516
517%setup -q -n %{name}-%{version} -c
518cd linux-%{kversion}
519
520#
521# Patches 0 through 100 are meant for core subsystem upgrades
522#
523%if %{patchlevel}
524%patch1 -p1
525# %patch11 -p1
526%endif
527
528#
529# Patches to back out
530#
531
532#
533# Architecture patches
534#
535
536#
537# x86(-64)
538#
539
540# %patch280 -p1
541
542#
543# ppc(64)
544#
545
546%patch350 -p1
547
548#
549# ia64
550#
551
552#
553# sparc/sparc64
554#
555
556
557#
558# Patches 500 through 1000 are reserved for bugfixes to the core system
559# and patches related to how RPMs are build
560#
561
562
563# This patch adds a "make nonint_oldconfig" which is non-interactive and
564# also gives a list of missing options at the end. Useful for automated
565# builds (as used in the buildsystem).
566##VINE## %patch800 -p1
567# revert DFbit changes
568# %patch810 -p0 -b .DFbit
569
570#
571# Patches 1000 to 5000 are reserved for bugfixes to drivers and filesystems
572#
573
574
575#
576# Make /dev/mem a need-to-know function
577#
578
579#
580# SCSI Bits.
581#
582
583# NIC driver fixes.
584# add support PLANEX GW-US54GXS
585##VINE## %patch1394 -p1
586
587# tg3
588%patch1430 -p1
589# asix: Adds support for Lenovo 10/100 USB dongle
590%patch1440 -p2 -b .Lenovo_USB_Ether_dongle
591# atheros alx driver
592%patch1450 -p0 -b .atheros_alx
593# e1000e
594%patch1460 -p1
595# fix fmvj18x_cs
596%patch1470 -p1 -b .fix_fmvj18x
597# rtlwifi fix
598# %patch1480 -p1 -b .rtl8192ce-fix-null-dereference-in-watchdog
599
600# Misc fixes
601# Make multimedia buttons on Dell Inspiron 8200 work.
602%patch1610 -p1
603# Add missing MODULE_VERSION tags to some modules.
604##VINE## %patch1630 -p1
605# The input layer spews crap no-one cares about.
606%patch1650 -p1
607#
608%patch1770 -p1
609# Silence debug messages in w1
610%patch1830 -p1
611# disable PCI MSI by default
612%patch1840 -p1
613# dont show fbcon logo on quiet mode
614%patch1850 -p1
615# silence acpi blacklist code
616%patch1860 -p1
617# add quirk for ricoh mmc (e823)
618# http://kernel.ubuntu.com/git?p=ubuntu/ubuntu-maverick.git;a=commit;h=be04c161614e57f31deae7505afcdec220a7dd1f
619##VINE## %patch1880 -p1
620# update sdhci driver
621# add support ricoh mmc host controller (843/e823/e822)
622##VINE## %patch1890 -p1
623# add quirk for Lenove's TPM device to autodetect
624# https://lkml.org/lkml/2011/2/15/605
625##VINE## %patch1900 -p1
626
627# initial MBA Mid2011 hacky support
628%patch1910 -p1
629
630# GC-WB300D BT
631# %patch1920 -p1 -b .GC-WB300D_bt_ath3k
632
633#
634# VM related fixes.
635#
636# Silence GFP_ATOMIC failures.
637%patch2001 -p1
638
639# IDE
640# prefer ata_piix driver on ICH4+ chipset instead of IDE/piix
641%patch2010 -p1
642
643# 3w-9xxx update (2.26.02.008)
644%patch2301 -p1
645
646%patch2504 -p1
647
648# drm fixes
649%if %{_apply_drm_patches}
650##VINE## %patch2700 -p1
651##VINE## %patch2710 -p1
652%endif
653
654# v4l
655
656
657#
658# External drivers that are about to get accepted upstream
659#
660
661
662#
663# Patches 5000 to 6000 are reserved for new drivers that are about to
664# be merged upstream
665#
666
667
668#
669# Patches 6000 to 10000 are for Vine Linux
670#
671
672%if !%{_minimum_patches}
673# unionfs
674#%patch6030 -p1
675##VINE## %patch6031 -p1
676
677# aufs
678%patch6100 -p1
679#%patch6101 -p1
680
681# tuxonice
682%patch9000 -p2
683#%patch9010 -p1
684%endif
685
686#
687# final stuff
688#
689# do not include localized version string in /proc/version
690%patch10000 -p1
691
692# security fix
693%patch20000 -p1 -b .CVE-2012-2100
694%patch20010 -p1 -b .CVE-2014-9090
695%patch20020 -p1 -b .CVE-2014-7841
696%patch20030 -p1 -b .CVE-2014-8369
697%patch20040 -p1 -b .CVE-2014-8884
698%patch20050 -p1 -b .CVE-2013-6885
699%patch20060 -p0 -b .CVE-2014-9419
700%patch20070 -p1 -b .CVE-2014-8133
701%patch20080 -p1 -b .CVE-2014-9529
702%patch20090 -p1 -b .CVE-2014-9584
703
704#
705# misc small stuff to make things compile or otherwise improve performance
706#
707
708# END OF PATCH APPLICATIONS
709
710cp %{SOURCE10} Documentation/
711
712# put Vine logo
713cp -f %{SOURCE100} drivers/video/logo/logo_linux_clut224.ppm
714
715#
716# install extra documentations
717#
718#
719mkdir configs
720
721cp -fv %{all_arch_configs} .
722
723
724# now run oldconfig over all the config files
725for i in *.config
726do
727        mv $i .config
728        Arch=`head -1 .config | cut -b 3-`
729        make ARCH=$Arch oldnoconfig
730        echo "# $Arch" > configs/$i
731        cat .config >> configs/$i
732done
733
734# make sure the kernel has the sublevel we know it has. This looks weird
735# but for -pre and -rc versions we need it since we only want to use
736# the higher version when the final kernel is released.
737perl -p -i -e "s/^SUBLEVEL.*/SUBLEVEL = %{patchlevel}/" Makefile
738perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = -prep/" Makefile
739
740# get rid of unwanted files resulting from patch fuzz
741# find . -name "*.orig" -exec rm -fv {} \;
742# find . -name "*~" -exec rm -fv {} \;
743
744
745###
746### build
747###
748%build
749sync
750
751cd linux-%{kversion}
752
753
754BuildKernel() {
755
756    # Pick the right config file for the kernel we're building
757    if [ -n "$1" ] ; then
758        Config=kernel-%{kversion}-%{_target_cpu}-$1.config
759        DevelDir=/usr/src/kernels/%{KVERREL}-$1-%{_target_cpu}
760        DevelLink=/usr/src/kernels/%{KVERREL}$1-%{_target_cpu}
761    else
762        Config=kernel-%{kversion}-%{_target_cpu}.config
763        DevelDir=/usr/src/kernels/%{KVERREL}-%{_target_cpu}
764        DevelLink=
765    fi
766
767    KernelVer=%{rpmversion}-%{release}$1
768    echo BUILDING A KERNEL FOR $1 %{_target_cpu}...
769
770    # make sure EXTRAVERSION says what we want it to say
771    perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = -%{release}$1/" Makefile
772
773    # and now to start the build process
774
775    make -s mrproper
776    cp configs/$Config .config
777
778    Arch=`head -1 .config | cut -b 3-`
779    echo USING ARCH=$Arch
780
781    echo CHECKING NEW CONFIG OPTIONS...
782    make ARCH=$Arch listnewconfig | grep -E '^CONFIG_' > .newoptions || true
783    if [ -s .newoptions ]; then
784      echo NEW CONFIG OPTION FOUND.
785      cat .newoptions
786    else
787      echo NO NEW CONFIG OPTION FOUND.
788    fi
789    rm -f .newoptions
790   
791    ##VINE## make -s ARCH=$Arch nonint_oldconfig > /dev/null
792    make -s ARCH=$Arch oldnoconfig > /dev/null
793    make -s ARCH=$Arch include/linux/version.h
794
795    make -s ARCH=$Arch %{?_smp_mflags} %{make_target}
796    make -s ARCH=$Arch %{?_smp_mflags} modules || exit 1
797    #make ARCH=$Arch buildcheck
798   
799    # Start installing the results
800
801%if "%{_enable_debug_packages}" == "1"
802    mkdir -p $RPM_BUILD_ROOT/usr/lib/debug/boot
803%endif
804    mkdir -p $RPM_BUILD_ROOT/%{image_install_path}
805    install -m 644 .config $RPM_BUILD_ROOT/boot/config-$KernelVer
806    install -m 644 System.map $RPM_BUILD_ROOT/boot/System.map-$KernelVer
807%ifarch ppc
808    cp vmlinux $RPM_BUILD_ROOT/%{image_install_path}/vmlinuz-$KernelVer
809%else
810    cp arch/$Arch/boot/bzImage $RPM_BUILD_ROOT/%{image_install_path}/vmlinuz-$KernelVer
811%endif
812        if [ -f arch/$Arch/boot/zImage.stub ]; then
813      cp arch/$Arch/boot/zImage.stub $RPM_BUILD_ROOT/%{image_install_path}/zImage.stub-$KernelVer || :
814        fi
815
816    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer
817    make -s ARCH=$Arch INSTALL_MOD_PATH=$RPM_BUILD_ROOT modules_install KERNELRELEASE=$KernelVer mod-fw=
818    cp modules.{order,builtin} $RPM_BUILD_ROOT/lib/modules/$KernelVer/
819 
820    # And save the headers/makefiles etc for building modules against
821    #
822    # This all looks scary, but the end result is supposed to be:
823    # * all arch relevant include/ files
824    # * all Makefile/Kconfig files
825    # * all script/ files
826
827    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
828    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/source
829    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
830    (cd $RPM_BUILD_ROOT/lib/modules/$KernelVer ; ln -s build source)
831    # first copy everything
832    cp --parents `find  -type f -name "Makefile*" -o -name "Kconfig*"` $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
833    cp Module.symvers $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
834    # then drop all but the needed Makefiles/Kconfig files
835    rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Documentation
836    rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts
837    rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
838    cp .config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
839    cp -a scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
840    if [ -d arch/%{_arch}/scripts ]; then
841      cp -a arch/%{_arch}/scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/%{_arch} || :
842    fi
843    if [ -f arch/%{_arch}/*lds ]; then
844      cp -a arch/%{_arch}/*lds $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/%{_arch}/ || :
845    fi
846    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/*.o
847    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/*/*.o
848%ifarch ppc
849    if [ -f arch/powerpc/lib/crtsavres.S -a -f arch/powerpc/lib/crtsavres.o ]
850    then
851      cp -a --parents arch/powerpc/lib/crtsavres.[So] $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
852    fi
853%endif
854    if [ -d arch/%{asmarch}/include ]; then
855      cp -a --parents arch/%{asmarch}/include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
856    fi
857    cp -a include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
858
859    # Make sure the Makefile and version.h have a matching timestamp so that
860    # external modules can be built
861    touch -r $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Makefile $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/linux/version.h
862    touch -r $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/.config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/linux/autoconf.h
863    # Copy .config to include/config/auto.conf so "make prepare" is unnecessary.
864    cp $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/.config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/config/auto.conf
865
866    if test -s vmlinux.id; then
867      cp vmlinux.id $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/vmlinux.id
868    else
869      echo >&2 "*** WARNING *** no vmlinux build ID! ***"
870    fi
871
872    #
873    # save the vmlinux file for kernel debugging into the kernel-debuginfo rpm
874    #
875%if "%{_enable_debug_packages}" == "1"
876    mkdir -p $RPM_BUILD_ROOT/usr/lib/debug/lib/modules/$KernelVer
877    cp vmlinux $RPM_BUILD_ROOT/usr/lib/debug/lib/modules/$KernelVer
878%endif
879
880
881    # mark modules executable so that strip-to-file can strip them
882    find $RPM_BUILD_ROOT/lib/modules/$KernelVer -name "*.ko" -type f >modnames
883    xargs --no-run-if-empty chmod u+x < modnames
884
885    # detect missing or incorrect license tags
886    for i in `find $RPM_BUILD_ROOT/lib/modules/$KernelVer -name "*.ko" `
887        do
888                echo -n "$i "
889                /sbin/modinfo -l $i >> modinfo
890        done
891    cat modinfo |\
892                grep -v "^GPL" |
893                grep -v "^Dual BSD/GPL" |\
894                grep -v "^Dual MPL/GPL" |\
895                grep -v "^GPL and additional rights" |\
896                grep -v "^GPL v2" && exit 1
897    rm -f modinfo
898    # remove files that will be auto generated by depmod at rpm -i time
899    for i in alias alias.bin builtin.bin ccwmap dep dep.bin ieee1394map inputmap isapnpmap ofmap pcimap seriomap symbols symbols.bin usbmap devname softdep
900    do
901          rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$i
902    done
903
904    # Move the devel headers out of the root file system
905    mkdir -p $RPM_BUILD_ROOT/usr/src/kernels
906    mv $RPM_BUILD_ROOT/lib/modules/$KernelVer/build $RPM_BUILD_ROOT/$DevelDir
907    ln -sf ../../..$DevelDir $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
908    [ -z "$DevelLink" ] || ln -sf `basename $DevelDir` $RPM_BUILD_ROOT/$DevelLink
909}
910
911###
912# DO it...
913###
914
915# prepare directories
916rm -rf $RPM_BUILD_ROOT
917mkdir -p $RPM_BUILD_ROOT/boot
918
919%if %{buildup}
920BuildKernel
921%endif
922
923%if %{buildpae}
924BuildKernel pae
925%endif
926
927###
928### install
929###
930
931%install
932
933cd linux-%{kversion}
934
935# build documentation package
936%if %{builddoc}
937mkdir -p $RPM_BUILD_ROOT%{_docdir}/kernel-doc-%{kversion}/Documentation
938
939# sometimes non-world-readable files sneak into the kernel source tree
940chmod -R a+r *
941# copy the source over
942tar cf - Documentation | tar xf - -C $RPM_BUILD_ROOT%{_docdir}/kernel-doc-%{kversion}
943%endif
944
945# build source package
946%if %{buildsource}
947mkdir -p $RPM_BUILD_ROOT%{_prefix}/src/linux-%{kversion}
948sync
949make -s mrproper
950sync
951tar cf - . | tar xf - -C $RPM_BUILD_ROOT%{_prefix}/src/linux-%{kversion}
952rm -rf $RPM_BUILD_ROOT%{_prefix}/src/linux-%{kversion}/Documentation
953ln -sf %{_docdir}/kernel-doc-%{kversion}/Documentation $RPM_BUILD_ROOT%{_prefix}/src/linux-%{kversion}/
954sync
955
956#
957rm -f $RPM_BUILD_ROOT%{_prefix}/src/linux-%{kversion}/arch/x86/tools/relocs
958
959# set the EXTRAVERSION to <version>custom, so that people who follow a kernel building howto
960# don't accidentally overwrite their currently working moduleset and hose their system
961perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = -%{release}custom/" $RPM_BUILD_ROOT/usr/src/linux-%{kversion}/Makefile
962install -m 644 %{SOURCE10}  $RPM_BUILD_ROOT/usr/src/linux-%{kversion}
963%endif
964
965%if %{with_headers}
966# Install kernel headers
967make ARCH=%{hdrarch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_install
968
969# Do headers_check but don't die if it fails.
970make ARCH=%{hdrarch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_check \
971     > hdrwarnings.txt || :
972if grep -q exist hdrwarnings.txt; then
973    sed s:^$RPM_BUILD_ROOT/usr/include/:: hdrwarnings.txt
974   # Temporarily cause a build failure if header inconsistencies.
975   # exit 1
976fi
977
978find $RPM_BUILD_ROOT/usr/include \
979     \( -name .install -o -name .check -o \
980        -name ..install.cmd -o -name ..check.cmd \) | xargs rm -f
981
982# glibc provides scsi headers for itself, for now
983rm -rf $RPM_BUILD_ROOT/usr/include/scsi
984rm -f $RPM_BUILD_ROOT/usr/include/asm*/atomic.h
985rm -f $RPM_BUILD_ROOT/usr/include/asm*/io.h
986rm -f $RPM_BUILD_ROOT/usr/include/asm*/irq.h
987%endif
988
989%if %{with_firmware}
990make INSTALL_FW_PATH=$RPM_BUILD_ROOT/lib/firmware firmware_install
991%endif
992
993sync
994
995
996###
997### clean
998###
999
1000%clean
1001rm -rf $RPM_BUILD_ROOT
1002
1003###
1004### scripts
1005###
1006
1007# load the loop module for upgrades...in case the old modules get removed we have
1008# loopback in the kernel so that mkinitrd will work.
1009%pre
1010/sbin/modprobe loop 2> /dev/null > /dev/null  || :
1011exit 0
1012
1013%pre pae
1014/sbin/modprobe loop 2> /dev/null > /dev/null  || :
1015exit 0
1016
1017%post
1018[ ! -x /usr/sbin/module_upgrade ] || /usr/sbin/module_upgrade
1019[ -x /sbin/new-kernel-pkg ] && /sbin/new-kernel-pkg --mkinitrd --depmod --install %{KVERREL}
1020
1021%ifarch ppc
1022for MODCONFFILE in /etc/modprobe.d/modprobe.conf.dist /etc/modprobe.conf /etc/modprobe.d/modprobe.conf
1023do
1024  if [ -f "$MODCONFFILE" ]; then
1025    TEMPFILE=`/bin/mktemp -q /tmp/modconffile.XXXXXX`
1026    sed -e 's/alias sound snd-powermac$//' $MODCONFFILE > $TEMPFILE
1027    cat $TEMPFILE > $MODCONFFILE
1028    rm -f $TEMPFILE
1029  fi
1030done
1031%endif
1032
1033cd /boot
1034# vmlinuz symlinks to new default kernel
1035ln -sf vmlinuz-%{KVERREL} vmlinuz
1036%ifarch ppc
1037ln -sf vmlinuz-%{KVERREL} vmlinux
1038%endif
1039ln -sf System.map-%{KVERREL} System.map
1040ln -sf initrd-%{KVERREL}.img initrd.img
1041# vmlinuz.old symlink to current running kernel
1042current=`uname -r`
1043if [ ! -f vmlinuz-${current} ]; then
1044  ln -sf vmlinuz-%{KVERREL} vmlinuz.old
1045%ifarch ppc
1046  ln -sf vmlinuz-%{KVERREL} vmlinux.old
1047%endif
1048  ln -sf System.map-%{KVERREL} System.map.old
1049  ln -sf initrd-%{KVERREL}.img initrd.old.img
1050else
1051  ln -sf vmlinuz-${current} vmlinuz.old
1052%ifarch ppc
1053  ln -sf vmlinuz-${current} vmlinux.old
1054%endif
1055  ln -sf System.map-${current} System.map.old
1056  ln -sf initrd-${current}.img initrd.old.img
1057fi
1058
1059[ -x /sbin/mkkerneldoth ] && /sbin/mkkerneldoth
1060depmod -a -F /boot/System.map-%{KVERREL} %{KVERREL}
1061
1062# if preffered bootloader is LILO, execute lilo.
1063%ifarch i586 i686
1064if [ -f /etc/sysconfig/bootloader ]; then
1065  source /etc/sysconfig/bootloader
1066  if [ "$BOOTLOADER" = "lilo" ]; then
1067    if [ -x /sbin/lilo -a -f /etc/lilo.conf ]; then
1068      /sbin/lilo > /dev/null
1069      exit 0
1070    fi
1071  fi
1072fi
1073%endif
1074
1075# update grub/menu.lst
1076GRUB_MENULST="/boot/grub/menu.lst"
1077if [ -f $GRUB_MENULST ]; then
1078  if ( grep -q "resume2=" $GRUB_MENULST ) ; then
1079    sed -i.rpmsave 's/resume2=/resume=/g' $GRUB_MENULST
1080  fi
1081fi
1082
1083%post pae
1084[ ! -x /usr/sbin/module_upgrade ] || /usr/sbin/module_upgrade
1085[ -x /sbin/new-kernel-pkg ] && /sbin/new-kernel-pkg --mkinitrd --depmod --install %{KVERREL}pae
1086
1087cd /boot
1088# vmlinuz-pae symlinks to new default pae kernel
1089ln -sf vmlinuz-%{KVERREL}pae vmlinuz-pae
1090ln -sf System.map-%{KVERREL}pae System.map-pae
1091ln -sf initrd-%{KVERREL}pae.img initrd-pae.img
1092# vmlinuz.old symlink to current running kernel
1093current=`uname -r`
1094ln -sf vmlinuz-${current} vmlinuz.old
1095ln -sf System.map-${current} System.map.old
1096ln -sf initrd-${current}.img initrd.old.img
1097
1098[ -x /sbin/mkkerneldoth ] && /sbin/mkkerneldoth
1099depmod -a -F /boot/System.map-%{KVERREL}pae %{KVERREL}pae
1100
1101# add PAE kernel entry to grub menu.list
1102GRUB_MENULST="/boot/grub/menu.lst"
1103if [ -f $GRUB_MENULST ]; then
1104  if ( ! grep -q "PAE kernel" $GRUB_MENULST ) ; then
1105    if [ -x /sbin/grubby ]; then
1106      /sbin/grubby --title="Vine Linux (PAE kernel)" \
1107                   --add-kernel=/boot/vmlinuz-pae \
1108                   --initrd=/boot/initrd-pae.img \
1109                   --copy-default \
1110                   --config-file=$GRUB_MENULST >& /dev/null ||:
1111    fi
1112  fi
1113fi
1114
1115# if preffered bootloader is LILO, execute lilo.
1116%ifarch i586 i686 x86_64
1117if [ -f /etc/sysconfig/bootloader ]; then
1118  source /etc/sysconfig/bootloader
1119  if [ "$BOOTLOADER" = "lilo" ]; then
1120    if [ -x /sbin/lilo -a -f /etc/lilo.conf ]; then
1121      /sbin/lilo > /dev/null
1122      exit 0
1123    fi
1124  fi
1125fi
1126%endif
1127
1128# update grub/menu.lst
1129GRUB_MENULST="/boot/grub/menu.lst"
1130if [ -f $GRUB_MENULST ]; then
1131  if ( grep -q "resume2=" $GRUB_MENULST ) ; then
1132    sed -i.rpmsave 's/resume2=/resume=/g' $GRUB_MENULST
1133  fi
1134fi
1135
1136%preun
1137/sbin/modprobe loop 2> /dev/null > /dev/null  || :
1138[ -x /sbin/new-kernel-pkg ] && /sbin/new-kernel-pkg --rminitrd --rmmoddep --remove %{KVERREL}
1139
1140%preun pae
1141/sbin/modprobe loop 2> /dev/null > /dev/null  || :
1142[ -x /sbin/new-kernel-pkg ] && /sbin/new-kernel-pkg --rminitrd --rmmoddep --remove %{KVERREL}pae
1143
1144
1145###
1146### file lists
1147###
1148
1149%if %{with_headers}
1150%files headers
1151%defattr(-,root,root)
1152/usr/include/*
1153%endif
1154
1155%if %{with_firmware}
1156%files firmware
1157%defattr(-,root,root)
1158/lib/firmware/*
1159%endif
1160
1161%if %{buildup}
1162%files
1163%defattr(-,root,root)
1164/%{image_install_path}/*-%{KVERREL}
1165/boot/System.map-%{KVERREL}
1166/boot/config-%{KVERREL}
1167%dir /lib/modules/%{KVERREL}
1168/lib/modules/%{KVERREL}/modules.*
1169/lib/modules/%{KVERREL}/kernel
1170/lib/modules/%{KVERREL}/build
1171/lib/modules/%{KVERREL}/source
1172
1173%files devel
1174%defattr(-,root,root)
1175%verify(not mtime) /usr/src/kernels/%{KVERREL}-%{_target_cpu}
1176%endif
1177
1178%if %{buildpae}
1179%files pae
1180%defattr(-,root,root)
1181/%{image_install_path}/*-%{KVERREL}pae
1182/boot/System.map-%{KVERREL}pae
1183/boot/config-%{KVERREL}pae
1184%dir /lib/modules/%{KVERREL}pae
1185/lib/modules/%{KVERREL}pae/modules.*
1186/lib/modules/%{KVERREL}pae/kernel
1187/lib/modules/%{KVERREL}pae/build
1188/lib/modules/%{KVERREL}pae/source
1189
1190%files pae-devel
1191%defattr(-,root,root)
1192%verify(not mtime) /usr/src/kernels/%{KVERREL}-pae-%{_target_cpu}
1193/usr/src/kernels/%{KVERREL}pae-%{_target_cpu}
1194%endif
1195
1196
1197
1198# only some architecture builds need kernel-source
1199%if %{buildsource}
1200%files source
1201%defattr(-,root,root)
1202%{_prefix}/src/linux-%{kversion}
1203%dir %{_prefix}/src/linux-%{kversion}
1204%endif
1205
1206# only some architecture builds need kernel-doc
1207%if %{builddoc}
1208%files doc
1209%defattr(-,root,root)
1210%{_datadir}/doc/kernel-doc-%{kversion}/Documentation/*
1211%dir %{_datadir}/doc/kernel-doc-%{kversion}/Documentation
1212%dir %{_datadir}/doc/kernel-doc-%{kversion}
1213%endif
1214
1215
1216%changelog
1217* Sat Jan 17 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.105-3
1218- add Patch20050 for fix CVE-2013-6885 (AMD 16h 00h-0Fh processors)
1219- add Patch20060 for fix CVE-2014-9419 (X86_32)
1220- add Patch20070 for fix CVE-2014-8133 (16-bit RW GDT instead of LDT)
1221- add Patch20080 for fix CVE-2014-9529 (garbage race condition)
1222- add Patch20090 for fix CVE-2014-9584 (iso)
1223-   these patches are from debian, thanks.
1224
1225* Mon Dec 22 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.105-2
1226- add Patch20010 for fix CVE-2014-9090 (SS segment)
1227- add Patch20020 for fix CVE-2014-7841 (sctp)
1228- add Patch20030 for fix CVE-2014-8369 (kvm iommu map)
1229- add Patch20040 for fix CVE-2014-8884 (ttusb-dec)
1230  these patches are from debian, thanks.
1231
1232* Tue Dec  9 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.105-1
1233- new upstream release with security fixes
1234- drop patch1480 (is included in new release)
1235- update patch6100 (remove *.orig file data)
1236
1237* Wed Oct  1 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.104-1
1238- new upstream release with security fixes
1239
1240* Sun Sep 14 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.103-3
1241- update e1000e driver (3.1.0.2)
1242
1243* Sun Aug 24 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.103-2
1244- add patch1480 for fix rtlwifi fix
1245  (Thanks to kudoh-san and debian team)
1246
1247* Sat Aug 16 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.103-1
1248- new upstream release with security fixes
1249
1250* Fri Aug  8 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.102-1
1251- new upstream release with security fixes
1252- drop patch810 (reverted by upsteam)
1253
1254* Fri Aug  1 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.101-1
1255- new upstream release with security fixes
1256
1257* Tue Jul 15 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.98-1
1258- new upstream release with security fixes
1259
1260* Thu Jul 10 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.97-1
1261- new upstream release with security fixes
1262
1263* Wed Jul  2 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.96-1
1264- new upstream release with security fixes
1265- (changelog 3.4.95 is missing)
1266
1267* Sun Jun 22 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.94-3
1268- add patch810 to fix packet forward issue
1269- update patch1460 (e1000e 3.0.4) again
1270
1271* Sat Jun 21 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.94-2
1272- revert e1000e update (revert to 2.5.4)
1273
1274* Wed Jun 18 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.94-1
1275- new upstream release   
1276
1277* Thu Jun 12 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.93-1
1278- new upstream release 
1279- drop patch1920 (is included in new release)
1280
1281* Mon Jun  9 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.92-1
1282- new upstream release
1283- update patch1460 (e1000e 3.0.4)
1284
1285* Mon May 19 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.91-1
1286- new upstream release
1287
1288* Thu May  8 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.89-1
1289- new upstream release
1290
1291* Wed Apr 30 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.88-2
1292- add Patch1470 to fix fmvj18x_cs bug
1293  (Thanks to Tanaka-san: [vine-users:082543])
1294
1295* Mon Apr 28 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.88-1
1296- new upstream release
1297
1298* Fri Apr 25 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.87-3
1299- Not for release
1300- add patch11 for 3.4.88 testing
1301
1302* Tue Apr 22 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.87-2
1303- add patch20010 for fix CVE-2014-2851 (ipv4 ping)
1304
1305* Wed Apr 16 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.87-1
1306- new upstream release
1307
1308* Sun Apr  6 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.86-1
1309- new upstream release   
1310
1311* Wed Apr  2 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.85-1
1312- new upstream release 
1313
1314* Tue Mar 25 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.84-1
1315- new upstream release
1316- drop Patch20010 (is included in new release)
1317
1318* Mon Feb 24 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.82-1
1319- new upstream release
1320
1321* Fri Feb 21 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.81-1
1322- update to 3.4.81 with security fixes 
1323
1324* Mon Feb 17 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.80-1
1325- update to 3.4.80 with security fixes
1326
1327* Wed Jan 22 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.77-1
1328- update to 3.4.77 with security fixes 
1329- fix changelog typo
1330
1331* Mon Jan 13 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.76-1
1332- update to 3.4.76 with security fixes
1333
1334* Tue Dec 24 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.75-1
1335- update to 3.4.75 with security fixes 
1336
1337* Mon Dec 16 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.74-1
1338- update to 3.4.74 with security fixes 
1339
1340* Fri Dec  6 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.72-1
1341- update to 3.4.72 with security fixes
1342
1343* Mon Dec  2 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.71-1
1344- update to 3.4.71 with security fixes
1345
1346* Fri Nov 22 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.70-1
1347- update to 3.4.70 with security fixes   
1348
1349* Thu Nov 14 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.69-1
1350- update to 3.4.69 with security fixes 
1351
1352* Tue Nov  5 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.68-2
1353- add patch1460 to update e1000e driver
1354
1355* Mon Nov  4 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.68-1
1356- update to 3.4.68 with security fixes
1357
1358* Sat Oct 26 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.67-1
1359- update to 3.4.67
1360- add patch1440 to support atheros alx driver
1361
1362* Thu Oct 17 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.66-1
1363- update to 3.4.66 with security fixes
1364
1365* Mon Oct  7 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.65-1
1366- update to 3.4.65 
1367
1368* Thu Oct  3 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.64-1
1369- update to 3.4.64
1370
1371* Thu Sep 26 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.62-2
1372- add patch1440 to support Lenovo 10/100 USB dongle
1373  (BTS:2657)
1374
1375* Sun Sep 15 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.62-1
1376- update to 3.4.62 
1377
1378* Sat Sep 14 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.61-1
1379- update to 3.4.61
1380
1381* Tue Aug  6 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.56-1
1382- update to 3.4.56
1383
1384* Sat Jun 29 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.51-1
1385- update to 3.4.51
1386
1387* Sun Jun 23 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.50-1
1388- update to 3.4.50
1389
1390* Sun Jun 16 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.49-1
1391- update to 3.4.49
1392
1393* Wed May 29 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.47-1
1394- update to 3.4.47
1395
1396* Wed May 22 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.46-1
1397- update to 3.4.46 
1398
1399* Mon May 13 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.45-1
1400- update to 3.4.45
1401
1402* Thu May  9 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.44-1
1403- update to 3.4.44
1404
1405* Sat May  4 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.43-1
1406- update to 3.4.43
1407
1408* Sat Apr 27 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.42-1
1409- update to 3.4.42
1410
1411* Thu Apr 18 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.41-1
1412- update to 3.4.41
1413
1414* Mon Apr  1 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.38-1
1415- update to 3.4.38 
1416
1417* Sat Mar 23 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.37-1
1418- update to 3.4.37
1419
1420* Mon Mar 18 2013 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4.36-2
1421- add patch1920 to add support GC-WB300D BT function
1422- add Patch20000 for fix CVE-2012-2100
1423- add Patch20010 for fix CVE-2012-5517
1424
1425* Sat Mar 16 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.36-1
1426- update to 3.4.36
1427
1428* Fri Mar 08 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.35-1
1429- update to 3.4.35
1430
1431* Wed Aug 29 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.10-1
1432- update to 3.4.10
1433
1434* Thu Aug 16 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.9-1
1435- update to 3.4.9
1436
1437* Fri Aug 10 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.8-1
1438- update to 3.4.8
1439- enable BMCA and BRCMSMAC(Broadcom SoftMAC driver)
1440
1441* Wed Aug 01 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.7-1
1442- update to 3.4.7
1443
1444* Fri Jul 27 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.6-3
1445- add patch1430 to support tg3 newer chipsets
1446
1447* Sat Jul 21 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.6-2
1448- add kmod to kernel_prereq (instead of module-init-tools)
1449
1450* Fri Jul 20 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.6-1
1451- update to 3.4.6
1452
1453* Wed Jul 18 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.5-1
1454- update to 3.4.5
1455- add xz, kmod, coreutils to BR:
1456- remove module-init-tools, sh-utils from BR:
1457
1458* Wed Jul 04 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.4-2
1459- add modules.{order,builtin}
1460
1461* Sat Jun 23 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.4-1
1462- update to 3.4.4
1463
1464* Mon Jun 18 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.4.3-1
1465- update to 3.4.3
1466- update tuxonice/aufs3 patch
1467
1468* Thu May 03 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.16-1
1469- update to 3.2.16
1470
1471* Tue Mar 13 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.10-1
1472- update to 3.2.10
1473
1474* Sat Mar 03 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.9-1
1475- update to 3.2.9
1476
1477* Tue Feb 21 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.7-1
1478- update to 3.2.7
1479
1480* Wed Feb 15 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.6-2
1481- update tuxonice patch (github toi-3.2 current)
1482
1483* Tue Feb 14 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.6-1
1484- update to 3.2.6
1485
1486* Sat Feb 04 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.4-1
1487- update to 3.2.4
1488
1489* Fri Jan 27 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.2-2
1490- add aufs3 patch
1491- drop unionfs support
1492
1493* Thu Jan 26 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.2-1
1494- update to 3.2.2
1495
1496* Fri Jan 13 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.1-1
1497- update to 3.2.1
1498
1499* Sat Jan 07 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.0-1
1500- update to 3.2
1501- update x86 configs
1502- prereq module-init-tools >= 3.16
1503
1504* Thu Dec 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.1.6-1
1505- update to 3.1.6
1506
1507* Tue Nov 29 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.1.4-1
1508- update to 3.1.4
1509
1510* Mon Nov 28 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.1.3-1
1511- update to 3.1.3
1512  - update x86 configs
1513- update tuxonice to current
1514- drop patch1421,1422
1515
1516* Mon Oct 24 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.8-1
1517- update to 3.0.8
1518
1519* Mon Oct 24 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.7-1
1520- update to 3.0.7
1521
1522* Wed Oct 12 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.4-4
1523- update unionfs to 2.5.10
1524- update configs (enable more drivers and functions)
1525  SCHED_AUTOGROUP NL80211_TESTMODE BLK_DEV_RBD SCSI_CXGB4_ISCSI
1526  SCSI_BNX2X_FCOE SCSI_ISCI STMMAC_ETH STMMAC_DUAL_MAC PCH_GBE BNA
1527  PCMCIA_RAYCS ATH9K_PCI ATH9K_AHB CARL9170 CARL9170_LEDS CARL9170_WPC
1528  B43_PHY_N IWLWIFI_DEVICE_SVTOOL RTL8192CE RTL8192SE RTL8192CU RTLWIFI
1529  RTL8192C_COMMON WL12XX_MENU WL12XX WL12XX_HT WL12XX_SDIO MWIFIEX
1530  MWIFIEX_SDIO USB_NET_CX82310_ETH USB_NET_KALMIA USB_VL600
1531  XEN_NETDEV_BACKEND IR_ENE IR_MCEUSB IR_ITE_CIR IR_FINTEK IR_NUVOTON
1532  IR_REDRAT3 IR_STREAMZAP IR_WINBOND_CIR RC_LOOPBACK USBIP_CORE
1533  USBIP_VHCI_HCD USBIP_HOST R8187SE RTL8192U RTL8192E R8712U R8712_AP
1534  RTS_PSTOR DRM_PSB INTEL_MEI ACERHDF DELL_WMI_AIO HP_ACCEL
1535  IDEAPAD_LAPTOP INTEL_IPS FANOTIFY
1536
1537* Sat Sep 17 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.0.4-3
1538- add Patch1421 & Patch1422
1539  (based on patches found at http://almostsure.com/mba42/ and fixed a bit)
1540
1541* Fri Sep 16 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.0.4-2
1542- add Patch1420 - a hack to support MBA Mid2011 LCD
1543  (inspired from: https://bugs.freedesktop.org/show_bug.cgi?id=39533)
1544
1545* Tue Aug 30 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.4-1
1546- update to 3.0.4
1547
1548* Fri Aug 19 2011 Daisuke SUZUKI <daisuke@linux.or.jp> - 3.0.3-1
1549- update to 3.0.3
1550- udpate configs
1551  - build legacy IDE drivers as module
1552  - enable new drivers
1553
1554* Mon Aug 15 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.0.1-3
1555- add Patch9010 to fix build failure on ppc
1556
1557* Sun Aug 14 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.0.1-2
1558- more config updates (enable some staging drivers found on compat-wireless)
1559- TODO: configs - more review & fix needed
1560
1561* Sun Aug 14 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.0.1-1
1562- inital attempt for 3.0.1
1563- disable obsolete/already_merged_into_upstream patches
1564- s/nonint_oldconfig/oldnoconfig/
1565- tuxonice: current-tuxonice-for-3.0.patch.bz2 (as of Aug. 14, 2011)
1566- unionfs: 2.5.9.2_for_3.0.0-rc4
1567- fix configs from m to y for the followings:
1568  INTEL_IDLE, BT_L2CAP, BT_SCO, LEDS_CLASS
1569
1570* Tue Jul 05 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-20
1571- add patch1890 to update sdhci driver (ricoh mmc support)
1572- add patch1900 to add quirk for lenove iTPM devices
1573- update Patch2700 (drm patch)
1574
1575* Fri Jul 01 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-19
1576- add patch1870 to recognize ALPS Touchpad on Dell E6510
1577- add patch1880 to support newer ricoh mmc hosts
1578- add patch1410 to support iwlwifi new ucode loading
1579- disable kernel-firmware build and require linux-firmware instead.
1580
1581* Mon May 16 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-18
1582- update configs
1583  - disable PCI MSI by default (CONFIG_PCI_MSI_DEFAULT_ON)
1584
1585* Sun May 15 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-17
1586- update to unionfs 2.5.9.1
1587- update to tuxonice 3.2
1588- update configs
1589- remove ppc64 config
1590
1591* Sat May 14 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-16
1592- add Patch2700 to update drm
1593- add Patch2710 to ignore invalid edid extensions
1594
1595* Wed May 11 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-15
1596- add patch1400 to update e1000e driver
1597
1598* Sat Apr 30 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-14
1599- drop i586 config
1600- build kernel-{source,doc,firmware}.noarch package on i686 build
1601
1602* Sat Apr 30 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-13
1603- update to 2.6.35.13
1604
1605* Wed Apr 27 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-12
1606- update configs
1607  - enable CONFIG_DEVPTS_MULTIPLE_INSTANCES
1608
1609* Mon Apr 25 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-11
1610- update to unionfs to 2.5.8
1611- add patch6031 to fix open+unlink+ftruncate crash
1612  http://www.fsl.cs.sunysb.edu/pipermail/unionfs/2011-March/006091.html
1613
1614* Wed Apr 13 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-10
1615- disable drm update patches
1616- update x86 config
1617  - disable CONFIG_KEXEC, CONFIG_RELOCATABLE
1618
1619* Tue Apr 12 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-9
1620- update to 2.6.35.12
1621- update x86 configs
1622  - enable CONFIG_FTRACE, CONFIG_DYNAMIC_TRACE
1623- add drm update patches
1624
1625* Tue Mar 08 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-8
1626- update to 2.6.35.11
1627
1628* Sun Jan 09 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.35-7
1629- updated to 2.6.35.10
1630
1631* Mon Sep 27 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-6
1632- update to 2.6.35.6
1633  - remove patch2600 which is merged in upstream
1634
1635* Mon Sep 27 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-5
1636- add patch2600 to fix i915 modesetting failure on intel 8xx (<BTS:1039>)
1637- add BR: xz-lzma-compat, net-tools (<BTS:1038>)
1638- update unionfs to 2.5.6
1639- update tuxonice to 3.2-rc2
1640
1641* Tue Sep 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-4
1642- update to 2.6.35.5
1643
1644* Fri Sep 03 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-3
1645- update to 2.6.35.4
1646
1647* Sat Aug 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-2
1648- update to 2.6.35.3
1649
1650* Mon Aug 16 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.35-1
1651- update to 2.6.35.2
1652- update configs
1653- update unionfs to 2.5.5
1654- update tuxonice to 3.1.1.1
1655
1656* Wed May 19 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.34-1
1657- update to 2.6.34
1658- patch1850: do not show fbcon logo on quiet mode
1659- patch1860: silence acpi blacklist code
1660- update tuxonice to git snapshot
1661
1662* Fri May 14 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.33-5
1663- update to 2.6.33.4
1664
1665* Tue Apr 06 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.33-4
1666- update to 2.6.33.2
1667- change configs
1668  - revert PREEMPT/PREEMPT_VOLUNTARY changes of previous kernel
1669
1670* Wed Mar 24 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.33-3
1671- change configs
1672  - enable CONFIG_PREEMPT, disable CONFIG_PREEMPT_VOLUNTARY
1673- update unionfs to 2.5.4
1674
1675* Mon Mar 15 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.33-2
1676- update to 2.6.33.1
1677- remove bootsplash patch, we use plymouth
1678- change CONFIG_VGASTATE to y
1679- add patch1394 to support PLANEX GW-US54GXS (Wishes:229)
1680- update tuxonice to 3.1-for-2.6.33
1681
1682* Tue Mar 02 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.33-1
1683- update to 2.6.33
1684- update tuxonice to 3.0.99.48
1685- drop e1000 patch
1686- drop drm patches
1687
1688* Sat Feb 20 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-14
1689- add Patch2833 for drm-intel
1690  - do not change DRM configuration when releasing load detect pipe
1691
1692* Sat Feb 20 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-13
1693- add Patch2831,2832 for drm-intel
1694
1695* Wed Feb 17 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-12
1696- Requires(pre): mkinitrd >= 6.0.93
1697  - new sysfs layout needs new mkinitrd
1698- add Patch2822 for drm-intel
1699
1700* Mon Feb 15 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-11
1701- update to 2.6.32.8
1702- disable SYSFS_DEPRECATED
1703
1704* Tue Feb 09 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-10
1705- update to 2.6.32.7
1706- enable NUMA support on x86_64
1707
1708* Mon Feb  8 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.32-9
1709- drop Patch380 (see the changelog on 2.6.26-3 below)
1710- s/^BuildPreReq/BuildRequires/, s/^Prereq/Requires(pre)/
1711
1712* Sun Feb 07 2010 NAKAMURA Kenta <kenta@vinelinux.org> 2.6.32-8
1713- rebuilt with gcc 4.4.3
1714
1715* Tue Jan 19 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-7
1716- update to 2.6.32.4
1717
1718* Sat Jan 16 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-6
1719- update to 2.6.32.3
1720- update tuxonice to 2.0.99.44
1721- drop i586 support
1722  - build kernel-headers on i686
1723
1724* Thu Dec 17 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-5
1725- update tuxonice to 3.0.99.41-for-2.6.32
1726
1727* Tue Dec 15 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.32-4
1728- fix ppc.config
1729
1730* Tue Dec 15 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-3
1731- update to 2.6.32.1
1732- add drm related patches
1733  Patch2811: drm-radeon-fixes.patch
1734  Patch2812: drm-radeon-dp-support.patch
1735  Patch2814: drm-nouveau.patch
1736  Patch2819: drm-intel-big-hammer.patch
1737  Patch2826: drm-i915-fix-sync-to-vbl-when-vga-is-off.patch
1738  Patch2827: linux-2.6-intel-agp-clear-gtt.patch
1739  Patch2830: linux-2.6.32-drm-i915-gem-on-pae.patch
1740
1741* Sat Dec 05 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-2
1742- update x86 configs
1743
1744* Fri Dec 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.32-1
1745- update to 2.6.32
1746- drop obsolete/upstream patches
1747
1748* Tue Oct 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.31-8
1749- update to 2.6.31.3
1750- update x86 configs
1751  - set CONFIG_BLK_DEV_{SD,SR,SG} to "y"
1752
1753* Thu Oct  8 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.31-7
1754- fix ppc config (RTC_DRV_PPC -> RTC_DRV_GENERIC etc.)
1755
1756* Wed Oct  7 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.31-6
1757- add Patch360 (powerpc: Remove SMP warning from PowerMac cpufreq)
1758
1759* Sat Sep 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.31-5
1760- update to 2.6.31.1
1761- prefer ata_piix driver on ICH4+ chipset instead of IDE/piix
1762
1763* Mon Sep 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.31-4
1764- fix asm headers
1765
1766* Mon Sep 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.31-3
1767- add missing headers to kernel-devel
1768
1769* Sun Sep 20 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.31-2
1770- update x86/x86_64 configs
1771  - set CONFIG_{ATA,ATA_PIIX,SATA_AHCI} to "y"
1772- TODO: fix ppc config
1773
1774* Sun Sep 20 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.31-1
1775- update to 2.6.31
1776- drop obsolete/upstream patches
1777- update tuxonice to current-20090911-v1
1778- update unionfs-2.5.2
1779
1780* Sat Aug 15 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.27-43
1781- add patch20000 for fix CVE-2009-2692 (SOCKOPS_WRAP()) from fc10
1782
1783* Thu Aug  6 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.27-42
1784- update to 2.6.27.29 with security fixes
1785
1786* Fri Jul 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-41
1787- update to 2.6.27.27
1788- add patch4012 to load panasonic-laptop automatically
1789  (<BTS:0734>, [VineSeed:17786], http://patchwork.kernel.org/patch/2275/)
1790
1791* Fri Jul  3 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.27-40
1792- update to 2.6.27.26
1793- add patch810 for fix slub bug
1794- drop patch20000 (included in .26)
1795
1796* Thu Jul  2 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.27-39
1797- change Provides alsa-driver 1.0.19 -> 1.0.17
1798
1799* Thu Jul  2 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.27-38
1800- drop patch8000,8001 (alsa driver are provided by alsa-driver package)
1801
1802* Mon Jun 29 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.27-37
1803- 2.6.27.25
1804- drop patch280 (included in .25)
1805- add patch20000 for fix CVE-2009-1389 (r8169 driver)
1806
1807* Sat Jun 06 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-36
1808- add Patch280: workaround failures on intel atom
1809- add Patch140[45]: fix e1000e driver
1810- add Patch2100: fix pata_sch, notice attached slave devices
1811- add Patch2900: update synaptics driver
1812- add Patch291[012]: update toshiba acpi driver
1813- add Patch2920: update eeepc laptop driver
1814- add Patch3000: fix up v4l2 video_open function
1815
1816* Wed Jun 03 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-35
1817- fix x86_64 config
1818
1819* Sun May 31 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-34
1820- enable CONFIG_PCI_MSI
1821- add Patch1840 to disable PCI MSI by default
1822
1823* Sun May 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-33
1824- update to 2.6.27.24
1825- add Patch4011 to update panasonic-laptop
1826
1827* Sun May 17 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.27-32
1828- now ppc kernel (vmlinux) is named as vmlinuz
1829  (still keep vmlinux* symlinks for compatibility though)
1830- remove MOL-related files and patches completely
1831
1832* Sat May 16 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-31
1833- revert config change
1834  - re-enable CONFIG_SYSFS_DEPRECATED which is still needed by some
1835    userland utilities
1836
1837* Wed May 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-30
1838- update configs
1839  - disable CONFIG_SYSFS_DEPRECATED
1840
1841* Tue May 12 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-29
1842- update /boot/vmlinuz* symlink policy
1843  - vmlinuz -> newly installed kernel
1844  - vmlinuz-pae -> newly installed pae kernel
1845  - vmlinuz.old -> current running kernel
1846
1847* Mon May 11 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-28
1848- add Patch2812 to add missing drm definitions
1849
1850* Sun May 10 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-27
1851- update to 2.6.27.23
1852
1853* Tue May 05 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.27-26
1854- apply patch2811 (again) to disable GEM on PAE or 8xx
1855
1856* Tue May 05 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.27-25
1857- patch2813 - patch2819 are disabled to fix radeon dri issue
1858
1859* Mon May 04 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.27-24.1
1860- test package to fix DRI issue on radeon
1861
1862* Mon Apr 27 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.27-24
1863- modify post script for ppc (delete snd-powermac aliasing in modprobe.conf*)
1864
1865* Mon Apr 27 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.27-23
1866- Patch6030 (unionfs) updated to 2.5.1
1867
1868* Mon Apr 27 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.27-22
1869- update ppc.config (change CONFIG_RTC_DRV_PPC from m to y, and many more)
1870- s/modutils/module-init-tools/ in BuildPreReq
1871
1872* Sat Apr 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-21
1873- change config options for tuxonice-3.0.1
1874  set following options to 'y'
1875  - CONFIG_CRYPTO_DEFLATE,CONFIG_CRYPTO_LZO
1876  - CONFIG_LZO_COMPRESS,CONFIG_LZO_DECOMPRESS
1877   
1878* Sun Apr 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-20
1879- update drm patches
1880- update configs
1881  - CONFIG_USB_OHCI_HCD_SSB change to n
1882- update tuxonice to 3.0.1-for-2.6.27
1883
1884* Sat Mar 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-19
1885- update to 2.6.27.21
1886- update tuxonice to new current snapshot (20090313-v1)
1887- update kernel_prereq
1888  - mkinitrd >= 5.1.19.6
1889  - module-init-tools >= 3.6
1890
1891* Wed Mar 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-18
1892- update to 2.6.27.20
1893- add PAE kernel entry to grub menu.lst
1894  - create /boot/vmlinuz-pae for latest pae kernel
1895
1896* Wed Mar 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-17
1897- update to 2.6.27.19
1898- remove r1000 driver
1899
1900* Wed Mar  4 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.27-16
1901- update tuxonice to current snapshot (20090214-v1)
1902
1903* Thu Feb 19 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.27-15
1904- update Patch8001
1905
1906* Wed Feb 18 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.27-14
1907- add Patch8000 and Patch8001 (update alsa-driver to 1.0.19)
1908
1909* Fri Feb 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-13
1910- update to 2.6.27.17
1911
1912* Fri Feb 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-12
1913- update to 2.6.27.16
1914- re-add Patch1450 to support smarter relatime
1915- modify kernel config
1916  - CONFIG_RT_GROUP_SCHED=y
1917  - CONFIG_CGROUP_SCHED=y
1918  - CONFIG_USER_NS=y
1919  - CONFIG_PID_NS=y
1920  - CONFIG_DEFAULT_RELATIME=y
1921
1922* Sun Jan 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-11
1923- update to 2.6.27.13
1924- update drm-next.patch
1925  - drm-next.patch: drm/intel: fix VT switch issue harder.
1926- update drm-modesetting-radeon.patch
1927  - radeon drm: fix broken caching bits in radeon which broke AGP
1928- update to squashfs 3.4
1929
1930* Mon Jan 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-10
1931- update to 2.6.27.12
1932- drop upstream patch (patch2500)
1933
1934* Tue Jan 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-9
1935- add kernel-pae subpackage for PAE capable kernel (i686 only)
1936
1937* Sat Dec 27 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.27-8
1938- add Patch1400 to support ich9 e1000 support
1939- add Patch140[123] to support newer e1000e device
1940- add Patch1410 to update r8169
1941- add Patch250[0124] to update wireless bits
1942- add Patch260[012] to update uvcvideo
1943- add Patch2800,281[0356] to update drm
1944- add Patch4000 to add atl2 driver
1945- add Patch4010 to add panasonic laptop extras
1946
1947* Fri Dec 26 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.27-7
1948- fix header installation section (introducing asmarch macro etc.)
1949  especially for arch/powerpc/include/asm instead of include/asm-powerpc
1950  (see git commit b8b572e1015f81b4e748417be2629dfe51ab99f9)
1951
1952* Mon Dec 22 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.27-6
1953- fix broken ppc.config (maybe at 2.6.27-4 or -5?)
1954
1955* Sun Dec 21 2008 Daisuke SUZUKI <daisuke@linux.or.jp> - 2.6.27-5
1956- update to 2.6.27.10
1957- change configs
1958  - set CONFIG_RTC_DRV_CMOS=y
1959  - set CONFIG_TIO_IGNORE_LATE_INITCALL=y
1960
1961* Wed Dec 17 2008 Daisuke SUZUKI <daisuke@linux.or.jp> - 2.6.27-4
1962- update to 2.6.27.9
1963- change configs
1964  - set CONFIG_RTC_CLASS=y instead of "m"
1965  - set CONFIG_CGROUPS=y
1966
1967* Sat Dec 13 2008 Daisuke SUZUKI <daisuke@linux.or.jp> - 2.6.27-3
1968- add Conflicts: libdrm-devel < 2.4.0-4 to kernel-headers
1969- add kernel-firmware subpackage
1970
1971* Fri Dec 12 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.27-2
1972- minor treatment for creating asm symlinks
1973
1974* Thu Dec 11 2008 Daisuke SUZUKI <daisuke@linux.or.jp> - 2.6.27-1
1975- update to 2.6.27.8
1976- update tuxonice to current snapshot
1977- update unionfs to 2.5
1978- update configs
1979
1980* Sun Oct 05 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.26-9
1981- Requires(post): mkinitrd >= 4.2.1.10-2vl5
1982
1983* Mon Sep 15 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.26-8
1984- the first line "# powerpc" was missing on ppc.config of 2.6.26-7 - fixed.
1985
1986* Tue Sep 09 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.26-7
1987- update to 2.6.26.5
1988- drop patch2230 (merged in upstream)
1989
1990* Sat Aug 16 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.26-6
1991- add patch2230 to fix it821x in pass-through mode segfaults
1992  (Already this patch is merged into kernel main tree)
1993
1994* Mon Aug 11 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.26-5
1995- update to 2.6.26.2
1996
1997* Wed Jul 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.26-4
1998- set CONFIG_X86_PAT to n
1999  - this may cause lock or boot problem in some system
2000- set CONFIG_IDE_GENERIC to n
2001  - disable ide_generic to fix piix dma problem.
2002    ide_generic does not help in recent PCs, and may cause confusion,
2003    so it should be set 'n' now.
2004
2005* Tue Jul 22 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.26-3
2006- drop unneccesary powerpc patches
2007- re-create Patch370 and ppc.config
2008- add Patch380 and apply in reverse (until Vine goes to gcc-4.4.x)
2009
2010* Tue Jul 22 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.26-2
2011- do not override asm-powerpc/highmem.h with asm-ppc/highmem.h anymore
2012
2013* Sat Jul 19 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.26-1
2014- update to 2.6.26
2015- update configs
2016- drop unneeded patches
2017- update tuxonice from tuxonice-2.6.26.git
2018
2019* Thu Jul 03 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.25-12
2020- update to 2.6.25.10
2021- fix CONFIG_NLS_DEFAULT to utf8
2022
2023* Sat Jun 28 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.25-11
2024- update to 2.6.25.9
2025- add Patch2500 to implement smarter atime update support ([VineSeed:15756])
2026- change CONFIG_NLS_DEFAULT from euc-jp to utf-8
2027
2028* Tue Jun 10 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.25-10
2029- updated to 2.6.25.6
2030
2031* Mon Jun 09 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.25-9
2032- CONFIG_BLK_DEV_{IDECD,PIIX}=m to avoid piix driver to override
2033  ata_piix driver under ICH* PATA chipsets
2034
2035* Sat May 31 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.25-8
2036- add Patch2400 to support Intel 965G/965GM chipsets
2037  (0e170c72c0c55bd78213a0f5053bd9a1dde403b7)
2038
2039* Thu May 29 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.25-7
2040- add Patch2220 to fix boot suspending on recent MacBooks w/o AC adapter
2041  (see http://www.spinics.net/lists/linux-ide/msg23442.html and its thread)
2042
2043* Sat May 17 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.25-6
2044- update to 2.6.25.4
2045- drop Patch2400 (already in upstream)
2046
2047* Fri May 16 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.25-5
2048- fix ppc.config
2049
2050* Thu May 15 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.25-4
2051- add Patch2400 (cb6716c879ecf49e2af344926c6a476821812061)
2052  to fix broken drive detection on some MacBooks
2053- disable Patch381 (no need to export copy_page symbols anymore)
2054
2055* Fri May 02 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.25-3
2056- update to 2.6.25.1
2057
2058* Mon Apr 28 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.25-2
2059- update unionfs to 2.3.3
2060- update tuxonice to 3.0-rc7
2061
2062* Wed Apr 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.25-1
2063- update to 2.6.25
2064- update unionfs to 2.3.2
2065- update configs
2066
2067* Sun Apr 06 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.24-7
2068- build x86 headers on i586 build
2069
2070* Fri Apr 04 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.24-6
2071- re-introduce kernel-headers subpackage again
2072  (which obsoletes pretty old glibc-kernheaders package)
2073
2074* Sun Mar 30 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.24-5
2075- fix ppc.config
2076- add buildmol (default 0)
2077
2078* Thu Mar 27 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.24-4
2079- fix include file install section for x86_64
2080
2081* Wed Mar 26 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.24-3
2082- drop supermount-ng patch
2083- add Patch6020 for bootsplash
2084
2085* Tue Mar 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.24-2
2086- update to 2.6.24.4
2087
2088* Mon Mar 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.24-1
2089- update to 2.6.24.3
2090- update unionfs to 2.2.4
2091- update x86/x86_64 configs
2092
2093* Fri Jan 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.23-0vl7
2094- update TuxOnIce to 3.0-rc5-2.6.23.14
2095
2096* Mon Jan 21 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.23-0vl6
2097- updated to 2.6.23.14
2098- update TuxOnIce to 3.0-rc4-2.6.23.14
2099
2100* Sun Dec 16 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.23-0vl5
2101- add Patch381 (unionfs won't build without this patch)
2102- rename mol-kmods to kernel-module-mol
2103
2104* Sat Dec 15 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.23-0vl4
2105- updated to 2.6.23.11
2106- update TuxOnIce to 3.0-rc3-2.6.23.9
2107- update unionfs to 2.1.11
2108- update squashfs to 3.3
2109
2110* Wed Dec  5 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.23-0vl3
2111- updated to 2.6.23.9
2112
2113* Sun Nov 18 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.23-0vl2
2114- update TuxOnIce to 3.0-rc2-2.6.23.1
2115- update ppc config
2116
2117* Sat Nov 17 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.23-0vl1
2118- update to 2.6.23.8
2119
2120* Mon Nov 05 2007 NAKAMURA Kenta <kenta@vinelinux.org> 2.6.23-0vl0.7
2121- update x86_64.config
2122
2123* Tue Oct 30 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.23-0vl0.6
2124- update x86 config
2125
2126* Mon Oct 29 2007 NAKAMURA Kenta <kenta@vinelinux.org> 2.6.23-0vl0.5
2127- update x86_64.config
2128- add patch2301 for fix a bug in the LSI emulation in VMWare 5
2129
2130* Mon Oct 22 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.23-0vl0.4
2131- unionfs updated to 2.1.7
2132
2133* Mon Oct 22 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.23-0vl0.3
2134- add Patch380 to fix symbol errors with mol-kmods
2135- fix ppc.config (CONFIG_SLUB_DEBUG{,_ON} were missing)
2136
2137* Sun Oct 21 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.23-0vl0.2
2138- require mkinitrd >= 4.2.1.8-0vl5 for tuxonice-3.0
2139- update grub/menu.lst to use "resume=" parameter instead of "resume2="
2140
2141* Sun Oct 21 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.23-0vl0.1
2142- update x86 config
2143- update ppc config (enable SLUB allocator instead of SLAB allocator)
2144
2145* Fri Oct 19 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.23-0vl0
2146- initial attempt for upgrading 2.6.23
2147- 2.6.23.1
2148- drop many "untested" or "already in upstream" patches
2149- add e1000e driver
2150- r1000 updated to 1.0.7 (with a patch to fix compile failure)
2151- drop fbsplash
2152- updated other components such as following:
2153  - TuxOnIce (formerly suspend2) 3.0-rc1
2154  - supermount-ng 2.2.2
2155  - unionfs 2.1.6
2156  - squashfs 3.2r2
2157  - Mac-On-Linux 0.9.72.1 (only on ppc)
2158- other important TODOs:
2159  - prepare correctly working i?86/x86_64 configs for the first thing!
2160  - clean up many sections in this spec file
2161  - re-organize many of the patches
2162  - include another kind of splash mechanism (usplash? splashy? etc.)
2163  - time to consider introducing xen and SELinux?
2164
2165* Thu Oct 04 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl89
2166- re-update patch1050,1060 for suspend2 2.2.8 on x86_64
2167- update patch1390 to 3.71b (wishes:128)
2168- update patch1630 (tg3 section is no needed)
2169
2170* Wed Oct 03 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl88
2171- Prereq: mkinitrd >= 4.2.1.8-0vl2 for new suspend2
2172
2173* Sun Sep 30 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl87
2174- update suspend2 patch to 2.2.8-for-2.6.16.21
2175
2176* Fri Sep 28 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl86
2177- add patch20390 for fix CVE-2007-4573 (Zero extend all registers)
2178
2179* Thu Sep 27 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl85
2180- add patch20370 for fix CVE-2007-3739 ("mm/mmap.c")
2181- add patch20380 for fix CVE-2007-3740 (CIFS should honor umask)
2182- update Source200, patch1050,1060 for fix function name conflict on x86_64
2183
2184* Mon Aug 27 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl84
2185- fix following configs for ppc
2186  - CONFIG_IEEE1394_EXPORT_FULL_API=y
2187  - CONFIG_IEEE1394_OHCI1394=m
2188
2189* Mon Aug 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl83
2190- add Patc2146 for libata/ahci to add new chipset(sb700,mcp7x,via) support
2191- update Patch2143
2192
2193* Sun Aug 26 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl82
2194- update Patch2143
2195
2196* Sun Aug 26 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl81
2197- add Patch2140 for libata ich9 support
2198- add Patch2141 for generic ahci class support
2199- add Patch2142 for libata/ide mcp67 support
2200- add Patch2143 for libata/ata_piix update to fix port mapping problem in ich8
2201- add Patch2144 for libata/ahci update to force SB600 as AHCI mode
2202- add Patch2145 for libata/sata_via to add new chipset support
2203- add Patch2220 for IDE/atiixp SB600 support
2204- add Patch3200 for agpgart/intel-agp intel 965 support
2205- add Patch3210 for drm/i915 intel 945gme support
2206- add Patch3010 for hda_intel ICH9/RS690/MCP6x support
2207
2208* Sat Aug 25 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl80
2209- add patch20360 for fix CVE-2007-3848 (PR_SET_PDEATHSIG)
2210- add patch20350 for fix CVE-2007-4308 (aac raid driver)
2211- add Patch20320 for fix CVE-2007-3513 (usblcd)
2212- add Patch20330 for fix CVE-2007-1353 (Bluetooth Fix L2CAP/HCI setsockopt())
2213- add Patch20340 for fix CVE-2007-3105 (random)
2214- add patch20310 for fox CVE-2006-7203(compat_sys_mount())
2215- add patch1371 for support Corega LAPCIGT NIC (R8169)
2216- renumber patch1371 -> patch1375 (linux-2.6.16-r1000-1.0.4.patch)
2217
2218* Sun Jun 10 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl79
2219- add patch20280 for fix CVE-2007-2453
2220- add patch20290 for fix CVE-2007-2875
2221- add patch20300 for fix CVE-2007-2876
2222- add Patch2300 to update 3w-9xxx driver (from 3ware)
2223
2224* Sat Jun 09 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl78
2225- add Patch1391 to update forcedeth-0.60
2226
2227* Thu May 31 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl77
2228- for VineSeed
2229
2230* Mon May 28 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl76
2231- add patch20250 for fix CVE-2007-1861 (NETLINK_FIB_LOOKUP)
2232- add patch20260 for fix CVE-2007-2172 (anout-of-bounds access)
2233- add patch20270 for fix CVE-2007-2525 (PPP Over X/Ethernet)
2234
2235* Sat Apr 14 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl75
2236- add patch20225 for fix CVE-2007-1497 (ipv6_conntrack_in())
2237- add patch20240 for fix CVE-2007-1357 (atalk_sum_skb() in AppleTalk)
2238- fix changelog typo
2239
2240* Fri Apr 06 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl74
2241- add patch20200 for fix CVE-2007-1217 (isdn capi)
2242- update config (CONFIG_CAPI_TRACE is added)
2243- add patch20220 for fix CVE-2007-1496 (nf_conntrack in netfilter)
2244- add patch20230 for fix CVE-2007-1592 (cp_v6_syn_recv_soc())
2245- remake patch20180 (for CVE-2007-1000)
2246  - old patch included CVE-2007-1388 fix
2247- add patch20210 for fix CVE-2007-1388 (do_ipv6_setsockopt())
2248  - it was separated from old patch20180
2249
2250* Wed Mar 14 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl73
2251- add patch20190 for fix CVE-2007-0958 (PT_INTERP)
2252
2253* Wed Mar 14 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl72
2254- add patch for fix CVE-2007-0005 (cm4040)
2255- add patch for fix CVE-2007-1000 (ipv6_getsockopt_sticky())
2256
2257* Wed Feb 21 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl71
2258- add patch20160 for fix CVE-2007-0772 (NFSACL DoS)
2259
2260* Thu Feb 15 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl70
2261- add patch20150 for fix CVE-2007-0006 ("key_alloc_serial()" DoS)
2262
2263* Mon Feb 05 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl69
2264- add patch20140 for fix CVE-2006-5753 (listxattr Memory Corruption)
2265
2266* Thu Jan 18 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl68
2267- add patch20120 for fix CVE-2006-4814 (mincore User Space Access Lock issue)
2268- add patch20130 for fix CVE-2006-5749 (ISDN init_timer)
2269
2270* Mon Jan 08 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl67
2271- rebuilt
2272
2273* Mon Dec 25 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl66.1
2274- test package
2275- add patch20070 for fix CVE-2006-5173
2276- add patch20080 for fix CVE-2006-5823
2277- add patch20090 for fix CVE-2006-6053
2278- add patch20100 for fix CVE-2006-6054
2279- add patch20110 for fix CVE-2006-6056
2280
2281* Wed Dec 20 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl66
2282- add patch20060 for fix CVE-2006-6106
2283
2284* Fri Dec 15 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl65
2285- update to 2.6.16.36
2286
2287* Sun Dec 10 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl64
2288- drop Patch2220.
2289
2290* Thu Dec 07 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl63
2291- update to 2.6.16.34
2292- drop patch1380,2300,200[01234]0 which are merged in 2.6.16.34
2293
2294* Thu Dec 07 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl62
2295- update tg3 driver to 3.66d (Patch1390)
2296- update ix86 config
2297  - set CONFIG_ACPI_BLACKLIST_YEAR to 1999 instead of 2001
2298
2299* Sun Dec 03 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl61
2300- add Patch2130 to use ACHI on libata suspend/resume.
2301- add Patch2220 to support DMA on ICH6M (<BTS:407>)
2302  http://marc.theaimsgroup.com/?l=linux-ide&m=114317385718285&w=2
2303
2304* Sun Nov 26 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.6.16-0vl60.1
2305- add patch20000 for fix CVE-2006-4997
2306- add patch20010 for fix CVE-2006-4572
2307- add patch20020 for fix CVE-2006-4623
2308- add patch20030 for fix CVE-2005-4352
2309- add patch20040 for fix CVE-2006-5619
2310- add patch20050 for fix CVE-2006-5757
2311- add patch1361 for fix e1000 suspend/resume powerup and irq allocation
2312- add patch1380 for support sis900 new PHY
2313- add patch2300 for fix pppoe
2314
2315* Fri Oct 27 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl60
2316- add Patch1344 to fix sky2 88E803X transmit lokup problem (<BTS:309>)
2317  http://marc.theaimsgroup.com/?l=git-commits-head&m=116146456420139&w=2
2318
2319* Tue Oct 24 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl59
2320- [ppc] drop Patch351, and add/modify Patch352, Patch353 and Patch354
2321        for better offb/BootX fixes, taken from linux-2.6 git tree
2322  - Patch352: ab13446616118dc61c00ea50cc49919400717dd0 (v2.6.18-rc1)
2323  - Patch353: 98c82472e98469ef23d7c680a0d6be1429540166 (v2.6.18-rc3)
2324  - Patch354: 6cdd2bdfb9e2449f1c8a0f729cdf9cfd733dd63f (v2.6.18-rc5)
2325- [ppc] add Patch355 (eMac lockup fix)
2326  - Patch355: 5a47d749e3d067e057d276075fed1d91749d3841 (v2.6.17-rc6)
2327
2328* Fri Oct 20 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl58
2329- add Patch6025 (ad-hoc unicon revert patch for ppc)
2330- add mol-kmods subpackage (which needs fully-built kernel source to compile)
2331- fix %%post section (for snd-powermac and vmlinu[xz] symlinks)
2332
2333* Thu Oct 19 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl57
2334- add Patch1371 for r1000 driver 1.0.4
2335
2336* Tue Oct 17 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl56
2337- update x86 config
2338  - enable more drivers
2339  - disable cpufreq-nforce2
2340
2341* Sun Oct 15 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl55
2342- update sdhci driver to 0.12
2343
2344* Sun Oct 15 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl54
2345- add sdhci driver 0.11 (from mm patch)
2346
2347* Sat Oct 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl53
2348- add bcm43xx driver backported from 2.6.17
2349- fix typo in %%post
2350- update x86 config
2351
2352* Fri Oct 06 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl52
2353- replace Patch1880
2354  - Patch inserts PCI memory mapped config region(s) into the resource map. This
2355    will allow for the MMCCONFIG regions to be marked as busy in the iomem
2356    address space as well as the regions(s) showing up in /proc/iomem.
2357    (backported from 2.6.19-rc)
2358
2359* Thu Oct 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl51
2360- add Patch1880 (<BTS:218>)
2361  - Disable MMCONFIG on Intel SDV using DMI blacklist
2362    (see http://www.x86-64.org/lists/patches/msg03704.html)
2363- add Patch2210 to suuport Marvell PATA controller by generic ide driver.
2364- use vmlinux symlink on ppc architecture
2365
2366* Thu Oct 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl50
2367- add ivtv driver fix (Thanks to T.Adachi)
2368
2369* Sun Oct 01 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl49
2370- update unicon patch (<BTS:196>)
2371- fix %%post to correct modprobe.conf.dist path.
2372
2373* Tue Sep 26 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl48
2374- update ivtv driver to fix bug (Thanks to T.Adachi)
2375
2376* Mon Sep 25 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl47
2377- update unicon patch to fix broken double byte chars with gpm.
2378  - XXX: still broken on selecting strings with gpm.
2379  - We are not supporting gpm any longer, do not expect any
2380    fix for this.
2381
2382* Sat Sep 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl46
2383- add Patch3100 to use mutexes in firmware_class
2384
2385* Fri Sep 22 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl45
2386- update to 2.6.16.29
2387
2388* Thu Sep 21 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl44
2389- add Patch2120 to add vt8237a support for sata_via
2390- update Patch2110 to add SiS ahci controller's pciid
2391- add more Japanese summaries.
2392
2393* Wed Sep 20 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl43
2394- change Group of kernel-doc to Applications/Documentation
2395
2396* Sun Sep 17 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl42
2397- add Patch352 to fix boot with ramdisk from BootX on OldWorld PowerMac
2398  (patch derived from BenH, then appeared on Ubuntu Malone #50746)
2399
2400* Sun Sep 17 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl41
2401- disable CONFIG_SND_AOA* on ppc.config (use snd-powermac instead)
2402
2403* Sun Sep 17 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl40
2404- add Patch1343 to fix sky2 "phy read timeout" message flood.
2405  (<BTS:189>)
2406
2407* Sun Sep 17 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl39
2408- update sky2 to 1.7 (<BTS:189>)
2409- renumber sky2/skge patches
2410
2411* Sat Sep 16 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl38
2412- add Patch1370 to update r8169 driver
2413  - add support RTL8168*/RTL810x
2414
2415* Mon Sep 11 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl37
2416- add Patch2200 to support JMicron JMB36x ATA controllers
2417  by legacy IDE driver
2418- update configs
2419
2420* Sun Sep 10 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl36
2421- update Patch6000 to fix unicon
2422  (FIXME: bootsplash does not support unicon)
2423- add Patch2110 to add newer chipset support for AHCI
2424  (JMicron, ATI, NVIDIA)
2425   
2426* Sat Sep 09 2006 NAKAMURA Kenta <kenta@vinelinux.org> 2.6.16-0vl35
2427- update x86_64.config (CONFIG_SND_VXPOCKET is not set)
2428
2429* Fri Sep 08 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl34
2430- add Patch351 for offb on unsupported cards
2431
2432* Fri Sep 08 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl33
2433- fix ppc.config (CONFIG_FB_RIVA is not set, disable unneeded snd modulers)
2434- fix Patch3000 (no changes under ppc/ directory - it's broken)
2435
2436* Tue Sep 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl32
2437- update e1000 driver to 7.2.7
2438- update configs
2439
2440* Mon Sep 04 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl31
2441- update alsa-driver to 1.0.12
2442- update e1000 driver to 7.1.9-k4 (from 2.6.18-rc5) (<BTS:0136>)
2443- add patch10000 to remove localized version string from /proc/version
2444  (<BTS:0126>)
2445- update unionfs to 1.2 (<BTS:0131>)
2446
2447* Sun Sep 03 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl30
2448- fix ppc.config (CONFIG_XMON etc)
2449
2450* Thu Aug 31 2006 NAKAMURA Kenta <kenta@vinelinux.org> 2.6.16-0vl29
2451- update x86_64.config
2452
2453* Tue Aug 29 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl28
2454- update to 2.6.16.28
2455
2456* Fri Aug 25 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl27
2457- fix more of ppc.config (CONFIG_MD etc)
2458
2459* Wed Aug 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl26
2460- add Patch1350,1351 for sky2 update
2461  - sky2-1.5, sky2 jumbo paket fix
2462- add Patch1352 for skge update
2463- add Patch2100 to add support Promise 2037x SATA controllers with PATA ports
2464
2465* Thu Aug 10 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl25
2466- update x86.config, re-create i586.config from i686.config
2467- add Patch1850 from FC (add nosoftlock runtime option)
2468
2469* Wed Jul 26 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl24
2470- add Patch1203 to fix nfsd crash.
2471
2472* Tue Jul 25 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl23
2473- update to 2.6.16.27
2474
2475* Thu Jul 20 2006 NAKAMURA Kenta <kenta@vinelinux.org> 2.6.16-0vl22
2476- update x86_64.config
2477
2478* Tue Jul 18 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl21
2479- update to 2.6.16.26
2480
2481* Fri Jul 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl20
2482- update to 2.6.16.24
2483
2484* Sun Jul 02 2006 NAKAMURA Kenta <kenta@vinelinux.org> 2.6.16-0vl19
2485- update x86_64.config, add CONFIG_HPET_EMULATE_RTC=y
2486  (see [VineSeed-x86_64:00146] from s.mishima)
2487
2488* Wed Jun 28 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl18
2489- modify Patch3000 for ppc
2490- disable swsusp on ppc again
2491- update ppc.config
2492
2493* Wed Jun 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl17
2494- update to 2.6.16.22
2495- disable buildsmp, default normal kernel supports smp now.
2496
2497* Tue Jun 13 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl16
2498- update to 2.6.16.20
2499
2500* Sun May 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl15
2501- update to 2.6.16.18
2502- update squashfs to 3.0
2503
2504* Sun May 21 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl14
2505- update to 2.6.16.17
2506
2507* Tue May 16 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl13
2508- add Patch3000 to update alsa driver from 2.6.17-rc4
2509
2510* Tue May 16 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl12
2511- add saa7133gyc/ivtv driver from paken. (Patch7000)
2512  (Thanks for T.Adachi)
2513- update ix86 config
2514  add CONFIG_VIDEO_GR3DYCS=m, CONFIG_VIDEO_IVTV=m
2515
2516* Sat May 13 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl11
2517- update to 2.6.16.16
2518- update ix86 config
2519
2520* Wed May 03 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl10
2521- update to 2.6.16.13
2522- update software suspend2 to 2.2.5
2523
2524* Wed Apr 26 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl9
2525- enable swsusp2 on ppc (for testing)
2526
2527* Thu Apr 20 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl8
2528- update to 2.6.16.9
2529
2530* Wed Apr 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl7
2531- update to 2.6.16.4
2532- update software suspend2 to 2.2.4
2533
2534* Tue Mar 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl6
2535- update to 2.6.16.1
2536- update software suspend2 to 2.2.2.1
2537
2538* Tue Mar 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl5
2539- XXX:temporarily back to suspend2-2.2.0.1, 2.2.1 does not work correctly.
2540
2541* Tue Mar 21 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl4
2542- fix more of ppc configs
2543
2544* Mon Mar 20 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl3
2545- update ppc configs
2546
2547* Mon Mar 20 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl2
2548- update x86_64 configs
2549
2550* Mon Mar 20 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.16-0vl1
2551- update to 2.6.16
2552- update ix86*, x86_64* configs
2553  regenerate smp configs from up config
2554- update software suspend2 to 2.2.1
2555
2556* Sat Mar 04 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.15-0vl7
2557- fix unicon driver
2558- update x86_64 configs (still need to work)
2559- TODO: ppc* configs
2560
2561* Thu Mar 02 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.15-0vl6
2562- add missing files to -devel package
2563
2564* Wed Mar 01 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.15-0vl5
2565- add symlinks for initrd/initrd.old
2566
2567* Wed Mar 01 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.15-0vl4
2568- add Patch6011 to fix supermount-ng
2569- add Patch6031 to fix unionfs
2570
2571* Tue Feb 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.15-0vl3
2572- update ix86* config
2573- drop some FC patches
2574  - debug optios, execshield
2575
2576* Mon Feb 27 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.15-0vl2
2577- update to 2.6.16-rc5
2578- update ix86* configs
2579- update software suspend2 to 2.2.0.1
2580- update unionfs to 1.1.3.20060221
2581- TODO: unicon driver should be fixed
2582- TODO: ppc* configs and x86_64* configs not fixed yet
2583
2584* Sun Feb 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.15-0vl1
2585- update to 2.6.16-rc2
2586- update ix86* config
2587- update squashfs to 2.2-r2
2588- update software suspend2 to 2.2 (not applied yet)
2589- TODO: unicon driver should be fixed
2590
2591* Mon Oct 24 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.14-0vl1
2592- upated to 2.6.14.3
2593- update ix86* config
2594- update software suspend to 2.2-rc13
2595- TODO: unicon driver should be fixed
2596
2597* Thu Aug 18 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.14-0vl0
2598- based on 2.6.14-1.1636_FC4 (changelogs NOT merged yet)
2599- updated to 2.6.14.2
2600- Patch6000 (unicon) temporally disabled - TODO in top priority!
2601- updated Patch6030 (unionfs 1.1.1), with eliminating asm/segment.h inclusion
2602  (ppc* and sparc* don't have asm/segment.h - see ChangeLog-2.6.14)
2603- TODO: ix86* configs not fixed yet
2604
2605* Thu Aug 18 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.12-0vl11
2606- added Patch313 for better fan control on recent PowerBooks
2607  (http://lists.debian.org/debian-powerpc/2005/08/msg00478.html)
2608
2609* Thu Aug 18 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.12-0vl10
2610- added Patch1920
2611  (http://lists.debian.org/debian-powerpc/2005/01/msg00219.html)
2612
2613* Thu Aug 18 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.12-0vl9
2614- some more fixes for ppc.config and ppc-smp.config (THERM_* to y)
2615- updated Patch6030 (unionfs 1.0.3)
2616- added Patch312 to supress CPU-temp messages from therm_windtunnel module
2617
2618* Sun Aug 14 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.12-0vl7
2619- more fixes for ppc.config and ppc-smp.config
2620
2621* Thu Jul 14 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.12-0vl6
2622- initial attempt for ppc archtecture (ppc64 not yet)
2623
2624* Fri Jun 24 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.12-0vl5
2625- update to 2.6.12.1 (was not applied in 2.6.12-0vl4)
2626- add suquashfs-2.1-r2 (Patch6030)
2627- update configs
2628  - change to 'y' for BLK_DEV_LOOP, CRAMFS, SQUASHFS
2629  - set samba default codepage to cp932
2630  - set vfat default codepage to cp932, default iocharset to euc-jp
2631  - set NLS_DEFAULT to cp932 instead of utf-8
2632
2633* Wed Jun 22 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.12-0vl4
2634- add requires: kernel-doc instead of kernel26-doc
2635
2636* Tue Jun 21 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.12-0vl3
2637- rename kernel26 to kernel
2638
2639* Mon Jun 20 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.12-0vl2
2640- update configs
2641  - enable CONFIG_INPUT_MOUSEDEV_PSAUX for compatibility
2642
2643* Sat Jun 18 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.12-0vl1
2644- update to 2.6.12
2645- remove tux http accelerator
2646
2647* Sat Jun 11 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.11-0vl7
2648- fix saa7133gyc driver
2649- add Patch200 to add no_timer_check hack for i386 kernel.
2650  (thanks to NAKAMURA Kenta)
2651- update configs
2652  - enable IO_APIC in UP kernel.
2653
2654* Fri Jun 10 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.11-0vl6
2655- update to 2.6.12-rc6
2656- add software suspend 2.1.9 ( not applyed yet )
2657- add Patch6030 for unionfs-1.0.12a
2658- update configs
2659
2660* Wed Jun 08 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.11-0vl5
2661- add kernel-source package.
2662
2663* Sun Jun 05 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.11-0vl4
2664- fix and update bootsplash to 3.1.6
2665- add Patch6010 for supermount-ng-2.0.8
2666
2667* Sun May 29 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.11-0vl3
2668- add Patch6010 for bootsplash-3.1.4
2669
2670* Sun May 29 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.11-0vl2
2671- port unicon patch(Patch6000) from 2.6.9 ppc kernel.
2672
2673* Sat May 28 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.11-0vl1
2674- initial build of kernel26 package for Vine Linux
2675  (partially based on FC kernel)
2676- update to kernel-2.6.12-rc5
2677- use Vine Logo for fb console.
2678
2679* Tue May 24 2005 Dave Jones <davej@redhat.com>
2680- Update various cpufreq drivers.
2681
2682* Mon May 23 2005 Dave Jones <davej@redhat.com>
2683- Add extra id to SATA Sil driver. (#155748)
2684- Fix oops on rmmod of lanai & ms558 drivers when no hardware present.
2685
2686* Mon May 23 2005 Dave Jones <davej@redhat.com>
2687- Fix double unlock of spinlock on tulip. (#158522)
2688
2689* Mon May 23 2005 David Woodhouse <dwmw2@redhat.com>
2690- audit updates: log serial # in user messages, escape comm= in syscalls
2691
2692* Mon May 23 2005 Dave Jones <davej@redhat.com>
2693- 2.6.12-rc4-git6
2694  MMC update, reiserfs fixes, AIO fix.
2695- Fix absolute symlink in -devel (#158582)
2696- 2.6.12-rc4-git7
2697  PPC64 & i2c fixes
2698- Fix another divide by zero in ipw2100 (#158406)
2699- Fix dir ownership in kernel-doc rpm (#158478)
2700
2701* Sun May 22 2005 Dave Jones <davej@redhat.com>
2702- Fix divide by zero in ipw2100 driver. (#158406)
2703- 2.6.12-rc4-git5
2704  More x86-64 updates, Further pktcdvd frobbing,
2705  yet more dvb updates, x86(64) ioremap fixes,
2706  ppc updates, IPMI sysfs support (reverted for now due to breakage),
2707  various SCSI fixes (aix7xxx, spi transport), vmalloc improvements
2708
2709* Sat May 21 2005 David Woodhouse <dwmw2@redhat.com>
2710- Fix oops in avc_audit() (#158377)
2711- Include serial numbers in non-syscall audit messages
2712
2713* Sat May 21 2005 Bill Nottingham <notting@redhat.com>
2714- bump ipw2200 conflict
2715
2716* Sat May 21 2005 Dave Jones <davej@redhat.com> [2.6.11-1.1334_FC4]
2717- driver core: restore event order for device_add()
2718
2719* Sat May 21 2005 David Woodhouse <dwmw2@redhat.com>
2720- More audit updates. Including a fix for AVC_USER messages.
2721
2722* Fri May 20 2005 Dave Jones <davej@redhat.com>
2723- 2.6.12-rc4-git4
2724  networking fixes (netlink, pkt_sched, ipsec, netfilter,
2725  ip_vs, af_unix, ipv4/6, xfrm). TG3 driver improvements.
2726
2727* Thu May 19 2005 Dave Jones <davej@redhat.com> [2.6.11-1.1327_FC4]
2728- 2.6.12-rc4-git3
2729  Further fixing to raw driver. More DVB updates,
2730  driver model updates, power management improvements,
2731  ext3 fixes. 
2732- Radeon on thinkpad backlight power-management goodness.
2733  (Peter Jones owes me two tacos).
2734- Fix ieee1394 smp init.
2735
2736* Thu May 19 2005 Rik van Riel <riel@redhat.com>
2737- Xen: disable TLS warning (#156414)
2738
2739* Thu May 19 2005 David Woodhouse <dwmw2@redhat.com>
2740- Update audit patches
2741
2742* Thu May 19 2005 Dave Jones <davej@redhat.com> [2.6.11-1.1325_FC4]
2743- Fix up missing symbols in ipw2200 driver.
2744- Reenable debugfs / usbmon. SELinux seems to cope ok now.
2745  (Needs selinux-targeted-policy >= 1.23.16-1)
2746
2747* Wed May 18 2005 Dave Jones <davej@redhat.com>
2748- Fix up some warnings in the IDE patches.
2749- 2.6.12-rc4-git2
2750  Further pktcdvd fixing, DVB update, Lots of x86-64 updates,
2751  ptrace fixes, ieee1394 changes, input layer tweaks,
2752  md layer fixes, PCI hotplug improvements, PCMCIA fixes,
2753  libata fixes, serial layer, usb core, usbnet, VM fixes,
2754  SELinux tweaks.
2755- Update ipw2100 driver to 1.1.0
2756- Update ipw2200 driver to 1.0.4 (#158073)
2757
2758* Tue May 17 2005 Dave Jones <davej@redhat.com>
2759- 2.6.12-rc4-git1
2760  ARM, ioctl security fixes, mmc driver update,
2761  ibm_emac & tulip netdriver fixes, serial updates
2762  ELF loader security fix.
2763
2764* Mon May 16 2005 Rik van Riel <riel@redhat.com>
2765- enable Xen again (not tested yet)
2766- fix a typo in the EXPORT_SYMBOL patch
2767
2768* Sat May 14 2005 Dave Jones <davej@redhat.com>
2769- Update E1000 driver from netdev-2.6 tree.
2770- Add some missing EXPORT_SYMBOLs.
2771
2772* Fri May 13 2005 Dave Jones <davej@redhat.com>
2773- Bump maximum supported CPUs on x86-64 to 32.
2774- Tickle the NMI watchdog when we're doing serial writes.
2775- SCSI CAM geometry fix.
2776- Slab debug single-bit error improvement.
2777
2778* Thu May 12 2005 David Woodhouse <dwmw2@redhat.com>
2779- Enable CONFIG_ISA on ppc32 to make the RS/6000 user happy.
2780- Update audit patches
2781
2782* Wed May 11 2005 Dave Jones <davej@redhat.com>
2783- Add Ingo's patch to detect soft lockups.
2784- Thread exits silently via __RESTORE_ALL exception for iret. (#154369)
2785
2786* Wed May 11 2005 David Woodhouse <dwmw2@redhat.com>
2787- Import post-rc4 audit fixes from git, including ppc syscall auditing
2788
2789* Wed May 11 2005 Dave Jones <davej@redhat.com>
2790- Revert NMI watchdog changes.
2791
2792* Tue May 10 2005 Dave Jones <davej@redhat.com>
2793- Enable PNP on x86-64
2794
2795* Tue May 10 2005 Jeremy Katz <katzj@redhat.com>
2796- make other -devel packages provide kernel-devel so they get
2797  installed instead of upgraded (#155988)
2798
2799* Mon May  9 2005 Dave Jones <davej@redhat.com>
2800- Rebase to 2.6.12-rc4
2801  | Xen builds are temporarily disabled again.
2802- Conflict if old version of ipw firmware is present.
2803
2804* Fri May  6 2005 Dave Jones <davej@redhat.com>
2805- Add PCI ID for new sundance driver. (#156859)
2806
2807* Thu May  5 2005 David Woodhouse <dwmw2@redhat.com>
2808- Import audit fixes from upstream
2809
2810* Wed May  4 2005 Jeremy Katz <katzj@redhat.com>
2811- enable radeonfb and agp on ppc64 to fix X on the G5
2812
2813* Tue May  3 2005 Dave Jones <davej@redhat.com>
2814- Disable usbmon/debugfs again for now until SELinux policy is fixed.
2815
2816* Mon May  2 2005 David Woodhouse <dwmw2@redhat.com>
2817- Make kallsyms include platform-specific symbols
2818- Fix might_sleep warning in pbook clock-spreading fix
2819
2820* Sun May  1 2005 Dave Jones <davej@redhat.com>
2821- Fix yesterdays IDE fixes.
2822- Blacklist another brainless SCSI scanner. (#155457)
2823
2824* Sun May  1 2005 David Woodhouse <dwmw2@redhat.com>
2825- Fix EHCI port power switching
2826
2827* Sun May  1 2005 Dave Jones <davej@redhat.com>
2828- Enable usbmon & debugfs. (#156489)
2829
2830* Sat Apr 30 2005 Dave Jones <davej@redhat.com>
2831- Numerous IDE layer fixes from Alan Cox.
2832- Kill off some stupid messages from the input layer.
2833
2834* Fri Apr 29 2005 Roland McGrath <roland@redhat.com>
2835- Fix the 32bit emulation on x86-64 segfaults.
2836
2837* Wed Apr 27 2005 Dave Jones <davej@redhat.com>
2838- Hopefully fix the random reboots some folks saw on x86-64.
2839
2840* Wed Apr 27 2005 Jeremy Katz <katzj@redhat.com>
2841- fix prereqs for -devel packages
2842
2843* Wed Apr 27 2005 Rik van Riel <riel@redhat.com>
2844- Fix up the vdso stuff so kernel-xen* compile again
2845- Import upstream bugfix so xenU domains can be started again
2846
2847* Tue Apr 26 2005 Dave Jones <davej@redhat.com>
2848- Fix up the vdso again, which broke on the last rebase to -rc3
2849- Fix the put_user() fix. (#155999)
2850
2851* Mon Apr 25 2005 Dave Jones <davej@redhat.com>
2852- Fix x86-64 put_user()
2853- Fix serio oops.
2854- Fix ipv6_skip_exthdr() invocation causing OOPS.
2855- Fix up some permissions on some /proc files.
2856- Support PATA drives on Promise SATA. (#147303)
2857
2858* Mon Apr 25 2005 Rik van Riel <riel@redhat.com>
2859- upgrade to the latest version of xenolinux patches
2860- reenable xen (it boots, ship it!)
2861
2862* Sat Apr 23 2005 David Woodhouse <dwmw2@redhat.com>
2863- Enable adt746x and windtunnel thermal modules
2864- Disable clock spreading on certain pbooks before sleep
2865- Sound support for Mac Mini
2866
2867* Fri Apr 22 2005 Dave Jones <davej@redhat.com>
2868- Reenable i2c-viapro on x86-64.
2869
2870* Fri Apr 22 2005 Dave Jones <davej@redhat.com>
2871- Don't build powernow-k6 on anything other than 586 kernels.
2872- Temporarily disable Xen again.
2873
2874* Wed Apr 20 2005 Dave Jones <davej@redhat.com>
2875- 2.6.12rc3
2876
2877* Wed Apr 20 2005 Dave Jones <davej@redhat.com>
2878- Adjust struct dentry 'padding' based on 64bit'ness.
2879
2880* Tue Apr 19 2005 Dave Jones <davej@redhat.com>
2881- Print stack trace when we panic.
2882  Might give more clues for some of the wierd panics being seen right now.
2883- Blacklist another 'No C2/C3 states' Thinkpad R40e BIOS. (#155236)
2884
2885* Mon Apr 18 2005 Dave Jones <davej@redhat.com>
2886- Make ISDN ICN driver not oops when probed with no hardware present.
2887- Add missing MODULE_LICENSE to mac_modes.ko
2888
2889* Sat Apr 16 2005 Dave Jones <davej@redhat.com>
2890- Make some i2c drivers arch dependant.
2891- Make multimedia buttons on Dell inspiron 8200 work. (#126148)
2892- Add diffutils buildreq (#155121)
2893
2894* Thu Apr 14 2005 Dave Jones <davej@redhat.com>
2895- Build DRM modular. (#154769)
2896
2897* Wed Apr 13 2005 Rik van Riel <riel@redhat.com>
2898- fix up Xen for 2.6.12-rc2
2899- drop arch/xen/i386/signal.c, thanks to Roland's vdso patch (yay!)
2900- reenable xen compile - this kernel test boots on my system
2901
2902* Tue Apr 12 2005 Dave Jones <davej@redhat.com>
2903- Further vdso work from Roland.
2904
2905* Mon Apr 11 2005 David Woodhouse <dwmw2@redhat.com>
2906- Disable PPC cpufreq/sleep patches which make sleep less reliable
2907- Add TIMEOUT to hotplug environment when requesting firmware (#153993)
2908
2909* Sun Apr 10 2005 Dave Jones <davej@redhat.com>
2910- Integrate Roland McGrath's changes to make exec-shield
2911  and vdso play nicely together.
2912
2913* Fri Apr  8 2005 Dave Jones <davej@redhat.com>
2914- Disable Longhaul driver (again).
2915
2916* Wed Apr  6 2005 Dave Jones <davej@redhat.com>
2917- 2.6.12rc2
2918  - netdump/netconsole currently broken.
2919  - Xen temporarily disabled.
2920
2921* Fri Apr  1 2005 Dave Jones <davej@redhat.com>
2922- Make the CFQ elevator the default again.
2923
2924* Thu Mar 31 2005 Rik van Riel <riel@redhat.com>
2925- upgrade to new upstream Xen code, twice
2926- for performance reasons, disable CONFIG_DEBUG_PAGEALLOC for FC4t2
2927
2928* Wed Mar 30 2005 Rik van Riel <riel@redhat.com>
2929- fix Xen kernel compilation (pci, page table, put_user, execshield, ...)
2930- reenable Xen kernel compilation
2931
2932* Tue Mar 29 2005 Rik van Riel <riel@redhat.com>
2933- apply Xen patches again (they don't compile yet, though)
2934- Use uname in kernel-devel directories (#145914)
2935- add uname-based kernel-devel provisions (#152357)
2936- make sure /usr/share/doc/kernel-doc-%%{kversion} is owned by a
2937  package, so it will get removed again on uninstall/upgrade (#130667)
2938
2939* Mon Mar 28 2005 Dave Jones <davej@redhat.com>
2940- Don't generate debuginfo files if %%_enable_debug_packages isnt set. (#152268)
2941
2942* Sun Mar 27 2005 Dave Jones <davej@redhat.com>
2943- 2.6.12rc1-bk2
2944- Disable NVidia FB driver for time being, it isn't stable.
2945
2946* Thu Mar 24 2005 Dave Jones <davej@redhat.com>
2947- rebuild
2948
2949* Tue Mar 22 2005 Dave Jones <davej@redhat.com>
2950- Fix several instances of swapped arguments to memset()
2951- 2.6.12rc1-bk1
2952
2953* Fri Mar 18 2005 Dave Jones <davej@redhat.com>
2954- kjournald release race. (#146344)
2955- 2.6.12rc1
2956
2957* Thu Mar 17 2005 Rik van Riel <riel@redhat.com>
2958- upgrade to latest upstream Xen code
2959
2960* Tue Mar 15 2005 Rik van Riel <riel@redhat.com>
2961- add Provides: headers for external kernel modules (#149249)
2962- move build & source symlinks from kernel-*-devel to kernel-* (#149210)
2963- fix xen0 and xenU devel %%post scripts to use /usr/src/kernels (#149210)
2964
2965* Thu Mar 10 2005 Dave Jones <davej@redhat.com>
2966- Reenable advansys driver for x86
2967
2968* Tue Mar  8 2005 Dave Jones <davej@redhat.com>
2969- Change SELinux execute-related permission checking. (#149819)
2970
2971* Sun Mar  6 2005 Dave Jones <davej@redhat.com>
2972- Forward port some FC3 patches that got lost.
2973
2974* Fri Mar  4 2005 Dave Jones <davej@redhat.com>
2975- Fix up ACPI vs keyboard controller problem.
2976- Fix up Altivec usage on PPC/PPC64.
2977
2978* Fri Mar  4 2005 Dave Jones <davej@redhat.com>
2979- Finger the programs that try to read from /dev/mem.
2980- Improve spinlock debugging a little.
2981
2982* Thu Mar  3 2005 Dave Jones <davej@redhat.com>
2983- Fix up the unresolved symbols problem.
2984
2985* Thu Mar  3 2005 Rik van Riel <riel@redhat.com>
2986- upgrade to new Xen snapshot (requires new xen RPM, too)
2987
2988* Wed Mar  2 2005 Dave Jones <davej@redhat.com>
2989- 2.6.11
2990
2991* Tue Mar 1 2005 David Woodhouse <dwmw2@redhat.com>
2992- Building is nice. Booting would be better. Work around GCC -Os bug which
2993  which makes the PPC kernel die when extracting its initramfs. (#150020)
2994- Update include/linux/compiler-gcc+.h
2995
2996* Tue Mar 1 2005 Dave Jones <davej@redhat.com>
2997- 802.11b/ipw2100/ipw2200 update.
2998- 2.6.11-rc5-bk4
2999
3000* Tue Mar 1 2005 David Woodhouse <dwmw2@redhat.com>
3001- Fix ppc/ppc64/ppc64iseries builds for gcc 4.0
3002- Fix Xen build too
3003
3004* Mon Feb 28 2005 Dave Jones <davej@redhat.com>
3005- 2.6.11-rc5-bk3
3006- Various compile fixes for building with gcc-4.0
3007
3008* Sat Feb 26 2005 Dave Jones <davej@redhat.com>
3009- 2.6.11-rc5-bk1
3010
3011* Fri Feb 25 2005 Dave Jones <davej@redhat.com>
3012- Hopefully fix the zillion unresolved symbols. (#149758)
3013
3014* Thu Feb 24 2005 Dave Jones <davej@redhat.com>
3015- 2.6.11-rc5
3016
3017* Wed Feb 23 2005 Rik van Riel <riel@redhat.com>
3018- get rid of unknown symbols in kernel-xen0 (#149495)
3019
3020* Wed Feb 23 2005 Dave Jones <davej@redhat.com>
3021- 2.6.11-rc4-bk11
3022
3023* Mon Feb 21 2005 Dave Jones <davej@redhat.com>
3024- 2.6.11-rc4-bk9
3025
3026* Sat Feb 19 2005 Dave Jones <davej@redhat.com>
3027- 2.6.11-rc4-bk7
3028
3029* Sat Feb 19 2005 Rik van Riel <riel@redhat.com>
3030- upgrade to newer Xen code, needs xen-20050218 to run
3031
3032* Sat Feb 19 2005 Dave Jones <davej@redhat.com>
3033- 2.6.11-rc4-bk6
3034
3035* Fri Feb 18 2005 David Woodhouse <dwmw2@redhat.com>
3036- Add SMP kernel for PPC32
3037
3038* Fri Feb 18 2005 Dave Jones <davej@redhat.com>
3039- 2.6.11-rc4-bk5
3040
3041* Tue Feb 15 2005 Dave Jones <davej@redhat.com>
3042- 2.6.11-rc4-bk3
3043
3044* Mon Feb 14 2005 Dave Jones <davej@redhat.com>
3045- 2.6.11-rc4-bk2
3046
3047* Sun Feb 13 2005 Dave Jones <davej@redhat.com>
3048- 2.6.11-rc4-bk1
3049
3050* Sat Feb 12 2005 Dave Jones <davej@redhat.com>
3051- 2.6.11-rc4
3052
3053* Fri Feb 11 2005 Dave Jones <davej@redhat.com>
3054- 2.6.11-rc3-bk8
3055
3056* Thu Feb 10 2005 Dave Jones <davej@redhat.com>
3057- 2.6.11-rc3-bk7
3058
3059* Wed Feb  9 2005 Dave Jones <davej@redhat.com>
3060- 2.6.11-rc3-bk6
3061
3062* Tue Feb  8 2005 Dave Jones <davej@redhat.com>
3063- Enable old style and new style USB initialisation.
3064- More PPC jiggery pokery hackery.
3065- 2.6.11-rc3-bk5
3066
3067* Mon Feb  7 2005 Dave Jones <davej@redhat.com>
3068- 2.6.11-rc3-bk4
3069- Various patches to unbork PPC.
3070- Display taint bits on VM error.
3071
3072* Mon Feb  7 2005 Rik van Riel <riel@redhat.com>
3073- upgrade to latest upstream Xen bits, upgrade those to 2.6.11-rc3-bk2
3074
3075* Sat Feb  5 2005 Dave Jones <davej@redhat.com>
3076- 2.6.11-rc3-bk2
3077
3078* Fri Feb  4 2005 Dave Jones <davej@redhat.com>
3079- 2.6.11-rc3-bk1
3080
3081* Wed Feb  2 2005 Dave Jones <davej@redhat.com>
3082- Stop the input layer spamming the console. (#146906)
3083- 2.6.11-rc3
3084
3085* Tue Feb  1 2005 Dave Jones <davej@redhat.com>
3086- 2.6.11-rc2-bk10
3087- Reenable periodic slab checker.
3088
3089* Tue Feb  1 2005 Rik van Riel <riel@redhat.com>
3090- update to latest xen-unstable source snapshot
3091- add agpgart patch from upstream xen tree
3092- port Ingo's latest execshield updates to Xen
3093
3094* Mon Jan 31 2005 Rik van Riel <riel@redhat.com>
3095- enable SMP support in xenU kernel, use the xen0 kernel for the
3096  unprivileged domains if the SMP xenU breaks on your system
3097
3098* Thu Jan 27 2005 Dave Jones <davej@redhat.com>
3099- Drop VM hack that broke in yesterdays rebase.
3100
3101* Wed Jan 26 2005 Dave Jones <davej@redhat.com>
3102- Drop 586-SMP kernels.  These are a good candidate for
3103  fedora-extras when it appears. The number of people
3104  actually using this variant is likely to be very very small.
3105- 2.6.11-rc2-bk4
3106
3107* Tue Jan 25 2005 Dave Jones <davej@redhat.com>
3108- 2.6.11-rc2-bk3
3109
3110* Sun Jan 23 2005 Dave Jones <davej@redhat.com>
3111- Updated periodic slab debug check from Manfred.
3112- Enable PAGE_ALLOC debugging again, it should now be fixed.
3113- 2.6.11-rc2-bk1
3114
3115* Fri Jan 21 2005 Dave Jones <davej@redhat.com>
3116- Rebase to 2.6.11-rc2
3117
3118* Fri Jan 21 2005 Rik van Riel <riel@redhat.com>
3119- make exec-shield segment limits work inside the xen kernels
3120
3121* Thu Jan 20 2005 Dave Jones <davej@redhat.com>
3122- Rebase to -bk8
3123
3124* Wed Jan 19 2005 Dave Jones <davej@redhat.com>
3125- Re-add diskdump/netdump based on Jeff Moyers patches.
3126- Rebase to -bk7
3127
3128* Tue Jan 18 2005 Jeremy Katz <katzj@redhat.com>
3129- fixup xen0 %%post to use new grubby features for multiboot kernels
3130- conflict with older mkinitrd for kernel-xen0
3131
3132* Tue Jan 18 2005 Dave Jones <davej@redhat.com>
3133- -bk6
3134
3135* Mon Jan 17 2005 Dave Jones <davej@redhat.com>
3136- First stab at kernel-devel packages. (David Woodhouse).
3137
3138* Mon Jan 17 2005 Rik van Riel <riel@redhat.com>
3139- apply dmi fix, now xenU boots again
3140
3141* Fri Jan 14 2005 Dave Jones <davej@redhat.com>
3142- Rebase to 2.6.11-bk2
3143
3144* Thu Jan 13 2005 Dave Jones <davej@redhat.com>
3145- Rebase to 2.6.11-bk1
3146
3147* Wed Jan 12 2005 Dave Jones <davej@redhat.com>
3148- Rebase to 2.6.11rc1
3149
3150* Tue Jan 11 2005 Rik van Riel <riel@redhat.com>
3151- fix Xen compile with -bk14
3152
3153* Tue Jan 11 2005 Dave Jones <davej@redhat.com>
3154- Update to -bk14
3155- Print tainted information in slab corruption messages.
3156
3157* Tue Jan 11 2005 Rik van Riel <riel@redhat.com>
3158- merge fix for the Xen TLS segment fixup issue
3159
3160* Tue Jan 11 2005 Dave Jones <davej@redhat.com>
3161- Depend on hardlink, not kernel-utils.
3162
3163* Mon Jan 10 2005 Dave Jones <davej@redhat.com>
3164- Update to -bk13, reinstate GFP_ZERO patch which hopefully
3165  is now fixed.
3166- Add another Lexar card reader to the whitelist. (#143600)
3167- Package asm-m68k for asm-ppc includes. (don't ask). (#144604)
3168
3169* Sat Jan  8 2005 Dave Jones <davej@redhat.com>
3170- Periodic slab debug is incompatable with pagealloc debug.
3171  Disable the latter.
3172
3173* Fri Jan  7 2005 Dave Jones <davej@redhat.com>
3174- Santa came to Notting's house too. (another new card reader)
3175- Rebase to 2.6.10-bk10
3176
3177* Thu Jan  6 2005 Rik van Riel <riel@redhat.com>
3178- update to latest xen-unstable tree
3179- fix up Xen compile with -bk9, mostly pudding
3180
3181* Thu Jan  6 2005 Dave Jones <davej@redhat.com>
3182- Rebase to 2.6.10-bk9
3183
3184* Tue Jan  4 2005 Dave Jones <davej@redhat.com>
3185- Rebase to 2.6.10-bk7
3186- Add periodic slab debug checker.
3187
3188* Sun Jan  2 2005 Dave Jones <davej@redhat.com>
3189- Rebase to 2.6.10-bk5
3190
3191* Sat Jan  1 2005 Dave Jones <davej@redhat.com>
3192- Fix probing of vesafb. (#125890)
3193- Reenable EDD.
3194- Don't assume existance of ~/.gnupg (#142201)
3195
3196* Fri Dec 31 2004 Dave Jones <davej@redhat.com>
3197- Rebase to 2.6.10-bk4
3198
3199* Thu Dec 30 2004 Dave Jones <davej@redhat.com>
3200- Rebase to 2.6.10-bk3
3201
3202* Tue Dec 28 2004 Dave Jones <davej@redhat.com>
3203- Drop bogus ethernet slab cache.
3204
3205* Sun Dec 26 2004 Dave Jones <davej@redhat.com>
3206- Santa brought a new card reader that needs whitelisting.
3207
3208* Fri Dec 24 2004 Dave Jones <davej@redhat.com>
3209- Rebase to 2.6.10
3210
3211* Wed Dec 22 2004 Dave Jones <davej@redhat.com>
3212- Re-add missing part of the exit() race fix. (#142505, #141896)
3213
3214* Tue Dec 21 2004 Dave Jones <davej@redhat.com>
3215- Fix two silly bugs in the AGP posting fixes.
3216
3217* Fri Dec 17 2004 Dave Jones <davej@redhat.com>
3218- Fix bio error propagation.
3219- Clear ebp on sysenter return.
3220- Extra debugging info on OOM kill.
3221- exit() race fix.
3222- Fix refcounting order in sd/sr, fixing cable pulls on USB storage.
3223- IGMP source filter fixes.
3224- Fix ext2/3 leak on umount.
3225- fix missing wakeup in ipc/sem
3226- Fix another tux corner case bug.
3227- NULL out ptrs in airo driver after kfree'ing them.
3228
3229* Thu Dec 16 2004 Dave Jones <davej@redhat.com>
3230- Better version of the PCI Posting fixes for AGPGART.
3231- Add missing cache flush to the AGP code.
3232- Drop netdump and common crashdump code.
3233
3234* Mon Dec 13 2004 Dave Jones <davej@redhat.com>
3235- Drop diskdump. Aiming for a better kexec based solution for FC4.
3236
3237* Sun Dec 12 2004 Dave Jones <davej@redhat.com>
3238- fix false ECHILD result from wait* with zombie group leader.
3239
3240* Sat Dec 11 2004 Dave Jones <davej@redhat.com>
3241- Workaround broken pci posting in AGPGART.
3242- Compile 686 kernel tuned for pentium4.
3243  | Needs benchmarking across various CPUs under
3244  | various workloads to find out if its worth keeping.
3245- Make sure VC resizing fits in s16.
3246
3247* Fri Dec 10 2004 Dave Jones <davej@redhat.com>
3248- Prevent block device queues from being shared in viocd. (#139018)
3249- Libata updates. (#132848, #138405)
3250- aacraid: remove aac_handle_aif (#135527)
3251- fix uninitialized variable in waitid(2). (#142505)
3252- Fix CMSG validation checks wrt. signedness.
3253- Fix memory leak in ip_conntrack_ftp
3254- [IPV4]: Do not leak IP options.
3255- ppc64: Align PACA buffer for hypervisor's use. (#141817)
3256- ppc64: Indicate that the veth link is always up. (#135402)
3257- ppc64: Quiesce OpenFirmware stdin device at boot. (#142009)
3258- SELinux: Fix avc_node_update oops. (#142353)
3259- Fix CCISS ioctl return code.
3260- Make ppc64's pci_alloc_consistent() conform to documentation. (#140047)
3261- Enable EDD
3262- Enable ETH1394. (#138497)
3263- Workaround E1000 post-maturely writing back to TX descriptors. (#133261)
3264- Fix the previous E1000 errata workaround.
3265- Several IDE fixes from 2.6.9-ac
3266- vm pageout throttling. (#133858)
3267- Fix Tux from oopsing. (#140918)
3268- Fix Tux/SELinux incompatability (#140916)
3269- Fix Tux/IPV6 problem. (#140916)
3270- ide: Fix possible oops on boot.
3271- Make spinlock debugging panic instead of printk.
3272- Update Emulex lpfc driver to 8.0.16
3273- Selected patches from 2.6.9-ac12
3274- ppc64: Fix inability to find space for TCE table (#138844)
3275- Fix compat fcntl F_GETLK{,64} (#141680)
3276- blkdev_get_blocks(): handle eof
3277- Another card reader for the whitelist. (#134094)
3278- Disable tiglusb module. (#142102)
3279- E1000 64k-alignment fix. (#140047)
3280- Disable tiglusb module. (#142102)
3281- ID updates for cciss driver.
3282- Fix overflows in USB Edgeport-IO driver. (#142258)
3283- Fix wrong TASK_SIZE for 32bit processes on x86-64. (#141737)
3284- Fix ext2/ext3 xattr/mbcache race. (#138951)
3285- Fix bug where __getblk_slow can loop forever when pages are partially mapped. (#140424)
3286- Add missing cache flushes in agpgart code.
3287
3288* Thu Dec  9 2004 Dave Jones <davej@redhat.com>
3289- Drop the 4g/4g hugemem kernel completely.
3290
3291* Wed Dec  8 2004 Rik van Riel <riel@redhat.com>
3292- make Xen inherit config options from x86
3293
3294* Mon Dec  6 2004 Rik van Riel <riel@redhat.com>
3295- apparently Xen works better without serial drivers in domain0 (#141497)
3296
3297* Sun Dec  5 2004 Rik van Riel <riel@redhat.com>
3298- Fix up and reenable Xen compile.
3299- Fix bug in install part of BuildKernel.
3300
3301* Sat Dec  4 2004 Dave Jones <davej@redhat.com>
3302- Enable both old and new megaraid drivers.
3303- Add yet another card reader to usb scsi whitelist. (#141367)
3304
3305* Fri Dec  3 2004 Dave Jones <davej@redhat.com>
3306- Sync all patches with latest updates in FC3.
3307- Fix up xen0/xenU uninstall.
3308- Temporarily disable xen builds.
3309
3310* Wed Dec  1 2004 Rik van Riel <riel@redhat.com>
3311- replace VM hack with the upstream version
3312- more Xen bugfixes
3313
3314* Tue Nov 30 2004 Rik van Riel <riel@redhat.com>
3315- upgrade to later Xen sources, with upstream bugfixes
3316- export direct_remap_area_pages for Xen
3317
3318* Mon Nov 29 2004 Dave Jones <davej@redhat.com>
3319- Add another card reader to whitelist. (#141022)
3320
3321* Fri Nov 26 2004 Rik van Riel <riel@redhat.com>
3322- add Xen kernels for i686, plus various bits and pieces to make them work
3323
3324* Mon Nov 15 2004 Dave Jones <davej@redhat.com>
3325- Rebase to 2.6.9-ac9
3326
3327* Sat Nov 13 2004 Dave Jones <davej@redhat.com>
3328- Drop some bogus patches.
3329
3330* Thu Nov 11 2004 Dave Jones <davej@redhat.com>
3331- NFS: Fix dentry refcount accounting error
3332- Fix single-stepping on PPC64
3333- Integrate kernel-devel changes
3334- SELinux: netif fixes.
3335- SELinux: add DAC check to setxattr() hook.
3336- SELinux: sidtab locking fix.
3337- SELinux: mediate send_sigurg().
3338- SELinux: fix setscheduler hook deadlock.
3339- ide-floppy: Supresses error messages resulting from Medium not present
3340- Various IA64 updates from 2.6.10rc1
3341- nfsd: make sure getxattr inode op is non-NULL before calling it.
3342- Handle NULL dev->dev_addr in SIOCGIFHWADDR correctly. (#137648)
3343- Fix NFSD domainname size limit.
3344- nfsd4: nfsd oopsed when encountering a conflict with a local lock
3345- nfsd4: fix putrootfh return
3346- nfsd: Insecure port warning shows decimal IPv4 address
3347- Disable sw irqbalance/irqaffinity for e7520/e7320/e7525 (#136419)
3348- Fix exec-shield non-PIE/non-prelinked bug
3349- ext3 reservations: fix goal hit accounting.
3350- Fix problems with non-power-of-two sector size discs. (#135094)
3351- Fix possible oops in netpoll (#132153)
3352- Add missing MODULE_VERSION tags to various modules. (#136399)
3353- Add USB card reader de jour. (#124048)
3354- Remove SG_IO deprecation warning (#136179)
3355- Make sure that modules get signed with the right key.
3356- Remove SG_IO deprecation warning (#136179)
3357- s390: Fix fake_ll for qeth device. (#136175)
3358- s390: zfcp: Kernel stack frame for zfcp_cfdc_dev_ioctl() is too big
3359- s390: Use slab allocator for DASD I/O pages.
3360- PPC64: HVSI udbg support
3361- PPC64: Make HVSI console survive FSP reset
3362- PPC64: Make PCI hostbridge hotplugging work
3363- PPC64: Fix IBM VSCSI problems (#138124)
3364- Rebase -ac patch to 2.6.9-ac8.
3365
3366* Wed Nov  3 2004 Dave Jones <davej@redhat.com>
3367- Reenable token-ring drivers (#122602)
3368
3369* Tue Nov  2 2004 Dave Jones <davej@redhat.com>
3370- Reenable SLIP. (#124223)
3371- Add USB card reader de jour. (#124048)
3372
3373* Mon Nov  1 2004 Dave Jones <davej@redhat.com>
3374- Fix memory leak on x86-64 in mixed 32/64 mode. (#132947)
3375- Yet another USB card reader for the whitelist. (#137722)
3376
3377* Fri Oct 29 2004 Dave Jones <davej@redhat.com>
3378- Fix raid5 oops (#127862)
3379- Stop E820 BIOS entries being corrupted by EDID info. (#137510)
3380
3381* Thu Oct 28 2004 Dave Jones <davej@redhat.com>
3382- Remove the possibility of some false OOM kills. (#131251)
3383- Add more USB card readers to SCSI whitelist (#131546)
3384- Disable CONFIG_SCHED_SMT for iseries.
3385
3386* Wed Oct 27 2004 Dave Jones <davej@redhat.com>
3387- Reenable ISA NIC support (#136569)
3388
3389* Tue Oct 26 2004 Dave Jones <davej@redhat.com>
3390- Reenable Initio 9100U(W) SCSI driver. (#137153)
3391
3392* Mon Oct 25 2004 Dave Jones <davej@redhat.com>
3393- Add another USB card reader to SCSI whitelist (#132923)
3394
3395* Fri Oct 22 2004 Dave Jones <davej@redhat.com>
3396- Fix PPC NUMA (#130716).
3397- Fix autoraid for S390 (#123842/#130339)
3398- Selected bits from 2.6.9-ac3
3399  - Fix syncppp/async ppp problems with new hangup
3400  - Fix broken parport_pc unload
3401  - Stop i8xx_tco making some boxes reboot on load
3402  - Fix cpia/module tools deadlock
3403  - Security fix for smbfs leak/overrun
3404
3405* Thu Oct 21 2004 Dave Jones <davej@redhat.com>
3406- Misc security fixes from 2.6.9-ac2
3407
3408* Wed Oct 20 2004 Dave Jones <davej@redhat.com>
3409- Fix ia64 module loading. (#136365)
3410- Enable discontigmem for PPC64
3411- Disable a bunch of useless PPC config options
3412- Enable PACK_STACK on s390.
3413
3414* Tue Oct 19 2004 Dave Jones <davej@redhat.com>
3415- Fix NFS badness (#132726)
3416- Drop bogus USB workaround. (#131127)
3417
3418* Mon Oct 18 2004 Dave Jones <davej@redhat.com>
3419- Rebase to 2.6.9
3420- Speedtouch USB DSL modem driver update.
3421- Cleanup some iseries config options.
3422
3423* Fri Oct 15 2004 Dave Jones <davej@redhat.com>
3424- 2.6.9-rc4-bk3
3425- Fix up a bunch of unresolved symbols that crept in recently.
3426- Remove bogus O_NONBLOCK patch which broke lots of userspace.
3427- Fix booting on PPC64 by reserving initrd pages.
3428
3429* Thu Oct 14 2004 Dave Jones <davej@redhat.com>
3430- Rebase to 2.6.9-rc4-bk2
3431- librtas needs to work around the /dev/mem restrictions.
3432- EXT3 reservations use-before-initialised bugfix.
3433- support O_NONBLOCK for read,pread,readv of regular files.
3434- EDD blows up some x86-64's. Disable again.
3435
3436* Wed Oct 13 2004 Dave Jones <davej@redhat.com>
3437- Make EDD driver modular on x86-64 too.
3438- Various mkinitrd spec changes (Jeremy Katz)
3439- Enable a bunch more PPC64 config options. (Dave Howells)
3440- Enable ACPI cpufreq driver for x86-64 too.
3441
3442* Tue Oct 12 2004 Dave Jones <davej@redhat.com>
3443- Rebase to 2.6.9-rc4-bk1
3444- Tux update.
3445- Update netdump/diskdump patches
3446- PowerPC 64 netboot changes.
3447- Various CONFIG_ option diddling.
3448- Fix up the find_isa_irq_pin() oops on reboot for x86-64 too.
3449
3450* Mon Oct 11 2004 Dave Jones <davej@redhat.com>
3451- Rebase to 2.6.9-rc4
3452- Enable CONFIG_MICROCODE for x86-64
3453
3454* Fri Oct  8 2004 Dave Jones <davej@redhat.com>
3455- Rebase to 2.6.9-rc3-bk8
3456
3457* Thu Oct  7 2004 Dave Jones <davej@redhat.com>
3458- Rebase to 2.6.9-rc3-bk7
3459- Fix up PPC/PPC64 compilation failures due to new binutils. (David Woodhouse)
3460
3461* Wed Oct  6 2004 Dave Jones <davej@redhat.com>
3462- Rebase to 2.6.9-rc3-bk6
3463- Add xattr support for tmpfs.
3464
3465* Mon Oct  4 2004 Stephen C. Tweedie <sct@redhat.com>
3466- Update ext3 online resize to 2.6.9-rc3-mm2 upstream
3467- Reenable ext3 online resize in .spec
3468
3469* Tue Sep 28 2004 Jeremy Katz <katzj@redhat.com>
3470- add patch from Roland McGrath/James Morris to fix mprotect hook bug (#133505)
3471
3472* Mon Sep 20 2004 Arjan van de Ven <arjanv@redhat.com>
3473- 2.6.9-rc2-bk5
3474
3475* Thu Sep 16 2004 Arjan van de Ven <arjanv@redhat.com>
3476- fix tux for x86-64 and ppc64
3477
3478* Tue Sep 14 2004 Arjan van de Ven <arjanv@redhat.com>
3479- 2.6.9-rc2
3480- add diskdump
3481
3482* Fri Sep 10 2004 Arjan van de Ven <arjanv@redhat.com>
3483- 2.6.9-rc1-bk17 ; make ppc32 build
3484
3485* Tue Sep 07 2004 Arjan van de Ven <arjanv@redhat.com>
3486- 2.6.9-rc1-bk13
3487
3488* Mon Sep 06 2004 Arjan van de Ven <arjanv@redhat.com>
3489- disable online resize again
3490- hopefully fix Quake3 interaction with execshield
3491- add Alan's borken-bios-IRQ workaround patch
3492
3493* Sat Sep 04 2004 Arjan van de Ven <arjanv@redhat.com>
3494- 2.6.9-rc1-bk11
3495
3496* Tue Aug 31 2004 Arjan van de Ven <arjanv@redhat.com>
3497- fix execshield buglet with legacy binaries
3498- 2.6.9-rc1-bk7
3499
3500* Mon Aug 30 2004 Arjan van de Ven <arjanv@redhat.com>
3501- 2.6.9-rc1-bk6
3502
3503* Sat Aug 28 2004 Arjan van de Ven <arjanv@redhat.com>
3504- 2.6.9-rc1-bk4, now with i915 DRM driver
3505
3506* Fri Aug 27 2004 Arjan van de Ven <arjanv@redhat.com>
3507- 2.6.9-rc1-bk2
3508
3509* Mon Aug 23 2004 Arjan van de Ven <arjanv@redhat.com>
3510- 2.6.8.1-bk2
3511
3512* Sat Aug 21 2004 Arjan van de Ven <arjanv@redhat.com>
3513- attempt to fix early-udev bug
3514
3515* Fri Aug 13 2004 Arjan van de Ven <arjanv@redhat.com>
3516- 2.6.8-rc4-bk3
3517- split execshield up some more
3518
3519* Fri Aug 13 2004 Dave Jones <davej@redhat.com>
3520- Update SCSI whitelist again with some more card readers.
3521
3522* Mon Aug 9 2004 Arjan van de Ven <arjanv@redhat.com>
3523- 2.6.8-rc3-bk3
3524
3525* Wed Aug 4 2004 Arjan van de Ven <arjanv@redhat.com>
3526- Add the flex-mmap bits for s390/s390x (Pete Zaitcev)
3527- Add flex-mmap for x86-64 32 bit emulation
3528- 2.6.8-rc3
3529
3530* Mon Aug 2 2004 Arjan van de Ven <arjanv@redhat.com>
3531- Add Rik's token trashing control patch
3532
3533* Sun Aug 1 2004 Arjan van de Ven <arjanv@redhat.com>
3534- 2.6.8-rc2-bk11
3535
3536* Fri Jul 30 2004 Arjan van de Ven <arjanv@redhat.com>
3537- 2.6.8-rc2-bk8
3538
3539* Wed Jul 28 2004 Arjan van de Ven <arjanv@redhat.com>
3540- 2.6.8-rc2-bk6
3541- make a start at splitting up the execshield patchkit
3542
3543* Fri Jul 16 2004 Arjan van de Ven <arjanv@redhat.com>
3544- ppc32 embedded updates
3545
3546* Thu Jul 15 2004 Arjan van de Ven <arjanv@redhat.com>
3547- make USB modules again and add Alan's real fix for the SMM-meets-USB bug
3548- 2.6.8-rc1-bk4
3549
3550* Wed Jul 14 2004 Arjan van de Ven <arjanv@redhat.com>
3551- 2.6.8-rc1-bk3
3552
3553* Tue Jul 13 2004 Arjan van de Ven <arjanv@redhat.com>
3554- add "enforcemodulesig" boot option to make the kernel load signed modules only
3555
3556* Mon Jul 12 2004 Arjan van de Ven <arjanv@redhat.com>
3557- updated voluntary preempt
3558- 2.6.8-rc1
3559
3560* Wed Jul 7 2004 Arjan van de Ven <arjanv@redhat.com>
3561- fix boot breakage that was hitting lots of people (Dave Jones)
3562
3563* Tue Jul 6 2004 Arjan van de Ven <arjanv@redhat.com>
3564- add voluntary preemption patch from Ingo
3565- 2.6.7-bk19
3566
3567* Tue Jun 29 2004 Arjan van de Ven <arjanv@redhat.com>
3568- make a start at gpg signed modules support
3569
3570* Sun Jun 27 2004 Arjan van de Ven <arjanv@redhat.com>
3571- experiment with making the hardlink call in post more efficient
3572- 2.6.7-bk9
3573
3574* Thu Jun 24 2004 Arjan van de Ven <arjanv@redhat.com>
3575- 2.6.7-bk7
3576- Add wli's patch to allocate memory bottom up not top down
3577- change some config options in the kernel-sourcecode package that are
3578  good for rpm kernel builds but not for custom user builds to more appropriate
3579  default values.
3580- reenable kernel-sourcecode again for a few builds
3581
3582* Wed Jun 23 2004 Arjan van de Ven <arjanv@redhat.com>
3583- 2.6.7-bk5
3584- fix tux unresolved symbols (#126532)
3585
3586* Mon Jun 21 2004 Arjan van de Ven <arjanv@redhat.com>
3587- make kernel-doc and kernel-sourcecode builds independent of eachother
3588- disable kernel-sourcecode builds entirely, we'll be replacing it with documentation
3589  on how to use the src.rpm instead for building your own kernel.
3590
3591* Sat Jun 19 2004 Arjan van de Ven <arjanv@redhat.com>
3592- 2.6.7-bk2
3593
3594* Sun Jun 13 2004 Arjan van de Ven <arjanv@redhat.com>
3595- add patch from DaveM to fix the ppp-keeps-iface-busy bug
3596
3597* Sat Jun 12 2004 Arjan van de Ven <arjanv@redhat.com>
3598- add fix from Andi Kleen/Linus for the fpu-DoS
3599
3600* Thu Jun 10 2004 Arjan van de Ven <arjanv@redhat.com>
3601- disable mlock-uses-rlimit patch, it has a security hole and needs more thought
3602- revert airo driver to the FC2 one since the new one breaks
3603
3604* Tue Jun 8 2004 Dave Jones <davej@redhat.com>
3605- Update to 2.6.7rc3
3606
3607* Fri Jun 4 2004 Arjan van de Ven <arjanv@redhat.com>
3608- fix the mlock-uses-rlimit patch
3609
3610* Wed Jun 2 2004 David Woodhouse <dwmw2@redhat.com>
3611- Add ppc64 (Mac G5)
3612
3613* Wed Jun 2 2004 Arjan van de Ven <arjanv@redhat.com>
3614- add a forward port of the mlock-uses-rlimit patch
3615- add NX support for x86 (Intel, Ingo)
3616
3617* Tue Jun 1 2004 Arjan van de Ven <arjanv@redhat.com>
3618- refresh ext3 reservation patch
3619
3620* Sun May 30 2004 Arjan van de Ven <arjanv@redhat.com>
3621- 2.6.7-rc2
3622- set the ACPI OS name to "Microsoft Windows XP" for better compatibility
3623
3624* Thu May 27 2004 Pete Zaitcev <zaitcev@redhat.com>
3625- Fix qeth and zfcp (s390 drivers): align qib by 256, embedded into qdio_irq.
3626
3627* Thu May 27 2004 Dave Jones <davej@redhat.com>
3628- Fix the crashes on boot on Asus P4P800 boards. (#121819)
3629
3630* Wed May 26 2004 Dave Jones <davej@redhat.com>
3631- Lots more updates to the SCSI whitelist for various
3632  USB card readers. (#112778, among others..)
3633
3634* Wed May 26 2004 Arjan van de Ven <arjanv@redhat.com>
3635- back out ehci suspend/resume patch, it breaks
3636- add fix for 3c59x-meets-kudzu bug from Alan
3637
3638* Tue May 25 2004 Arjan van de Ven <arjanv@redhat.com>
3639- try improving suspend/resume by restoring more PCI state
3640- 2.6.7-rc1-bk1
3641
3642* Mon May 24 2004 Dave Jones <davej@redhat.com>
3643- Add yet another multi-card reader to the whitelist (#85851)
3644
3645* Sun May 23 2004 Dave Jones <davej@redhat.com>
3646- Add another multi-card reader to the whitelist (#124048)
3647
3648* Wed May 19 2004 Arjan van de Ven <arjanv@redhat.com>
3649- put firewire race fix in (datacorruptor)
3650
3651* Tue May 18 2004 Dave Jones <davej@redhat.com>
3652- Fix typo in ibmtr driver preventing compile (#123391)
3653
3654* Mon May 17 2004 Arjan van de Ven <arjanv@redhat.com>
3655- update to 2.6.6-bk3
3656- made kernel-source and kernel-doc noarch.rpm's since they are not
3657  architecture specific.
3658
3659* Sat May 08 2004 Arjan van de Ven <arjanv@redhat.com>
3660- fix non-booting on Transmeta cpus (Peter Anvin)
3661- fix count leak in message queues
3662
3663* Fri May 07 2004 Arjan van de Ven <arjanv@redhat.com>
3664- more ide cache flush work
3665- patch from scsi-bk to fix sd refcounting
3666
3667* Thu May 06 2004 Arjan van de Ven <arjanv@redhat.com>
3668- some more ide cache flush fixes
3669
3670* Wed May 05 2004 Arjan van de Ven <arjanv@redhat.com>
3671- fix bug 122504
3672- convert b44 to ethtool ops (jgarzik)
3673- make IDE do a cache-flush on shutdown (me/Alan)
3674
3675* Tue May 04 2004 Arjan van de Ven <arjanv@redhat.com>
3676- work around i810/i830 DRM issue
3677
3678* Fri Apr 30 2004 Arjan van de Ven <arjanv@redhat.com>
3679- 2.6.6-rc3-bk1
3680- make amd64 boot again
3681- fix vm86-vs-4g4g interaction (Ingo)
3682
3683* Thu Apr 22 2004 Arjan van de Ven <arjanv@redhat.com>
3684- 2.6.6-rc2
3685 
3686* Tue Apr 20 2004 Arjan van de Ven <arjanv@redhat.com>
3687- add the ext3 online resize patch
3688
3689* Mon Apr 19 2004 Arjan van de Ven <arjanv@redhat.com>
3690- 2.6.6-rc1-bk3
3691- add the objrmap vm from the -mm tree; it needs testing
3692
3693* Thu Apr 15 2004 Arjan van de Ven <arjanv@redhat.com>
3694- 2.6.5-bk2
3695- disable DISCONTIGMEM on ia64 for performance
3696- fix sleep_on use in reiserfs (Chris Mason)
3697
3698* Tue Apr 13 2004 Arjan van de Ven <arjanv@redhat.com>
3699- 2.6.5-mc4
3700- reenable sg driver for scsi tape changers and such
3701- the sk98lin driver oopses on module unload, preven that
3702
3703* Mon Apr 12 2004 Arjan van de Ven <arjanv@redhat.com>
3704- fix "bad pmd" bug with patch from Ingo
3705
3706* Fri Apr 09 2004 Arjan van de Ven <arjanv@redhat.com>
3707- 2.6.5-mc3
3708- finish up the -mc2 merge
3709- latest 4g/4g patch from Ingo
3710- latest execshield patch from Ingo
3711- fix a few framebuffer bugs
3712
3713* Thu Apr 08 2004 Arjan van de Ven <arjanv@redhat.com>
3714- first attempt at a 2.6.5-mc2 merge
3715
3716* Thu Apr 08 2004 Dave Jones <davej@redhat.com>
3717- Add in missing SiS AGP fix.
3718
3719* Tue Apr 06 2004 Dave Jones <davej@redhat.com>
3720- More agpgart fixes.
3721
3722* Fri Apr 02 2004 Arjan van de Ven <arjanv@redhat.com>
3723- fix another 4g/4g-vs-resume bug
3724
3725* Tue Mar 30 2004 Arjan van de Ven <arjanv@redhat.com>
3726- 2.6.5-rc3
3727- fix PCI posting bug in i830 DRM
3728
3729* Mon Mar 29 2004 Arjan van de Ven <arjanv@redhat.com>
3730- 2.6.5-rc2-bk8
3731
3732* Mon Mar 29 2004 Dave Jones <davej@redhat.com>
3733- Include latest agpgart fixes.
3734
3735* Thu Mar 25 2004 Arjan van de Ven <arjanv@redhat.com>
3736- more DRM fixes
3737- add the fsync patches from akpm
3738
3739* Tue Mar 23 2004 Arjan van de Ven <arjanv@redhat.com>
3740- 2.6.5-rc2-bk3
3741- fix direct userspace memory access in i830 drm driver
3742
3743* Mon Mar 22 2004 Arjan van de Ven <arjanv@redhat.com>
3744- 2.6.5-rc2-bk2
3745- some stackbloat reductions from Dave and me
3746
3747* Sat Mar 20 2004 Arjan van de Ven <arjanv@redhat.com>
3748- 2.6.5-rc2
3749
3750* Tue Mar 16 2004 Dave Jones <davej@redhat.com>
3751- 2.6.5-rc1
3752
3753* Mon Mar 15 2004 Arjan van de Ven <arjanv@redhat.com>
3754- 2.6.4-bk3
3755- fix oops in toshiba_acpi (Barry K. Nathan)
3756
3757* Sat Mar 13 2004 Arjan van de Ven <arjanv@redhat.com>
3758- 2.6.4-bk2 merge
3759
3760* Thu Mar 11 2004 Arjan van de Ven <arjanv@redhat.com>
3761- renable sonypi driver that was off accidentally
3762- 2.6.4-final
3763- fix the oops on alsa module unloads
3764
3765* Wed Mar 10 2004 Arjan van de Ven <arjanv@redhat.com>
3766- add ppc64/iseries, ppc32 (powermac/ibook) and ia64 architectures
3767- 2.6.4-rc3
3768
3769* Tue Mar 09 2004 Arjan van de Ven <arjanv@redhat.com>
3770- 2.6.4-rc2-bk5
3771- fix nfs-vs-selinux issue
3772- fix typo in URL as per #117849
3773
3774* Mon Mar 08 2004 Arjan van de Ven <arjanv@redhat.com>
3775- fix race in lp.c (#117710)
3776- 2.6.4-rc2-bk3
3777- attempt to fix S3 suspend-to-ram with 4g/4g split
3778
3779* Sat Mar 06 2004 Arjan van de Ven <arjanv@redhat.com>
3780- fix reiserfs
3781- set HZ to 1000 again for some tests
3782
3783* Wed Feb 25 2004 Arjan van de Ven <arjanv@redhat.com>
3784- merge back a bunch of fedora fixes
3785- disable audit
3786
3787* Tue Feb 24 2004 Arjan van de Ven <arjanv@redhat.com>
3788- audit bugfixes
3789- update tux to a working version
3790- 2.6.3-bk5 merge
3791
3792* Fri Feb 20 2004 Arjan van de Ven <arjanv@redhat.com>
3793- re-add and enable the Auditing patch
3794- switch several cpufreq modules to built in since detecting in userspace
3795  which to use is unpleasant
3796
3797* Thu Jul 03 2003 Arjan van de Ven <arjanv@redhat.com>
3798- 2.6 start
3799
Note: See TracBrowser for help on using the repository browser.