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

Revision 12319, 130.6 KB checked in by iwamoto, 4 years ago (diff)

update to 4.14.160

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