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

Revision 12312, 130.3 KB checked in by tomop, 5 years ago (diff)

updated 3 packages

PackageKit?-1.1.12-1

cups-2.3.0-1

kernel-4.14.153-1

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