source: projects/specs/trunk/k/kernel/kernel-vl.spec @ 11209

Revision 11209, 125.2 KB checked in by iwamoto, 7 years ago (diff)

kernel: update to 4.13.8

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