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

Revision 1933, 107.0 KB checked in by daisuke, 14 years ago (diff)

kernel: 2.6.35-6

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