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

Revision 12361, 130.9 KB checked in by tomop, 4 years ago (diff)

updated 8 packages

cryptsetup-2.3.1-1

gdisk-1.0.5-1

kernel-4.14.174-1

lvm2-2.03.09-1

libblockdev-2.23-1

libmicrohttpd-0.9.70-1

udisks-1.0.5-1

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