lkundrak / rpms / kernel

Forked from rpms/kernel 4 years ago
Clone
Jesse Keating 7a32965
# We have to override the new %%install behavior because, well... the kernel is special.
Jesse Keating 7a32965
%global __spec_install_pre %{___build_pre}
Jesse Keating 7a32965
Jesse Keating 7a32965
Summary: The Linux kernel
Jesse Keating 7a32965
Jesse Keating 7a32965
# For a stable, released kernel, released_kernel should be 1. For rawhide
Jesse Keating 7a32965
# and/or a kernel built from an rc or git snapshot, released_kernel should
Jesse Keating 7a32965
# be 0.
Dave Jones befa7ea
%global released_kernel 1
Jesse Keating 7a32965
Josh Boyer c2a12cd
# Sign modules on x86.  Make sure the config files match this setting if more
Josh Boyer c2a12cd
# architectures are added.
Josh Boyer c2a12cd
%ifarch %{ix86} x86_64
Josh Boyer c2a12cd
%global signmodules 1
Josh Boyer c2a12cd
%else
Josh Boyer c2a12cd
%global signmodules 0
Josh Boyer c2a12cd
%endif
Josh Boyer c2a12cd
Jesse Keating 7a32965
# Save original buildid for later if it's defined
Jesse Keating 7a32965
%if 0%{?buildid:1}
Jesse Keating 7a32965
%global orig_buildid %{buildid}
Jesse Keating 7a32965
%undefine buildid
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
###################################################################
Jesse Keating 7a32965
# Polite request for people who spin their own kernel rpms:
Jesse Keating 7a32965
# please modify the "buildid" define in a way that identifies
Jesse Keating 7a32965
# that the kernel isn't the stock distribution kernel, for example,
Jesse Keating 7a32965
# by setting the define to ".local" or ".bz123456". This will be
Jesse Keating 7a32965
# appended to the full kernel version.
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# (Uncomment the '#' and both spaces below to set the buildid.)
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# % define buildid .local
Jesse Keating 7a32965
###################################################################
Jesse Keating 7a32965
Jesse Keating 7a32965
# The buildid can also be specified on the rpmbuild command line
Jesse Keating 7a32965
# by adding --define="buildid .whatever". If both the specfile and
Jesse Keating 7a32965
# the environment define a buildid they will be concatenated together.
Jesse Keating 7a32965
%if 0%{?orig_buildid:1}
Jesse Keating 7a32965
%if 0%{?buildid:1}
Jesse Keating 7a32965
%global srpm_buildid %{buildid}
Jesse Keating 7a32965
%define buildid %{srpm_buildid}%{orig_buildid}
Jesse Keating 7a32965
%else
Jesse Keating 7a32965
%define buildid %{orig_buildid}
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Roland McGrath 377da6d
# baserelease defines which build revision of this kernel version we're
Roland McGrath 377da6d
# building.  We used to call this fedora_build, but the magical name
Roland McGrath 377da6d
# baserelease is matched by the rpmdev-bumpspec tool, which you should use.
Jesse Keating 7a32965
#
Roland McGrath 377da6d
# We used to have some extra magic weirdness to bump this automatically,
Roland McGrath 377da6d
# but now we don't.  Just use: rpmdev-bumpspec -c 'comment for changelog'
Roland McGrath 377da6d
# When changing base_sublevel below or going from rc to a final kernel,
Roland McGrath 377da6d
# reset this by hand to 1 (or to 0 and then use rpmdev-bumpspec).
Roland McGrath 377da6d
# scripts/rebase.sh should be made to do that for you, actually.
Roland McGrath 377da6d
#
Chuck Ebbert 05e763b
# NOTE: baserelease must be > 0 or bad things will happen if you switch
Chuck Ebbert 05e763b
#       to a released kernel (released version will be < rc version)
Chuck Ebbert c3126dc
#
Chuck Ebbert 05e763b
# For non-released -rc kernels, this will be appended after the rcX and
Chuck Ebbert 05e763b
# gitX tags, so a 3 here would become part of release "0.rcX.gitX.3"
Chuck Ebbert 05e763b
#
Dave Jones 1dc056e
%global baserelease 3
Roland McGrath 377da6d
%global fedora_build %{baserelease}
Jesse Keating 7a32965
Jesse Keating 7a32965
# base_sublevel is the kernel version we're starting with and patching
Dave Jones 34ff8bb
# on top of -- for example, 3.1-rc7-git1 starts with a 3.0 base,
Dave Jones 34ff8bb
# which yields a base_sublevel of 0.
Dave Jones befa7ea
%define base_sublevel 3
Jesse Keating 7a32965
Jesse Keating 7a32965
## If this is a released kernel ##
Jesse Keating 7a32965
%if 0%{?released_kernel}
Jesse Keating 7a32965
Jesse Keating 7a32965
# Do we have a -stable update to apply?
Josh Boyer e8409b1
%define stable_update 0
Jesse Keating 7a32965
# Is it a -stable RC?
Jesse Keating 7a32965
%define stable_rc 0
Jesse Keating 7a32965
# Set rpm version accordingly
Jesse Keating 7a32965
%if 0%{?stable_update}
Josh Boyer 740de53
%define stablerev %{stable_update}
Jesse Keating 7a32965
%define stable_base %{stable_update}
Jesse Keating 7a32965
%if 0%{?stable_rc}
Jesse Keating 7a32965
# stable RCs are incremental patches, so we need the previous stable patch
Jesse Keating 7a32965
%define stable_base %(echo $((%{stable_update} - 1)))
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
%endif
Kyle McMartin e8ba2bf
%define rpmversion 3.%{base_sublevel}.%{stable_update}
Jesse Keating 7a32965
Jesse Keating 7a32965
## The not-released-kernel case ##
Jesse Keating 7a32965
%else
Jesse Keating 7a32965
# The next upstream release sublevel (base_sublevel+1)
Kyle McMartin 4a20417
%define upstream_sublevel %(echo $((%{base_sublevel} + 1)))
Jesse Keating 7a32965
# The rc snapshot level
Dave Jones 34ff8bb
%define rcrev 7
Jesse Keating 7a32965
# The git snapshot level
Dave Jones 27001e9
%define gitrev 2
Jesse Keating 7a32965
# Set rpm version accordingly
Kyle McMartin e8ba2bf
%define rpmversion 3.%{upstream_sublevel}.0
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
# Nb: The above rcrev and gitrev values automagically define Patch00 and Patch01 below.
Jesse Keating 7a32965
Jesse Keating 7a32965
# What parts do we want to build?  We must build at least one kernel.
Jesse Keating 7a32965
# These are the kernels that are built IF the architecture allows it.
Jesse Keating 7a32965
# All should default to 1 (enabled) and be flipped to 0 (disabled)
Jesse Keating 7a32965
# by later arch-specific checks.
Jesse Keating 7a32965
Jesse Keating 7a32965
# The following build options are enabled by default.
Jesse Keating 7a32965
# Use either --without <opt> in your rpmbuild command or force values
Jesse Keating 7a32965
# to 0 in here to disable them.
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# standard kernel
Jesse Keating 7a32965
%define with_up        %{?_without_up:        0} %{?!_without_up:        1}
Jesse Keating 7a32965
# kernel-smp (only valid for ppc 32-bit)
Jesse Keating 7a32965
%define with_smp       %{?_without_smp:       0} %{?!_without_smp:       1}
Jarod Wilson 5b03275
# kernel-PAE (only valid for i686)
Jarod Wilson 5b03275
%define with_pae       %{?_without_pae:       0} %{?!_without_pae:       1}
Jesse Keating 7a32965
# kernel-debug
Jesse Keating 7a32965
%define with_debug     %{?_without_debug:     0} %{?!_without_debug:     1}
Jesse Keating 7a32965
# kernel-doc
Jesse Keating 7a32965
%define with_doc       %{?_without_doc:       0} %{?!_without_doc:       1}
Jesse Keating 7a32965
# kernel-headers
Jesse Keating 7a32965
%define with_headers   %{?_without_headers:   0} %{?!_without_headers:   1}
Kyle McMartin 42d4c31
# perf
Kyle McMartin 42d4c31
%define with_perf      %{?_without_perf:      0} %{?!_without_perf:      1}
Dave Jones 1d18ad9
# tools
Dave Jones 1d18ad9
%define with_tools     %{?_without_tools:     0} %{?!_without_tools:     1}
Jesse Keating 7a32965
# kernel-debuginfo
Kyle McMartin 761d1c0
%define with_debuginfo %{?_without_debuginfo: 0} %{?!_without_debuginfo: 1}
Jesse Keating 7a32965
# kernel-bootwrapper (for creating zImages from kernel + initrd)
Jesse Keating 7a32965
%define with_bootwrapper %{?_without_bootwrapper: 0} %{?!_without_bootwrapper: 1}
Jesse Keating 7a32965
# Want to build a the vsdo directories installed
Jesse Keating 7a32965
%define with_vdso_install %{?_without_vdso_install: 0} %{?!_without_vdso_install: 1}
986a9f3
# ARM OMAP (Beagle/Panda Board)
986a9f3
%define with_omap      %{?_without_omap:      0} %{?!_without_omap:      1}
986a9f3
# kernel-tegra (only valid for arm)
986a9f3
%define with_tegra       %{?_without_tegra:       0} %{?!_without_tegra:       1}
534352f
# kernel-kirkwood (only valid for arm)
534352f
%define with_kirkwood       %{?_without_kirkwood:       0} %{?!_without_kirkwood:       1}
534352f
# kernel-imx (only valid for arm)
534352f
%define with_imx       %{?_without_imx:       0} %{?!_without_imx:       1}
534352f
# kernel-highbank (only valid for arm)
534352f
%define with_highbank       %{?_without_highbank:       0} %{?!_without_highbank:       1}
Chuck Ebbert c6b36e0
#
Jesse Keating 7a32965
# Additional options for user-friendly one-off kernel building:
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# Only build the base kernel (--with baseonly):
Jesse Keating 7a32965
%define with_baseonly  %{?_with_baseonly:     1} %{?!_with_baseonly:     0}
Jesse Keating 7a32965
# Only build the smp kernel (--with smponly):
Jesse Keating 7a32965
%define with_smponly   %{?_with_smponly:      1} %{?!_with_smponly:      0}
Jarod Wilson 5b03275
# Only build the pae kernel (--with paeonly):
Jarod Wilson 5b03275
%define with_paeonly   %{?_with_paeonly:      1} %{?!_with_paeonly:      0}
Jesse Keating 7a32965
# Only build the debug kernel (--with dbgonly):
Jesse Keating 7a32965
%define with_dbgonly   %{?_with_dbgonly:      1} %{?!_with_dbgonly:      0}
Chuck Ebbert c6b36e0
#
Jesse Keating 7a32965
# should we do C=1 builds with sparse
Dave Jones 561b24a
%define with_sparse    %{?_with_sparse:       1} %{?!_with_sparse:       0}
Chuck Ebbert 11ee033
#
Chuck Ebbert 11ee033
# build a release kernel on rawhide
Chuck Ebbert 11ee033
%define with_release   %{?_with_release:      1} %{?!_with_release:      0}
Jesse Keating 7a32965
Jesse Keating 7a32965
# Set debugbuildsenabled to 1 for production (build separate debug kernels)
Jesse Keating 7a32965
#  and 0 for rawhide (all kernels are debug kernels).
Jesse Keating 7a32965
# See also 'make debug' and 'make release'.
Dave Jones 1dc056e
%define debugbuildsenabled 0
Jesse Keating 7a32965
Jesse Keating 7a32965
# Want to build a vanilla kernel build without any non-upstream patches?
Jesse Keating 7a32965
%define with_vanilla %{?_with_vanilla: 1} %{?!_with_vanilla: 0}
Jesse Keating 7a32965
Chuck Ebbert c6b36e0
# Build the kernel-doc package, but don't fail the build if it botches.
Chuck Ebbert c6b36e0
# Here "true" means "continue" and "false" means "fail the build".
Chuck Ebbert c6b36e0
%if 0%{?released_kernel}
Chuck Ebbert c6b36e0
%define doc_build_fail false
Chuck Ebbert c6b36e0
%else
Chuck Ebbert c6b36e0
%define doc_build_fail true
Chuck Ebbert c6b36e0
%endif
Chuck Ebbert c6b36e0
Dave Jones 1dc056e
%define rawhide_skip_docs 1
Chuck Ebbert c6b36e0
%if 0%{?rawhide_skip_docs}
Chuck Ebbert c6b36e0
%define with_doc 0
Chuck Ebbert c6b36e0
%define doc_build_fail true
Chuck Ebbert c6b36e0
%endif
Chuck Ebbert c6b36e0
Jesse Keating 7a32965
# pkg_release is what we'll fill in for the rpm Release: field
Jesse Keating 7a32965
%if 0%{?released_kernel}
Jesse Keating 7a32965
Jesse Keating 7a32965
%if 0%{?stable_rc}
Jesse Keating 7a32965
%define stable_rctag .rc%{stable_rc}
Chuck Ebbert e6236b7
%define pkg_release 0%{stable_rctag}.%{fedora_build}%{?buildid}%{?dist}
Chuck Ebbert e6236b7
%else
Chuck Ebbert e6236b7
%define pkg_release %{fedora_build}%{?buildid}%{?dist}
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%else
Jesse Keating 7a32965
Jesse Keating 7a32965
# non-released_kernel
Jesse Keating 7a32965
%if 0%{?rcrev}
Jesse Keating 7a32965
%define rctag .rc%rcrev
Jesse Keating 7a32965
%else
Jesse Keating 7a32965
%define rctag .rc0
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
%if 0%{?gitrev}
Jesse Keating 7a32965
%define gittag .git%gitrev
Jesse Keating 7a32965
%else
Jesse Keating 7a32965
%define gittag .git0
Jesse Keating 7a32965
%endif
Kyle McMartin 66ce81a
%define pkg_release 0%{?rctag}%{?gittag}.%{fedora_build}%{?buildid}%{?dist}
Jesse Keating 7a32965
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
# The kernel tarball/base version
Kyle McMartin e8ba2bf
%define kversion 3.%{base_sublevel}
Jesse Keating 7a32965
Jesse Keating 7a32965
%define make_target bzImage
Jesse Keating 7a32965
Jesse Keating 7a32965
%define KVERREL %{version}-%{release}.%{_target_cpu}
Jesse Keating 7a32965
%define hdrarch %_target_cpu
Jesse Keating 7a32965
%define asmarch %_target_cpu
Jesse Keating 7a32965
Jesse Keating 7a32965
%if 0%{!?nopatches:1}
Jesse Keating 7a32965
%define nopatches 0
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%if %{with_vanilla}
Jesse Keating 7a32965
%define nopatches 1
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%if %{nopatches}
Jesse Keating 7a32965
%define with_bootwrapper 0
Jesse Keating 7a32965
%define variant -vanilla
Jesse Keating 7a32965
%else
Jesse Keating 7a32965
%define variant_fedora -fedora
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%define using_upstream_branch 0
Jesse Keating 7a32965
%if 0%{?upstream_branch:1}
Jesse Keating 7a32965
%define stable_update 0
Jesse Keating 7a32965
%define using_upstream_branch 1
Jesse Keating 7a32965
%define variant -%{upstream_branch}%{?variant_fedora}
Jesse Keating 7a32965
%define pkg_release 0.%{fedora_build}%{upstream_branch_tag}%{?buildid}%{?dist}
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%if !%{debugbuildsenabled}
Jesse Keating 7a32965
%define with_debug 0
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%if !%{with_debuginfo}
Jesse Keating 7a32965
%define _enable_debug_packages 0
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
%define debuginfodir /usr/lib/debug
Jesse Keating 7a32965
Jesse Keating 7a32965
# kernel-PAE is only built on i686.
Jarod Wilson 5b03275
%ifnarch i686
Jesse Keating 7a32965
%define with_pae 0
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
534352f
# kernel-tegra, omap, imx and highbank are only built on armv7 hard and softfp
41dc1ec
%ifnarch armv7hl armv7l
986a9f3
%define with_tegra 0
986a9f3
%define with_omap 0
534352f
%define with_imx 0
201cb5c
%define with_highbank 0
d005e8b
%endif
201cb5c
534352f
# kernel-kirkwood is only built for armv5
534352f
%ifnarch armv5tel
534352f
%define with_kirkwood 0
986a9f3
%endif
986a9f3
Jesse Keating 7a32965
# if requested, only build base kernel
Jesse Keating 7a32965
%if %{with_baseonly}
Jesse Keating 7a32965
%define with_smp 0
Jarod Wilson 5b03275
%define with_pae 0
Jesse Keating 7a32965
%define with_debug 0
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
# if requested, only build smp kernel
Jesse Keating 7a32965
%if %{with_smponly}
Jesse Keating 7a32965
%define with_up 0
Jarod Wilson 5b03275
%define with_pae 0
Jarod Wilson 5b03275
%define with_debug 0
Jarod Wilson 5b03275
%endif
Jarod Wilson 5b03275
Jarod Wilson 5b03275
# if requested, only build pae kernel
Jarod Wilson 5b03275
%if %{with_paeonly}
Jarod Wilson 5b03275
%define with_up 0
Jarod Wilson 5b03275
%define with_smp 0
Jesse Keating 7a32965
%define with_debug 0
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
# if requested, only build debug kernel
Jesse Keating 7a32965
%if %{with_dbgonly}
Jesse Keating 7a32965
%if %{debugbuildsenabled}
Jesse Keating 7a32965
%define with_up 0
Jarod Wilson 5b03275
%define with_pae 0
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
%define with_smp 0
Jesse Keating 7a32965
%define with_pae 0
Dave Jones 1d18ad9
%define with_tools 0
Kyle McMartin 42d4c31
%define with_perf 0
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%define all_x86 i386 i686
Jesse Keating 7a32965
Jesse Keating 7a32965
%if %{with_vdso_install}
Jesse Keating 7a32965
# These arches install vdso/ directories.
Kyle McMartin 428cea3
%define vdso_arches %{all_x86} x86_64 ppc ppc64 s390 s390x
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
# Overrides for generic default options
Jesse Keating 7a32965
Josh Boyer 59694fb
# only ppc needs a separate smp kernel
Josh Boyer 59694fb
%ifnarch ppc 
Jesse Keating 7a32965
%define with_smp 0
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
# don't do debug builds on anything but i686 and x86_64
Jesse Keating 7a32965
%ifnarch i686 x86_64
Jesse Keating 7a32965
%define with_debug 0
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
# only package docs noarch
Jesse Keating 7a32965
%ifnarch noarch
Jesse Keating 7a32965
%define with_doc 0
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
# don't build noarch kernels or headers (duh)
Jesse Keating 7a32965
%ifarch noarch
Jesse Keating 7a32965
%define with_up 0
Jesse Keating 7a32965
%define with_headers 0
Dave Jones 1d18ad9
%define with_tools 0
Kyle McMartin 42d4c31
%define with_perf 0
Jesse Keating 7a32965
%define all_arch_configs kernel-%{version}-*.config
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
# bootwrapper is only on ppc
Jesse Keating 7a32965
%ifnarch ppc ppc64
Jesse Keating 7a32965
%define with_bootwrapper 0
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Josh Boyer 59694fb
# sparse blows up on ppc64 and sparc64
Josh Boyer 59694fb
%ifarch ppc64 ppc sparc64
Jesse Keating 7a32965
%define with_sparse 0
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
# Per-arch tweaks
Jesse Keating 7a32965
Jesse Keating 7a32965
%ifarch %{all_x86}
Jesse Keating 7a32965
%define asmarch x86
Jesse Keating 7a32965
%define hdrarch i386
Jesse Keating 7a32965
%define all_arch_configs kernel-%{version}-i?86*.config
Jesse Keating 7a32965
%define image_install_path boot
Jesse Keating 7a32965
%define kernel_image arch/x86/boot/bzImage
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%ifarch x86_64
Jesse Keating 7a32965
%define asmarch x86
Jesse Keating 7a32965
%define all_arch_configs kernel-%{version}-x86_64*.config
Jesse Keating 7a32965
%define image_install_path boot
Jesse Keating 7a32965
%define kernel_image arch/x86/boot/bzImage
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%ifarch ppc64
Jesse Keating 7a32965
%define asmarch powerpc
Jesse Keating 7a32965
%define hdrarch powerpc
Jesse Keating 7a32965
%define all_arch_configs kernel-%{version}-ppc64*.config
Jesse Keating 7a32965
%define image_install_path boot
Jesse Keating 7a32965
%define make_target vmlinux
Jesse Keating 7a32965
%define kernel_image vmlinux
Jesse Keating 7a32965
%define kernel_image_elf 1
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%ifarch s390x
Jesse Keating 7a32965
%define asmarch s390
Jesse Keating 7a32965
%define hdrarch s390
Jesse Keating 7a32965
%define all_arch_configs kernel-%{version}-s390x.config
Jesse Keating 7a32965
%define image_install_path boot
Jesse Keating 7a32965
%define make_target image
Jesse Keating 7a32965
%define kernel_image arch/s390/boot/image
Dave Jones 1d18ad9
%define with_tools 0
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%ifarch sparc64
Jesse Keating 7a32965
%define asmarch sparc
Jesse Keating 7a32965
%define all_arch_configs kernel-%{version}-sparc64*.config
bb58618
%define make_target vmlinux
bb58618
%define kernel_image vmlinux
Jesse Keating 7a32965
%define image_install_path boot
Dave Jones 1d18ad9
%define with_tools 0
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
9c74977
%ifarch sparcv9
9c74977
%define hdrarch sparc
9c74977
%endif
9c74977
Jesse Keating 7a32965
%ifarch ppc
Jesse Keating 7a32965
%define asmarch powerpc
Jesse Keating 7a32965
%define hdrarch powerpc
Jesse Keating 7a32965
%define all_arch_configs kernel-%{version}-ppc{-,.}*config
Jesse Keating 7a32965
%define image_install_path boot
Jesse Keating 7a32965
%define make_target vmlinux
Jesse Keating 7a32965
%define kernel_image vmlinux
Jesse Keating 7a32965
%define kernel_image_elf 1
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%ifarch %{arm}
Jesse Keating 7a32965
%define all_arch_configs kernel-%{version}-arm*.config
Jesse Keating 7a32965
%define image_install_path boot
Josh Boyer 8ffa0af
%define asmarch arm
Jesse Keating 7a32965
%define hdrarch arm
986a9f3
%define make_target bzImage
986a9f3
%define kernel_image arch/arm/boot/zImage
551d759
# we build a up kernel on base softfp/hardfp platforms. its used for qemu.
551d759
%ifnarch armv5tel armv7hl
986a9f3
%define with_up 0
3e616b4
%endif
43fa717
# we only build headers/perf/tools on the base arm arches
94b0067
# just like we used to only build them on i386 for x86
94b0067
%ifnarch armv5tel armv7hl
94b0067
%define with_headers 0
43fa717
%define with_perf 0
43fa717
%define with_tools 0
94b0067
%endif
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
# To temporarily exclude an architecture from being built, add it to
Dave Jones 166b79a
# %%nobuildarches. Do _NOT_ use the ExclusiveArch: line, because if we
Jesse Keating 7a32965
# don't build kernel-headers then the new build system will no longer let
Jesse Keating 7a32965
# us use the previous build of that package -- it'll just be completely AWOL.
Jesse Keating 7a32965
# Which is a BadThing(tm).
Jesse Keating 7a32965
Jesse Keating 7a32965
# We only build kernel-headers on the following...
986a9f3
%define nobuildarches i386 s390 sparc sparcv9
Jesse Keating 7a32965
Jesse Keating 7a32965
%ifarch %nobuildarches
Jesse Keating 7a32965
%define with_up 0
Jesse Keating 7a32965
%define with_smp 0
Jesse Keating 7a32965
%define with_pae 0
Jesse Keating 7a32965
%define with_debuginfo 0
Kyle McMartin 42d4c31
%define with_perf 0
Dave Jones 1d18ad9
%define with_tools 0
Jesse Keating 7a32965
%define _enable_debug_packages 0
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%define with_pae_debug 0
Jesse Keating 7a32965
%if %{with_pae}
Jesse Keating 7a32965
%define with_pae_debug %{with_debug}
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Josh Boyer 8addb5f
# Architectures we build tools/cpupower on
43fa717
%define cpupowerarchs %{ix86} x86_64 ppc ppc64 %{arm}
Josh Boyer 8addb5f
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# Three sets of minimum package version requirements in the form of Conflicts:
Jesse Keating 7a32965
# to versions below the minimum
Jesse Keating 7a32965
#
Jesse Keating 7a32965
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# First the general kernel 2.6 required versions as per
Jesse Keating 7a32965
# Documentation/Changes
Jesse Keating 7a32965
#
Dave Jones f3fbdcb
%define kernel_dot_org_conflicts  ppp < 2.4.3-3, isdn4k-utils < 3.2-32, nfs-utils < 1.2.5-7.fc17, e2fsprogs < 1.37-4, util-linux < 2.12, jfsutils < 1.1.7-2, reiserfs-utils < 3.6.19-2, xfsprogs < 2.6.13-4, procps < 3.2.5-6.3, oprofile < 0.9.1-2, device-mapper-libs < 1.02.63-2, mdadm < 3.2.1-5
Jesse Keating 7a32965
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# Then a series of requirements that are distribution specific, either
Jesse Keating 7a32965
# because we add patches for something, or the older versions have
Jesse Keating 7a32965
# problems with the newer kernel or lack certain things that make
Jesse Keating 7a32965
# integration in the distro harder than needed.
Jesse Keating 7a32965
#
Jesse Keating 7a32965
%define package_conflicts initscripts < 7.23, udev < 063-6, iptables < 1.3.2-1, ipw2200-firmware < 2.4, iwl4965-firmware < 228.57.2, selinux-policy-targeted < 1.25.3-14, squashfs-tools < 4.0, wireless-tools < 29-3
Jesse Keating 7a32965
Jesse Keating 7a32965
# We moved the drm include files into kernel-headers, make sure there's
Jesse Keating 7a32965
# a recent enough libdrm-devel on the system that doesn't have those.
Jesse Keating 7a32965
%define kernel_headers_conflicts libdrm-devel < 2.4.0-0.15
Jesse Keating 7a32965
Jesse Keating 7a32965
#
Dave Jones 166b79a
# Packages that need to be installed before the kernel is, because the %%post
Jesse Keating 7a32965
# scripts use them.
Jesse Keating 7a32965
#
John W. Linville aeaaac5
%define kernel_prereq  fileutils, module-init-tools >= 3.16-4, initscripts >= 8.11.1-1, grubby >= 8.3-1
Jesse Keating 7a32965
%define initrd_prereq  dracut >= 001-7
Jesse Keating 7a32965
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# This macro does requires, provides, conflicts, obsoletes for a kernel package.
Jesse Keating 7a32965
#	%%kernel_reqprovconf <subpackage>
Jesse Keating 7a32965
# It uses any kernel_<subpackage>_conflicts and kernel_<subpackage>_obsoletes
Jesse Keating 7a32965
# macros defined above.
Jesse Keating 7a32965
#
Jesse Keating 7a32965
%define kernel_reqprovconf \
Jesse Keating 7a32965
Provides: kernel = %{rpmversion}-%{pkg_release}\
Jesse Keating 7a32965
Provides: kernel-%{_target_cpu} = %{rpmversion}-%{pkg_release}%{?1:.%{1}}\
Jesse Keating 7a32965
Provides: kernel-drm = 4.3.0\
Jesse Keating 7a32965
Provides: kernel-drm-nouveau = 16\
Jesse Keating 7a32965
Provides: kernel-modeset = 1\
Jesse Keating 7a32965
Provides: kernel-uname-r = %{KVERREL}%{?1:.%{1}}\
Jesse Keating 7a32965
Requires(pre): %{kernel_prereq}\
Jesse Keating 7a32965
Requires(pre): %{initrd_prereq}\
Josh Boyer 51519e8
Requires(pre): linux-firmware >= 20120206-0.1.git06c8f81\
Jesse Keating 7a32965
Requires(post): /sbin/new-kernel-pkg\
Jesse Keating 7a32965
Requires(preun): /sbin/new-kernel-pkg\
Jesse Keating 7a32965
Conflicts: %{kernel_dot_org_conflicts}\
Jesse Keating 7a32965
Conflicts: %{package_conflicts}\
Jesse Keating 7a32965
%{expand:%%{?kernel%{?1:_%{1}}_conflicts:Conflicts: %%{kernel%{?1:_%{1}}_conflicts}}}\
Jesse Keating 7a32965
%{expand:%%{?kernel%{?1:_%{1}}_obsoletes:Obsoletes: %%{kernel%{?1:_%{1}}_obsoletes}}}\
Jesse Keating 7a32965
%{expand:%%{?kernel%{?1:_%{1}}_provides:Provides: %%{kernel%{?1:_%{1}}_provides}}}\
Jesse Keating 7a32965
# We can't let RPM do the dependencies automatic because it'll then pick up\
Jesse Keating 7a32965
# a correct but undesirable perl dependency from the module headers which\
Jesse Keating 7a32965
# isn't required for the kernel proper to function\
Jesse Keating 7a32965
AutoReq: no\
Jesse Keating 7a32965
AutoProv: yes\
Jesse Keating 7a32965
%{nil}
Jesse Keating 7a32965
Jesse Keating 7a32965
Name: kernel%{?variant}
Jesse Keating 7a32965
Group: System Environment/Kernel
Jesse Keating 7a32965
License: GPLv2
Jesse Keating 7a32965
URL: http://www.kernel.org/
Jesse Keating 7a32965
Version: %{rpmversion}
Jesse Keating 7a32965
Release: %{pkg_release}
Jesse Keating 7a32965
# DO NOT CHANGE THE 'ExclusiveArch' LINE TO TEMPORARILY EXCLUDE AN ARCHITECTURE BUILD.
Jesse Keating 7a32965
# SET %%nobuildarches (ABOVE) INSTEAD
Josh Boyer 59694fb
ExclusiveArch: noarch %{all_x86} x86_64 ppc ppc64 %{sparc} s390 s390x %{arm}
Jesse Keating 7a32965
ExclusiveOS: Linux
Jesse Keating 7a32965
Jesse Keating 7a32965
%kernel_reqprovconf
Dave Jones efc71ad
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# List the packages used during the kernel build
Jesse Keating 7a32965
#
Jesse Keating 7a32965
BuildRequires: module-init-tools, patch >= 2.5.4, bash >= 2.03, sh-utils, tar
Chuck Ebbert 7cfa689
BuildRequires: bzip2, xz, findutils, gzip, m4, perl, make >= 3.78, diffutils, gawk
Jesse Keating 7a32965
BuildRequires: gcc >= 3.4.2, binutils >= 2.12, redhat-rpm-config
Jesse Keating 7a32965
BuildRequires: net-tools
Jesse Keating 7a32965
BuildRequires: xmlto, asciidoc
Jesse Keating 7a32965
%if %{with_sparse}
Jesse Keating 7a32965
BuildRequires: sparse >= 0.4.1
Jesse Keating 7a32965
%endif
Kyle McMartin 42d4c31
%if %{with_perf}
Kyle McMartin 42d4c31
BuildRequires: elfutils-devel zlib-devel binutils-devel newt-devel python-devel perl(ExtUtils::Embed)
Kyle McMartin 42d4c31
%endif
Dave Jones 1d18ad9
%if %{with_tools}
Kyle McMartin 42d4c31
BuildRequires: pciutils-devel gettext
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
BuildConflicts: rhbuildsys(DiskFree) < 500Mb
Jesse Keating 7a32965
%if %{with_debuginfo}
Kyle McMartin 1bfd59b
# Fancy new debuginfo generation introduced in Fedora 8/RHEL 6.
Mark Wielaard ec9ad68
# The -r flag to find-debuginfo.sh to invoke eu-strip --reloc-debug-sections
Mark Wielaard ec9ad68
# reduces the number of relocations in kernel module .ko.debug files and was
Mark Wielaard ec9ad68
# introduced with rpm 4.9 and elfutils 0.153.
Mark Wielaard ec9ad68
BuildRequires: rpm-build >= 4.9.0-1, elfutils >= elfutils-0.153-1
Mark Wielaard ec9ad68
%define debuginfo_args --strict-build-id -r
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Josh Boyer c2a12cd
%if %{signmodules}
Josh Boyer c2a12cd
BuildRequires: gnupg
Josh Boyer c2a12cd
%endif
Josh Boyer c2a12cd
Dave Jones 8959a0e
Source0: ftp://ftp.kernel.org/pub/linux/kernel/v3.0/linux-%{kversion}.tar.xz
Jesse Keating 7a32965
Josh Boyer c2a12cd
%if %{signmodules}
Josh Boyer c2a12cd
Source11: genkey
Josh Boyer c2a12cd
%endif
Josh Boyer c2a12cd
Jesse Keating 7a32965
Source15: merge.pl
Josh Boyer b8b2783
Source16: mod-extra.list
Jesse Keating 7a32965
Chuck Ebbert c6b36e0
Source19: Makefile.release
Jesse Keating 7a32965
Source20: Makefile.config
Jesse Keating 7a32965
Source21: config-debug
Jesse Keating 7a32965
Source22: config-nodebug
Jesse Keating 7a32965
Source23: config-generic
Jesse Keating 7a32965
Jesse Keating 7a32965
Source30: config-x86-generic
Jesse Keating 7a32965
Source31: config-i686-PAE
Josh Boyer d71f188
Source32: config-x86-32-generic
Jesse Keating 7a32965
Jesse Keating 7a32965
Source40: config-x86_64-generic
Jesse Keating 7a32965
Jesse Keating 7a32965
Source50: config-powerpc-generic
Jesse Keating 7a32965
Source51: config-powerpc32-generic
Jesse Keating 7a32965
Source52: config-powerpc32-smp
Jesse Keating 7a32965
Source53: config-powerpc64
Jesse Keating 7a32965
Jesse Keating 7a32965
Source70: config-s390x
Jesse Keating 7a32965
Jesse Keating 7a32965
Source90: config-sparc64-generic
Jesse Keating 7a32965
Josh Boyer 8ffa0af
Source100: config-arm-generic
Josh Boyer 8ffa0af
Source110: config-arm-omap-generic
986a9f3
Source111: config-arm-tegra
534352f
Source112: config-arm-kirkwood
534352f
Source113: config-arm-imx
534352f
Source114: config-arm-highbank
Jesse Keating 7a32965
Jarod Wilson 5b65297
# This file is intentionally left empty in the stock kernel. Its a nicety
Jarod Wilson 5b65297
# added for those wanting to do custom rebuilds with altered config opts.
Jarod Wilson 5b65297
Source1000: config-local
Jarod Wilson 5b65297
Josh Boyer 8addb5f
# Sources for kernel-tools
Josh Boyer 8addb5f
Source2000: cpupower.service
Josh Boyer 8addb5f
Source2001: cpupower.config
Josh Boyer 8addb5f
Jesse Keating 7a32965
# Here should be only the patches up to the upstream canonical Linus tree.
Jesse Keating 7a32965
Jesse Keating 7a32965
# For a stable release kernel
Jesse Keating 7a32965
%if 0%{?stable_update}
Jesse Keating 7a32965
%if 0%{?stable_base}
Josh Boyer fdb68da
%define    stable_patch_00  patch-3.%{base_sublevel}.%{stable_base}.xz
Jesse Keating 7a32965
Patch00: %{stable_patch_00}
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
%if 0%{?stable_rc}
Kyle McMartin 8b2fa9b
%define    stable_patch_01  patch-3.%{base_sublevel}.%{stable_update}-rc%{stable_rc}.bz2
Jesse Keating 7a32965
Patch01: %{stable_patch_01}
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
# non-released_kernel case
Jesse Keating 7a32965
# These are automagically defined by the rcrev and gitrev values set up
Jesse Keating 7a32965
# near the top of this spec file.
Jesse Keating 7a32965
%else
Jesse Keating 7a32965
%if 0%{?rcrev}
Josh Boyer 471066e
Patch00: patch-3.%{upstream_sublevel}-rc%{rcrev}.xz
Jesse Keating 7a32965
%if 0%{?gitrev}
Josh Boyer 471066e
Patch01: patch-3.%{upstream_sublevel}-rc%{rcrev}-git%{gitrev}.xz
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
%else
Jesse Keating 7a32965
# pre-{base_sublevel+1}-rc1 case
Jesse Keating 7a32965
%if 0%{?gitrev}
Kyle McMartin 8b2fa9b
Patch00: patch-3.%{base_sublevel}-git%{gitrev}.bz2
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%if %{using_upstream_branch}
Jesse Keating 7a32965
### BRANCH PATCH ###
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
# we also need compile fixes for -vanilla
Jesse Keating 7a32965
Patch04: linux-2.6-compile-fixes.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# build tweak for build ID magic, even for -vanilla
Jesse Keating 7a32965
Patch05: linux-2.6-makefile-after_link.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
%if !%{nopatches}
Jesse Keating 7a32965
Kyle McMartin 201b16f
Jesse Keating 7a32965
# revert upstream patches we get via other methods
Jesse Keating 7a32965
Patch09: linux-2.6-upstream-reverts.patch
Jesse Keating 7a32965
# Git trees.
Jesse Keating 7a32965
Jesse Keating 7a32965
# Standalone patches
Jesse Keating 7a32965
Dave Jones 64f1bc9
Patch100: taint-vbox.patch
Dave Jones c62acbf
Patch160: linux-2.6-32bit-mmap-exec-randomization.patch
Jesse Keating 7a32965
Patch161: linux-2.6-i386-nx-emulation.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
Patch383: linux-2.6-defaults-aspm.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
Patch390: linux-2.6-defaults-acpi-video.patch
Jesse Keating 7a32965
Patch391: linux-2.6-acpi-video-dos.patch
Jesse Keating 7a32965
Patch394: linux-2.6-acpi-debug-infinite-loop.patch
Josh Boyer 5e97a20
Patch395: acpi-ensure-thermal-limits-match-cpu-freq.patch
Dave Jones a4b83ee
Patch396: acpi-sony-nonvs-blacklist.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
Patch450: linux-2.6-input-kill-stupid-messages.patch
Jesse Keating 7a32965
Patch452: linux-2.6.30-no-pcspkr-modalias.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
Patch460: linux-2.6-serial-460800.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
Patch470: die-floppy-die.patch
Josh Boyer dff0854
Patch471: floppy-Remove-_hlt-related-functions.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
Patch510: linux-2.6-silence-noise.patch
Josh Boyer e7cafd4
Patch520: quite-apm.patch
Jesse Keating 7a32965
Patch530: linux-2.6-silence-fbcon-logo.patch
Jesse Keating 7a32965
Dave Jones f737348
Patch700: linux-2.6-e1000-ich9-montevina.patch
Dave Jones f737348
Jesse Keating 7a32965
Patch800: linux-2.6-crash-driver.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# crypto/
Josh Boyer c2a12cd
Patch900: modsign-20111207.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# virt + ksm patches
Jesse Keating 7a32965
Patch1555: fix_xen_guest_on_old_EC2.patch
0aaee59
Patch1556: linux-3.3-virtio-scsi.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# DRM
Josh Boyer 0e0a3af
#atch1700: drm-edid-try-harder-to-fix-up-broken-headers.patch
5327175
Patch1800: drm-vgem.patch
Kyle McMartin d3e4af8
Jesse Keating 7a32965
# nouveau + drm fixes
Jesse Keating 7a32965
# intel drm is all merged upstream
Jesse Keating 7a32965
Patch1824: drm-intel-next.patch
4574844
Patch1825: drm-i915-dp-stfu.patch
Kyle McMartin 5acda93
Jesse Keating 7a32965
Patch1900: linux-2.6-intel-iommu-igfx.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# Quiet boot fixes
Jesse Keating 7a32965
# silence the ACPI blacklist code
Jesse Keating 7a32965
Patch2802: linux-2.6-silence-acpi-blacklist.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# media patches
Jesse Keating 7a32965
Patch2899: linux-2.6-v4l-dvb-fixes.patch
Jesse Keating 7a32965
Patch2900: linux-2.6-v4l-dvb-update.patch
Jesse Keating 7a32965
Patch2901: linux-2.6-v4l-dvb-experimental.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# fs fixes
Josh Boyer 598ed8b
Patch4000: ext4-fix-resize-when-resizing-within-single-group.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# NFSv4
Dave Jones f3fbdcb
Patch1101: linux-3.1-keys-remove-special-keyring.patch
Josh Boyer a0668fa
Patch1102: linux-3.3-newidmapper-01.patch
Josh Boyer a0668fa
Patch1103: linux-3.3-newidmapper-02.patch
Josh Boyer a0668fa
Patch1104: linux-3.3-newidmapper-03.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# patches headed upstream
Jesse Keating 7a32965
Patch12016: disable-i8042-check-on-apple-mac.patch
Jesse Keating 7a32965
Kyle McMartin dbda5f5
Patch12303: dmar-disable-when-ricoh-multifunction.patch
Kyle McMartin dbda5f5
Josh Boyer bc12142
Patch13003: efi-dont-map-boot-services-on-32bit.patch
Josh Boyer bc12142
Josh Boyer fcbaf26
Patch14000: hibernate-freeze-filesystems.patch
Josh Boyer fcbaf26
Dave Jones abc7c8e
Patch14010: lis3-improve-handling-of-null-rate.patch
Dave Jones abc7c8e
Dave Jones 5a67442
Patch20000: utrace.patch
Dave Jones 5a67442
986a9f3
# Flattened devicetree support
986a9f3
Patch21000: arm-omap-dt-compat.patch
986a9f3
Patch21001: arm-smsc-support-reading-mac-address-from-device-tree.patch
8efb1fa
Patch21004: arm-tegra-nvec-kconfig.patch
Josh Boyer 220cb1c
d005e8b
# highbank patches
d005e8b
# Highbank clock functions need to be EXPORT for module builds
d005e8b
Patch21010: highbank-export-clock-functions.patch
d005e8b
Josh Boyer 8aec613
Patch21070: ext4-Support-check-none-nocheck-mount-options.patch
Josh Boyer 34e654d
Josh Boyer cf9048c
Patch21092: udlfb-remove-sysfs-framebuffer-device-with-USB-disconnect.patch
Josh Boyer cf9048c
Josh Boyer d2b0178
Patch21093: rt2x00_fix_MCU_request_failures.patch
Josh Boyer d2b0178
Josh Boyer b080939
Patch21094: power-x86-destdir.patch
Josh Boyer b080939
Josh Boyer 4efc0c7
Patch21095: hfsplus-Change-finder_info-to-u32.patch
Josh Boyer 4efc0c7
Patch21096: hfsplus-Add-an-ioctl-to-bless-files.patch
Josh Boyer 4efc0c7
Josh Boyer 32e0cc2
#rhbz 788260
Josh Boyer 32e0cc2
Patch21233: jbd2-clear-BH_Delay-and-BH_Unwritten-in-journal_unmap_buf.patch
Josh Boyer 32e0cc2
Josh Boyer af1af57
#rhbz 754518
Josh Boyer af1af57
Patch21235: scsi-sd_revalidate_disk-prevent-NULL-ptr-deref.patch
Josh Boyer af1af57
Dave Jones 43a44e9
Patch21250: mcelog-rcu-splat.patch
Dave Jones 43a44e9
Patch21260: x86-Avoid-invoking-RCU-when-CPU-is-idle.patch
Josh Boyer 97821c0
Josh Boyer c10e537
#rhbz 795544
Dave Jones 43a44e9
Patch21280: ums_realtek-do-not-use-stack-memory-for-DMA-in-__do_.patch
Josh Boyer c10e537
Josh Boyer 4f646f3
#rhbz 727865 730007
Josh Boyer 4f646f3
Patch21300: ACPICA-Fix-regression-in-FADT-revision-checks.patch
Josh Boyer 4f646f3
Josh Boyer 5f05fc5
#rhbz 728478
Josh Boyer 5f05fc5
Patch21302: sony-laptop-Enable-keyboard-backlight-by-default.patch
Josh Boyer 5f05fc5
6875c9a
#rhbz 803809 CVE-2012-1179
6875c9a
Patch21304: mm-thp-fix-pmd_bad-triggering.patch
6875c9a
Dave Jones 766e8e8
Patch21400: unhandled-irqs-switch-to-polling.patch
Dave Jones 766e8e8
Dave Jones 40b1a0c
Patch22000: weird-root-dentry-name-debug.patch
Dave Jones 40b1a0c
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
BuildRoot: %{_tmppath}/kernel-%{KVERREL}-root
Jesse Keating 7a32965
Jesse Keating 7a32965
%description
Jesse Keating 7a32965
The kernel package contains the Linux kernel (vmlinuz), the core of any
Jesse Keating 7a32965
Linux operating system.  The kernel handles the basic functions
Jesse Keating 7a32965
of the operating system: memory allocation, process allocation, device
Jesse Keating 7a32965
input and output, etc.
Jesse Keating 7a32965
Jesse Keating 7a32965
Jesse Keating 7a32965
%package doc
Jesse Keating 7a32965
Summary: Various documentation bits found in the kernel source
Jesse Keating 7a32965
Group: Documentation
Jesse Keating 7a32965
%description doc
Jesse Keating 7a32965
This package contains documentation files from the kernel
Jesse Keating 7a32965
source. Various bits of information about the Linux kernel and the
Jesse Keating 7a32965
device drivers shipped with it are documented in these files.
Jesse Keating 7a32965
Jesse Keating 7a32965
You'll want to install this package if you need a reference to the
Jesse Keating 7a32965
options that can be passed to Linux kernel modules at load time.
Jesse Keating 7a32965
Jesse Keating 7a32965
Jesse Keating 7a32965
%package headers
Jesse Keating 7a32965
Summary: Header files for the Linux kernel for use by glibc
Jesse Keating 7a32965
Group: Development/System
Dave Jones d555d67
Obsoletes: glibc-kernheaders < 3.0-46
Jesse Keating 7a32965
Provides: glibc-kernheaders = 3.0-46
Jesse Keating 7a32965
%description headers
Jesse Keating 7a32965
Kernel-headers includes the C header files that specify the interface
Jesse Keating 7a32965
between the Linux kernel and userspace libraries and programs.  The
Jesse Keating 7a32965
header files define structures and constants that are needed for
Jesse Keating 7a32965
building most standard programs and are also needed for rebuilding the
Jesse Keating 7a32965
glibc package.
Jesse Keating 7a32965
Jesse Keating 7a32965
%package bootwrapper
Jesse Keating 7a32965
Summary: Boot wrapper files for generating combined kernel + initrd images
Jesse Keating 7a32965
Group: Development/System
Dave Jones 524b8cb
Requires: gzip binutils
Jesse Keating 7a32965
%description bootwrapper
Jesse Keating 7a32965
Kernel-bootwrapper contains the wrapper code which makes bootable "zImage"
Jesse Keating 7a32965
files combining both kernel and initial ramdisk.
Jesse Keating 7a32965
Jesse Keating 7a32965
%package debuginfo-common-%{_target_cpu}
Jesse Keating 7a32965
Summary: Kernel source files used by %{name}-debuginfo packages
Jesse Keating 7a32965
Group: Development/Debug
Jesse Keating 7a32965
%description debuginfo-common-%{_target_cpu}
Jesse Keating 7a32965
This package is required by %{name}-debuginfo subpackages.
Jesse Keating 7a32965
It provides the kernel source files common to all builds.
Jesse Keating 7a32965
Kyle McMartin 42d4c31
%if %{with_perf}
Kyle McMartin 42d4c31
%package -n perf
Kyle McMartin 42d4c31
Summary: Performance monitoring for the Linux kernel
Kyle McMartin 42d4c31
Group: Development/System
Kyle McMartin 42d4c31
License: GPLv2
Kyle McMartin 42d4c31
%description -n perf
Kyle McMartin 42d4c31
This package contains the perf tool, which enables performance monitoring
Kyle McMartin 42d4c31
of the Linux kernel.
Kyle McMartin 42d4c31
Kyle McMartin 42d4c31
%package -n perf-debuginfo
Kyle McMartin 42d4c31
Summary: Debug information for package perf
Kyle McMartin 42d4c31
Group: Development/Debug
Kyle McMartin 42d4c31
Requires: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}
Kyle McMartin 42d4c31
AutoReqProv: no
Kyle McMartin 42d4c31
%description -n perf-debuginfo
Kyle McMartin 42d4c31
This package provides debug information for the perf package.
Kyle McMartin 42d4c31
Kyle McMartin 42d4c31
# Note that this pattern only works right to match the .build-id
Kyle McMartin 42d4c31
# symlinks because of the trailing nonmatching alternation and
Kyle McMartin 42d4c31
# the leading .*, because of find-debuginfo.sh's buggy handling
Kyle McMartin 42d4c31
# of matching the pattern against the symlinks file.
Kyle McMartin 42d4c31
%{expand:%%global debuginfo_args %{?debuginfo_args} -p '.*%%{_bindir}/perf(\.debug)?|.*%%{_libexecdir}/perf-core/.*|XXX' -o perf-debuginfo.list}
Kyle McMartin 42d4c31
Kyle McMartin 42d4c31
%package -n python-perf
Kyle McMartin 42d4c31
Summary: Python bindings for apps which will manipulate perf events
Kyle McMartin 42d4c31
Group: Development/Libraries
Kyle McMartin 42d4c31
%description -n python-perf
Kyle McMartin 42d4c31
The python-perf package contains a module that permits applications
Kyle McMartin 42d4c31
written in the Python programming language to use the interface
Kyle McMartin 42d4c31
to manipulate perf events.
Kyle McMartin 42d4c31
Kyle McMartin 42d4c31
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
Kyle McMartin 42d4c31
Josh Boyer 27d8a0e
%package -n python-perf-debuginfo
Josh Boyer 27d8a0e
Summary: Debug information for package perf python bindings
Josh Boyer 27d8a0e
Group: Development/Debug
Josh Boyer 27d8a0e
Requires: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}
Josh Boyer 27d8a0e
AutoReqProv: no
Josh Boyer 27d8a0e
%description -n python-perf-debuginfo
Josh Boyer 27d8a0e
This package provides debug information for the perf python bindings.
Josh Boyer 27d8a0e
Josh Boyer 27d8a0e
# the python_sitearch macro should already be defined from above
Josh Boyer 27d8a0e
%{expand:%%global debuginfo_args %{?debuginfo_args} -p '.*%%{python_sitearch}/perf.so(\.debug)?|XXX' -o python-perf-debuginfo.list}
Josh Boyer 27d8a0e
Josh Boyer 27d8a0e
Kyle McMartin 42d4c31
%endif # with_perf
Kyle McMartin 42d4c31
Dave Jones 1d18ad9
%if %{with_tools}
Dave Jones 1d18ad9
%package -n kernel-tools
Dave Jones 1d18ad9
Summary: Assortment of tools for the Linux kernel
Jesse Keating 7a32965
Group: Development/System
Jesse Keating 7a32965
License: GPLv2
Josh Boyer 02587b4
Provides:  cpupowerutils = 1:009-0.6.p1
Josh Boyer 02587b4
Obsoletes: cpupowerutils < 1:009-0.6.p1
Josh Boyer 02587b4
Provides:  cpufreq-utils = 1:009-0.6.p1
Josh Boyer 02587b4
Provides:  cpufrequtils = 1:009-0.6.p1
Josh Boyer 02587b4
Obsoletes: cpufreq-utils < 1:009-0.6.p1
Josh Boyer 02587b4
Obsoletes: cpufrequtils < 1:009-0.6.p1
Josh Boyer 02587b4
Obsoletes: cpuspeed < 1:1.5-16
Dave Jones 1d18ad9
%description -n kernel-tools
Dave Jones 1d18ad9
This package contains the tools/ directory from the kernel source
Kyle McMartin 42d4c31
and the supporting documentation.
Roland McGrath 3c4ea9a
Josh Boyer 8addb5f
%package -n kernel-tools-devel
Josh Boyer 8addb5f
Summary: Assortment of tools for the Linux kernel
Josh Boyer 8addb5f
Group: Development/System
Josh Boyer 8addb5f
License: GPLv2
Josh Boyer 02587b4
Requires: kernel-tools = %{version}-%{release}
Josh Boyer 0ad3713
Provides:  cpupowerutils-devel = 1:009-0.6.p1
Josh Boyer 0ad3713
Obsoletes: cpupowerutils-devel < 1:009-0.6.p1
Josh Boyer 8addb5f
%description -n kernel-tools-devel
Josh Boyer 8addb5f
This package contains the development files for the tools/ directory from
Josh Boyer 8addb5f
the kernel source.
Josh Boyer 8addb5f
Dave Jones 1d18ad9
%package -n kernel-tools-debuginfo
Dave Jones 1d18ad9
Summary: Debug information for package kernel-tools
Roland McGrath 3c4ea9a
Group: Development/Debug
Roland McGrath 3c4ea9a
Requires: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}
Roland McGrath 3c4ea9a
AutoReqProv: no
Dave Jones 1d18ad9
%description -n kernel-tools-debuginfo
Dave Jones 1d18ad9
This package provides debug information for package kernel-tools.
Roland McGrath 3c4ea9a
Roland McGrath 3c4ea9a
# Note that this pattern only works right to match the .build-id
Roland McGrath 3c4ea9a
# symlinks because of the trailing nonmatching alternation and
Roland McGrath 3c4ea9a
# the leading .*, because of find-debuginfo.sh's buggy handling
Roland McGrath 3c4ea9a
# of matching the pattern against the symlinks file.
Kyle McMartin 42d4c31
%{expand:%%global debuginfo_args %{?debuginfo_args} -p '.*%%{_bindir}/centrino-decode(\.debug)?|.*%%{_bindir}/powernow-k8-decode(\.debug)?|.*%%{_bindir}/cpupower(\.debug)?|.*%%{_libdir}/libcpupower.*|XXX' -o kernel-tools-debuginfo.list}
Kyle McMartin ec31efd
Kyle McMartin 42d4c31
%endif # with_tools
Jesse Keating 7a32965
Jesse Keating 7a32965
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# This macro creates a kernel-<subpackage>-debuginfo package.
Jesse Keating 7a32965
#	%%kernel_debuginfo_package <subpackage>
Jesse Keating 7a32965
#
Jesse Keating 7a32965
%define kernel_debuginfo_package() \
Jesse Keating 7a32965
%package %{?1:%{1}-}debuginfo\
Jesse Keating 7a32965
Summary: Debug information for package %{name}%{?1:-%{1}}\
Jesse Keating 7a32965
Group: Development/Debug\
Jesse Keating 7a32965
Requires: %{name}-debuginfo-common-%{_target_cpu} = %{version}-%{release}\
Jesse Keating 7a32965
Provides: %{name}%{?1:-%{1}}-debuginfo-%{_target_cpu} = %{version}-%{release}\
Jesse Keating 7a32965
AutoReqProv: no\
Jesse Keating 7a32965
%description -n %{name}%{?1:-%{1}}-debuginfo\
Jesse Keating 7a32965
This package provides debug information for package %{name}%{?1:-%{1}}.\
Jesse Keating 7a32965
This is required to use SystemTap with %{name}%{?1:-%{1}}-%{KVERREL}.\
Jesse Keating 7a32965
%{expand:%%global debuginfo_args %{?debuginfo_args} -p '/.*/%%{KVERREL}%{?1:\.%{1}}/.*|/.*%%{KVERREL}%{?1:\.%{1}}(\.debug)?' -o debuginfo%{?1}.list}\
Jesse Keating 7a32965
%{nil}
Jesse Keating 7a32965
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# This macro creates a kernel-<subpackage>-devel package.
Jesse Keating 7a32965
#	%%kernel_devel_package <subpackage> <pretty-name>
Jesse Keating 7a32965
#
Jesse Keating 7a32965
%define kernel_devel_package() \
Jesse Keating 7a32965
%package %{?1:%{1}-}devel\
Jesse Keating 7a32965
Summary: Development package for building kernel modules to match the %{?2:%{2} }kernel\
Jesse Keating 7a32965
Group: System Environment/Kernel\
Jesse Keating 7a32965
Provides: kernel%{?1:-%{1}}-devel-%{_target_cpu} = %{version}-%{release}\
Jesse Keating 7a32965
Provides: kernel-devel-%{_target_cpu} = %{version}-%{release}%{?1:.%{1}}\
Jesse Keating 7a32965
Provides: kernel-devel = %{version}-%{release}%{?1:.%{1}}\
Jesse Keating 7a32965
Provides: kernel-devel-uname-r = %{KVERREL}%{?1:.%{1}}\
Jesse Keating 7a32965
AutoReqProv: no\
Jesse Keating 7a32965
Requires(pre): /usr/bin/find\
Jesse Keating 7a32965
Requires: perl\
Jesse Keating 7a32965
%description -n kernel%{?variant}%{?1:-%{1}}-devel\
Jesse Keating 7a32965
This package provides kernel headers and makefiles sufficient to build modules\
Jesse Keating 7a32965
against the %{?2:%{2} }kernel package.\
Jesse Keating 7a32965
%{nil}
Jesse Keating 7a32965
Jesse Keating 7a32965
#
Josh Boyer b8b2783
# This macro creates a kernel-<subpackage>-modules-extra package.
Josh Boyer b8b2783
#	%%kernel_modules-extra_package <subpackage> <pretty-name>
Josh Boyer b8b2783
#
Josh Boyer b8b2783
%define kernel_modules-extra_package() \
Josh Boyer b8b2783
%package %{?1:%{1}-}modules-extra\
Josh Boyer b8b2783
Summary: Extra kernel modules to match the %{?2:%{2} }kernel\
Josh Boyer b8b2783
Group: System Environment/Kernel\
Josh Boyer b8b2783
Provides: kernel%{?1:-%{1}}-modules-extra-%{_target_cpu} = %{version}-%{release}\
Josh Boyer b8b2783
Provides: kernel-modules-extra-%{_target_cpu} = %{version}-%{release}%{?1:.%{1}}\
Josh Boyer b8b2783
Provides: kernel-modules-extra = %{version}-%{release}%{?1:.%{1}}\
Josh Boyer b8b2783
Provides: kernel-modules-extra-uname-r = %{KVERREL}%{?1:.%{1}}\
Josh Boyer b66345b
Requires: kernel-uname-r = %{KVERREL}%{?1:.%{1}}\
Josh Boyer b8b2783
AutoReqProv: no\
Josh Boyer b8b2783
%description -n kernel%{?variant}%{?1:-%{1}}-modules-extra\
Josh Boyer b8b2783
This package provides less commonly used kernel modules for the %{?2:%{2} }kernel package.\
Josh Boyer b8b2783
%{nil}
Josh Boyer b8b2783
Josh Boyer b8b2783
#
Jesse Keating 7a32965
# This macro creates a kernel-<subpackage> and its -devel and -debuginfo too.
Jesse Keating 7a32965
#	%%define variant_summary The Linux kernel compiled for <configuration>
Jesse Keating 7a32965
#	%%kernel_variant_package [-n <pretty-name>] <subpackage>
Jesse Keating 7a32965
#
Jesse Keating 7a32965
%define kernel_variant_package(n:) \
Jesse Keating 7a32965
%package %1\
Jesse Keating 7a32965
Summary: %{variant_summary}\
Jesse Keating 7a32965
Group: System Environment/Kernel\
Jesse Keating 7a32965
%kernel_reqprovconf\
Jesse Keating 7a32965
%{expand:%%kernel_devel_package %1 %{!?-n:%1}%{?-n:%{-n*}}}\
Josh Boyer b8b2783
%{expand:%%kernel_modules-extra_package %1 %{!?-n:%1}%{?-n:%{-n*}}}\
Jesse Keating 7a32965
%{expand:%%kernel_debuginfo_package %1}\
Jesse Keating 7a32965
%{nil}
Jesse Keating 7a32965
Jesse Keating 7a32965
Jesse Keating 7a32965
# First the auxiliary packages of the main kernel package.
Jesse Keating 7a32965
%kernel_devel_package
Josh Boyer b8b2783
%kernel_modules-extra_package
Jesse Keating 7a32965
%kernel_debuginfo_package
Jesse Keating 7a32965
Jesse Keating 7a32965
Jesse Keating 7a32965
# Now, each variant package.
Jesse Keating 7a32965
Jesse Keating 7a32965
%define variant_summary The Linux kernel compiled for SMP machines
Jesse Keating 7a32965
%kernel_variant_package -n SMP smp
Jesse Keating 7a32965
%description smp
Jesse Keating 7a32965
This package includes a SMP version of the Linux kernel. It is
Jesse Keating 7a32965
required only on machines with two or more CPUs as well as machines with
Jesse Keating 7a32965
hyperthreading technology.
Jesse Keating 7a32965
Jesse Keating 7a32965
Install the kernel-smp package if your machine uses two or more CPUs.
Jesse Keating 7a32965
Jesse Keating 7a32965
Jesse Keating 7a32965
%define variant_summary The Linux kernel compiled for PAE capable machines
Jesse Keating 7a32965
%kernel_variant_package PAE
Jesse Keating 7a32965
%description PAE
Jesse Keating 7a32965
This package includes a version of the Linux kernel with support for up to
Jesse Keating 7a32965
64GB of high memory. It requires a CPU with Physical Address Extensions (PAE).
Jesse Keating 7a32965
The non-PAE kernel can only address up to 4GB of memory.
Jesse Keating 7a32965
Install the kernel-PAE package if your machine has more than 4GB of memory.
Jesse Keating 7a32965
Jesse Keating 7a32965
Jesse Keating 7a32965
%define variant_summary The Linux kernel compiled with extra debugging enabled for PAE capable machines
Jesse Keating 7a32965
%kernel_variant_package PAEdebug
Jesse Keating 7a32965
Obsoletes: kernel-PAE-debug
Jesse Keating 7a32965
%description PAEdebug
Jesse Keating 7a32965
This package includes a version of the Linux kernel with support for up to
Jesse Keating 7a32965
64GB of high memory. It requires a CPU with Physical Address Extensions (PAE).
Jesse Keating 7a32965
The non-PAE kernel can only address up to 4GB of memory.
Jesse Keating 7a32965
Install the kernel-PAE package if your machine has more than 4GB of memory.
Jesse Keating 7a32965
Jesse Keating 7a32965
This variant of the kernel has numerous debugging options enabled.
Jesse Keating 7a32965
It should only be installed when trying to gather additional information
Jesse Keating 7a32965
on kernel bugs, as some of these options impact performance noticably.
Jesse Keating 7a32965
Jesse Keating 7a32965
Jesse Keating 7a32965
%define variant_summary The Linux kernel compiled with extra debugging enabled
Jesse Keating 7a32965
%kernel_variant_package debug
Jesse Keating 7a32965
%description debug
Jesse Keating 7a32965
The kernel package contains the Linux kernel (vmlinuz), the core of any
Jesse Keating 7a32965
Linux operating system.  The kernel handles the basic functions
Jesse Keating 7a32965
of the operating system:  memory allocation, process allocation, device
Jesse Keating 7a32965
input and output, etc.
Jesse Keating 7a32965
Jesse Keating 7a32965
This variant of the kernel has numerous debugging options enabled.
Jesse Keating 7a32965
It should only be installed when trying to gather additional information
Jesse Keating 7a32965
on kernel bugs, as some of these options impact performance noticably.
Jesse Keating 7a32965
534352f
%define variant_summary The Linux kernel compiled for marvell kirkwood boards
534352f
%kernel_variant_package kirkwood
534352f
%description kirkwood
534352f
This package includes a version of the Linux kernel with support for
534352f
marvell kirkwood based systems, i.e., guruplug, sheevaplug
534352f
534352f
%define variant_summary The Linux kernel compiled for freescale boards
534352f
%kernel_variant_package imx
534352f
%description imx
534352f
This package includes a version of the Linux kernel with support for
534352f
freescale based systems, i.e., efika smartbook.
534352f
534352f
%define variant_summary The Linux kernel compiled for Calxeda boards
534352f
%kernel_variant_package highbank
534352f
%description highbank
534352f
This package includes a version of the Linux kernel with support for
534352f
Calxeda based systems, i.e., HP arm servers.
Jesse Keating 7a32965
986a9f3
%define variant_summary The Linux kernel compiled for TI-OMAP boards
986a9f3
%kernel_variant_package omap
986a9f3
%description omap
986a9f3
This package includes a version of the Linux kernel with support for
986a9f3
TI-OMAP based systems, i.e., BeagleBoard-xM.
986a9f3
986a9f3
%define variant_summary The Linux kernel compiled for tegra boards
986a9f3
%kernel_variant_package tegra
986a9f3
%description tegra
986a9f3
This package includes a version of the Linux kernel with support for
986a9f3
nvidia tegra based systems, i.e., trimslice, ac-100.
986a9f3
986a9f3
Jesse Keating 7a32965
%prep
Jesse Keating 7a32965
# do a few sanity-checks for --with *only builds
Jesse Keating 7a32965
%if %{with_baseonly}
Jesse Keating 7a32965
%if !%{with_up}%{with_pae}
Jesse Keating 7a32965
echo "Cannot build --with baseonly, up build is disabled"
Jesse Keating 7a32965
exit 1
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%if %{with_smponly}
Jesse Keating 7a32965
%if !%{with_smp}
Jesse Keating 7a32965
echo "Cannot build --with smponly, smp build is disabled"
Jesse Keating 7a32965
exit 1
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Josh Boyer c78a082
%if "%{baserelease}" == "0"
Chuck Ebbert 05e763b
echo "baserelease must be greater than zero"
Chuck Ebbert 05e763b
exit 1
Chuck Ebbert 05e763b
%endif
Chuck Ebbert 05e763b
Jesse Keating 7a32965
# more sanity checking; do it quietly
Jesse Keating 7a32965
if [ "%{patches}" != "%%{patches}" ] ; then
Jesse Keating 7a32965
  for patch in %{patches} ; do
Jesse Keating 7a32965
    if [ ! -f $patch ] ; then
Jesse Keating 7a32965
      echo "ERROR: Patch  ${patch##/*/}  listed in specfile but is missing"
Jesse Keating 7a32965
      exit 1
Jesse Keating 7a32965
    fi
Jesse Keating 7a32965
  done
Jesse Keating 7a32965
fi 2>/dev/null
Jesse Keating 7a32965
Jesse Keating 7a32965
patch_command='patch -p1 -F1 -s'
Jesse Keating 7a32965
ApplyPatch()
Jesse Keating 7a32965
{
Jesse Keating 7a32965
  local patch=$1
Jesse Keating 7a32965
  shift
Jesse Keating 7a32965
  if [ ! -f $RPM_SOURCE_DIR/$patch ]; then
Jesse Keating 7a32965
    exit 1
Jesse Keating 7a32965
  fi
Jesse Keating 7a32965
%if !%{using_upstream_branch}
Dave Jones b89c80f
  if ! grep -E "^Patch[0-9]+: $patch\$" %{_specdir}/${RPM_PACKAGE_NAME%%%%%{?variant}}.spec ; then
Kyle McMartin a8a2918
    if [ "${patch:0:8}" != "patch-3." ] ; then
Jesse Keating 7a32965
      echo "ERROR: Patch  $patch  not listed as a source patch in specfile"
Jesse Keating 7a32965
      exit 1
Jesse Keating 7a32965
    fi
Jesse Keating 7a32965
  fi 2>/dev/null
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
  case "$patch" in
Jesse Keating 7a32965
  *.bz2) bunzip2 < "$RPM_SOURCE_DIR/$patch" | $patch_command ${1+"$@"} ;;
Chuck Ebbert 7cfa689
  *.gz)  gunzip  < "$RPM_SOURCE_DIR/$patch" | $patch_command ${1+"$@"} ;;
Chuck Ebbert 7cfa689
  *.xz)  unxz    < "$RPM_SOURCE_DIR/$patch" | $patch_command ${1+"$@"} ;;
Jesse Keating 7a32965
  *) $patch_command ${1+"$@"} < "$RPM_SOURCE_DIR/$patch" ;;
Jesse Keating 7a32965
  esac
Jesse Keating 7a32965
}
Jesse Keating 7a32965
Jesse Keating 7a32965
# don't apply patch if it's empty
Jesse Keating 7a32965
ApplyOptionalPatch()
Jesse Keating 7a32965
{
Jesse Keating 7a32965
  local patch=$1
Jesse Keating 7a32965
  shift
Jesse Keating 7a32965
  if [ ! -f $RPM_SOURCE_DIR/$patch ]; then
Jesse Keating 7a32965
    exit 1
Jesse Keating 7a32965
  fi
Jesse Keating 7a32965
  local C=$(wc -l $RPM_SOURCE_DIR/$patch | awk '{print $1}')
Jesse Keating 7a32965
  if [ "$C" -gt 9 ]; then
Jesse Keating 7a32965
    ApplyPatch $patch ${1+"$@"}
Jesse Keating 7a32965
  fi
Jesse Keating 7a32965
}
Jesse Keating 7a32965
Jesse Keating 7a32965
# First we unpack the kernel tarball.
Jesse Keating 7a32965
# If this isn't the first make prep, we use links to the existing clean tarball
Jesse Keating 7a32965
# which speeds things up quite a bit.
Jesse Keating 7a32965
Jesse Keating 7a32965
# Update to latest upstream.
Jesse Keating 7a32965
%if 0%{?released_kernel}
Kyle McMartin 8b2fa9b
%define vanillaversion 3.%{base_sublevel}
Jesse Keating 7a32965
# non-released_kernel case
Jesse Keating 7a32965
%else
Jesse Keating 7a32965
%if 0%{?rcrev}
Kyle McMartin 8b2fa9b
%define vanillaversion 3.%{upstream_sublevel}-rc%{rcrev}
Jesse Keating 7a32965
%if 0%{?gitrev}
Kyle McMartin 8b2fa9b
%define vanillaversion 3.%{upstream_sublevel}-rc%{rcrev}-git%{gitrev}
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
%else
Jesse Keating 7a32965
# pre-{base_sublevel+1}-rc1 case
Jesse Keating 7a32965
%if 0%{?gitrev}
Kyle McMartin 8b2fa9b
%define vanillaversion 3.%{base_sublevel}-git%{gitrev}
Jesse Keating 7a32965
%else
Kyle McMartin 8b2fa9b
%define vanillaversion 3.%{base_sublevel}
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Dave Jones 166b79a
# %%{vanillaversion} : the full version name, e.g. 2.6.35-rc6-git3
Dave Jones 166b79a
# %%{kversion}       : the base version, e.g. 2.6.34
Jesse Keating 7a32965
Dave Jones 166b79a
# Use kernel-%%{kversion}%%{?dist} as the top-level directory name
Chuck Ebbert 26d08c0
# so we can prep different trees within a single git directory.
Jesse Keating 7a32965
Chuck Ebbert 26d08c0
# Build a list of the other top-level kernel tree directories.
Chuck Ebbert 26d08c0
# This will be used to hardlink identical vanilla subdirs.
Kyle McMartin 8b2fa9b
sharedirs=$(find "$PWD" -maxdepth 1 -type d -name 'kernel-3.*' \
Chuck Ebbert 26d08c0
            | grep -x -v "$PWD"/kernel-%{kversion}%{?dist}) ||:
Jesse Keating 7a32965
Dave Jones 9e29439
# Delete all old stale trees.
Dave Jones 9e29439
if [ -d kernel-%{kversion}%{?dist} ]; then
Dave Jones 9e29439
  cd kernel-%{kversion}%{?dist}
Dave Jones 9e29439
  for i in linux-*
Dave Jones 9e29439
  do
Dave Jones 9e29439
     # Just in case we ctrl-c'd a prep already
Dave Jones 9e29439
     rm -rf deleteme.%{_target_cpu}
Dave Jones 9e29439
     # Move away the stale away, and delete in background.
Dave Jones 9e29439
     mv $i deleteme-$i
Dave Jones 9e29439
     rm -rf deleteme* &
Dave Jones 9e29439
  done
Dave Jones 9e29439
  cd ..
Dave Jones 9e29439
fi
Dave Jones 9e29439
Dave Jones 9e29439
# Generate new tree
Chuck Ebbert 26d08c0
if [ ! -d kernel-%{kversion}%{?dist}/vanilla-%{vanillaversion} ]; then
Chuck Ebbert 26d08c0
Chuck Ebbert 26d08c0
  if [ -d kernel-%{kversion}%{?dist}/vanilla-%{kversion} ]; then
Chuck Ebbert 26d08c0
Chuck Ebbert 26d08c0
    # The base vanilla version already exists.
Chuck Ebbert 26d08c0
    cd kernel-%{kversion}%{?dist}
Jesse Keating 7a32965
Jesse Keating 7a32965
    # Any vanilla-* directories other than the base one are stale.
Jesse Keating 7a32965
    for dir in vanilla-*; do
Jesse Keating 7a32965
      [ "$dir" = vanilla-%{kversion} ] || rm -rf $dir &
Jesse Keating 7a32965
    done
Jesse Keating 7a32965
Jesse Keating 7a32965
  else
Jesse Keating 7a32965
Jesse Keating 7a32965
    rm -f pax_global_header
Chuck Ebbert 26d08c0
    # Look for an identical base vanilla dir that can be hardlinked.
Jesse Keating 7a32965
    for sharedir in $sharedirs ; do
Chuck Ebbert 26d08c0
      if [[ ! -z $sharedir  &&  -d $sharedir/vanilla-%{kversion} ]] ; then
Jesse Keating 7a32965
        break
Jesse Keating 7a32965
      fi
Jesse Keating 7a32965
    done
Chuck Ebbert 26d08c0
    if [[ ! -z $sharedir  &&  -d $sharedir/vanilla-%{kversion} ]] ; then
Chuck Ebbert 26d08c0
%setup -q -n kernel-%{kversion}%{?dist} -c -T
Chuck Ebbert 26d08c0
      cp -rl $sharedir/vanilla-%{kversion} .
Jesse Keating 7a32965
    else
Chuck Ebbert 26d08c0
%setup -q -n kernel-%{kversion}%{?dist} -c
Josh Boyer 728b14e
      mv linux-%{kversion} vanilla-%{kversion}
Jesse Keating 7a32965
    fi
Jesse Keating 7a32965
Jesse Keating 7a32965
  fi
Jesse Keating 7a32965
Jesse Keating 7a32965
%if "%{kversion}" != "%{vanillaversion}"
Jesse Keating 7a32965
Jesse Keating 7a32965
  for sharedir in $sharedirs ; do
Chuck Ebbert 26d08c0
    if [[ ! -z $sharedir  &&  -d $sharedir/vanilla-%{vanillaversion} ]] ; then
Jesse Keating 7a32965
      break
Jesse Keating 7a32965
    fi
Jesse Keating 7a32965
  done
Chuck Ebbert 26d08c0
  if [[ ! -z $sharedir  &&  -d $sharedir/vanilla-%{vanillaversion} ]] ; then
Jesse Keating 7a32965
Chuck Ebbert 26d08c0
    cp -rl $sharedir/vanilla-%{vanillaversion} .
Jesse Keating 7a32965
Jesse Keating 7a32965
  else
Jesse Keating 7a32965
Chuck Ebbert 26d08c0
    # Need to apply patches to the base vanilla version.
Jesse Keating 7a32965
    cp -rl vanilla-%{kversion} vanilla-%{vanillaversion}
Jesse Keating 7a32965
    cd vanilla-%{vanillaversion}
Jesse Keating 7a32965
Jesse Keating 7a32965
# Update vanilla to the latest upstream.
Jesse Keating 7a32965
# (non-released_kernel case only)
Jesse Keating 7a32965
%if 0%{?rcrev}
Josh Boyer 471066e
    ApplyPatch patch-3.%{upstream_sublevel}-rc%{rcrev}.xz
Jesse Keating 7a32965
%if 0%{?gitrev}
Josh Boyer 471066e
    ApplyPatch patch-3.%{upstream_sublevel}-rc%{rcrev}-git%{gitrev}.xz
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
%else
Jesse Keating 7a32965
# pre-{base_sublevel+1}-rc1 case
Jesse Keating 7a32965
%if 0%{?gitrev}
Kyle McMartin 8b2fa9b
    ApplyPatch patch-3.%{base_sublevel}-git%{gitrev}.bz2
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
    cd ..
Jesse Keating 7a32965
Jesse Keating 7a32965
  fi
Jesse Keating 7a32965
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
else
Chuck Ebbert 26d08c0
Chuck Ebbert 26d08c0
  # We already have all vanilla dirs, just change to the top-level directory.
Chuck Ebbert 26d08c0
  cd kernel-%{kversion}%{?dist}
Chuck Ebbert 26d08c0
Jesse Keating 7a32965
fi
Jesse Keating 7a32965
Chuck Ebbert 26d08c0
# Now build the fedora kernel tree.
Josh Boyer 83337ce
cp -rl vanilla-%{vanillaversion} linux-%{KVERREL}
Jesse Keating 7a32965
Josh Boyer 83337ce
cd linux-%{KVERREL}
Jesse Keating 7a32965
Jesse Keating 7a32965
# released_kernel with possible stable updates
Jesse Keating 7a32965
%if 0%{?stable_base}
Jesse Keating 7a32965
ApplyPatch %{stable_patch_00}
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
%if 0%{?stable_rc}
Jesse Keating 7a32965
ApplyPatch %{stable_patch_01}
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%if %{using_upstream_branch}
Jesse Keating 7a32965
### BRANCH APPLY ###
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
# Drop some necessary files from the source dir into the buildroot
Jesse Keating 7a32965
cp $RPM_SOURCE_DIR/config-* .
Jesse Keating 7a32965
cp %{SOURCE15} .
Jesse Keating 7a32965
Chuck Ebbert c6b36e0
%if !%{debugbuildsenabled}
Chuck Ebbert 11ee033
%if %{with_release}
Chuck Ebbert c6b36e0
# The normal build is a really debug build and the user has explicitly requested
Chuck Ebbert 11ee033
# a release kernel. Change the config files into non-debug versions.
Chuck Ebbert c6b36e0
make -f %{SOURCE19} config-release
Chuck Ebbert c6b36e0
%endif
Chuck Ebbert c6b36e0
%endif
Chuck Ebbert c6b36e0
Jesse Keating 7a32965
# Dynamically generate kernel .config files from config-* files
Jesse Keating 7a32965
make -f %{SOURCE20} VERSION=%{version} configs
Jesse Keating 7a32965
Jarod Wilson 5b65297
# Merge in any user-provided local config option changes
Kyle McMartin 9410e6c
%if %{?all_arch_configs:1}%{!?all_arch_configs:0}
Jarod Wilson 5b65297
for i in %{all_arch_configs}
Jarod Wilson 5b65297
do
Jarod Wilson 5b65297
  mv $i $i.tmp
Jarod Wilson 5b65297
  ./merge.pl %{SOURCE1000} $i.tmp > $i
Jarod Wilson 5b65297
  rm $i.tmp
Jarod Wilson 5b65297
done
cfdfd01
%endif
Jarod Wilson 5b65297
Jesse Keating 7a32965
ApplyPatch linux-2.6-makefile-after_link.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# misc small stuff to make things compile
Jesse Keating 7a32965
#
Jesse Keating 7a32965
ApplyOptionalPatch linux-2.6-compile-fixes.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
%if !%{nopatches}
Jesse Keating 7a32965
Jesse Keating 7a32965
# revert patches from upstream that conflict or that we get via other means
Jesse Keating 7a32965
ApplyOptionalPatch linux-2.6-upstream-reverts.patch -R
Jesse Keating 7a32965
Jesse Keating 7a32965
Dave Jones 64f1bc9
ApplyPatch taint-vbox.patch
Dave Jones 64f1bc9
Jesse Keating 7a32965
# Architecture patches
Jesse Keating 7a32965
# x86(-64)
Dave Jones c62acbf
ApplyPatch linux-2.6-32bit-mmap-exec-randomization.patch
Dave Jones 0f55b32
ApplyPatch linux-2.6-i386-nx-emulation.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
#
986a9f3
# ARM
986a9f3
#
Josh Boyer e8409b1
#pplyPatch arm-omap-dt-compat.patch
986a9f3
ApplyPatch arm-smsc-support-reading-mac-address-from-device-tree.patch
d78aa36
ApplyPatch arm-tegra-nvec-kconfig.patch
986a9f3
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# bugfixes to drivers and filesystems
Jesse Keating 7a32965
#
Jesse Keating 7a32965
Jesse Keating 7a32965
# ext4
Josh Boyer 598ed8b
ApplyPatch ext4-fix-resize-when-resizing-within-single-group.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# xfs
Jesse Keating 7a32965
Jesse Keating 7a32965
# btrfs
Jesse Keating 7a32965
Jesse Keating 7a32965
Jesse Keating 7a32965
# eCryptfs
Jesse Keating 7a32965
Jesse Keating 7a32965
# NFSv4
Dave Jones f3fbdcb
ApplyPatch linux-3.1-keys-remove-special-keyring.patch
Josh Boyer a0668fa
ApplyPatch linux-3.3-newidmapper-01.patch
Josh Boyer a0668fa
ApplyPatch linux-3.3-newidmapper-02.patch
Josh Boyer a0668fa
ApplyPatch linux-3.3-newidmapper-03.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# USB
Jesse Keating 7a32965
Jesse Keating 7a32965
# WMI
Jesse Keating 7a32965
Jesse Keating 7a32965
# ACPI
Jesse Keating 7a32965
ApplyPatch linux-2.6-defaults-acpi-video.patch
Jesse Keating 7a32965
ApplyPatch linux-2.6-acpi-video-dos.patch
Jesse Keating 7a32965
ApplyPatch linux-2.6-acpi-debug-infinite-loop.patch
Josh Boyer 5e97a20
ApplyPatch acpi-ensure-thermal-limits-match-cpu-freq.patch
Dave Jones a4b83ee
ApplyPatch acpi-sony-nonvs-blacklist.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# PCI
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# enable ASPM by default on hardware we expect to work
Jesse Keating 7a32965
ApplyPatch linux-2.6-defaults-aspm.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# SCSI Bits.
Jesse Keating 7a32965
#
Jesse Keating 7a32965
Jesse Keating 7a32965
# ACPI
Jesse Keating 7a32965
Jesse Keating 7a32965
# ALSA
Jesse Keating 7a32965
Jesse Keating 7a32965
# Networking
Jesse Keating 7a32965
Jesse Keating 7a32965
# Misc fixes
Jesse Keating 7a32965
# The input layer spews crap no-one cares about.
Jesse Keating 7a32965
ApplyPatch linux-2.6-input-kill-stupid-messages.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# stop floppy.ko from autoloading during udev...
Jesse Keating 7a32965
ApplyPatch die-floppy-die.patch
Josh Boyer dff0854
ApplyPatch floppy-Remove-_hlt-related-functions.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
ApplyPatch linux-2.6.30-no-pcspkr-modalias.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# Allow to use 480600 baud on 16C950 UARTs
Jesse Keating 7a32965
ApplyPatch linux-2.6-serial-460800.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# Silence some useless messages that still get printed with 'quiet'
Jesse Keating 7a32965
ApplyPatch linux-2.6-silence-noise.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# Make fbcon not show the penguins with 'quiet'
Jesse Keating 7a32965
ApplyPatch linux-2.6-silence-fbcon-logo.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# Changes to upstream defaults.
Jesse Keating 7a32965
Jesse Keating 7a32965
Jesse Keating 7a32965
# /dev/crash driver.
Jesse Keating 7a32965
ApplyPatch linux-2.6-crash-driver.patch
Jesse Keating 7a32965
Dave Jones f737348
# Hack e1000e to work on Montevina SDV
Dave Jones f737348
ApplyPatch linux-2.6-e1000-ich9-montevina.patch
Dave Jones f737348
Jesse Keating 7a32965
# crypto/
Josh Boyer c2a12cd
ApplyPatch modsign-20111207.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# Assorted Virt Fixes
Jesse Keating 7a32965
ApplyPatch fix_xen_guest_on_old_EC2.patch
Jesse Keating 7a32965
Kyle McMartin d3e4af8
# DRM core
Josh Boyer 0e0a3af
#ApplyPatch drm-edid-try-harder-to-fix-up-broken-headers.patch
5327175
ApplyPatch drm-vgem.patch
Jesse Keating 7a32965
Kyle McMartin d3e4af8
# Nouveau DRM
Kyle McMartin d3e4af8
Kyle McMartin d3e4af8
# Intel DRM
Jesse Keating 7a32965
ApplyOptionalPatch drm-intel-next.patch
4574844
ApplyPatch drm-i915-dp-stfu.patch
Dave Jones 19e3780
Jesse Keating 7a32965
ApplyPatch linux-2.6-intel-iommu-igfx.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# silence the ACPI blacklist code
Jesse Keating 7a32965
ApplyPatch linux-2.6-silence-acpi-blacklist.patch
Josh Boyer e7cafd4
ApplyPatch quite-apm.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# V4L/DVB updates/fixes/experimental drivers
Jesse Keating 7a32965
#  apply if non-empty
Jesse Keating 7a32965
ApplyOptionalPatch linux-2.6-v4l-dvb-fixes.patch
Jesse Keating 7a32965
ApplyOptionalPatch linux-2.6-v4l-dvb-update.patch
Jesse Keating 7a32965
ApplyOptionalPatch linux-2.6-v4l-dvb-experimental.patch
Jesse Keating 7a32965
Jesse Keating 7a32965
# Patches headed upstream
Jesse Keating 7a32965
ApplyPatch disable-i8042-check-on-apple-mac.patch
0aaee59
ApplyPatch linux-3.3-virtio-scsi.patch
Jesse Keating 7a32965
Kyle McMartin dbda5f5
# rhbz#605888
Kyle McMartin dbda5f5
ApplyPatch dmar-disable-when-ricoh-multifunction.patch
Kyle McMartin dbda5f5
Josh Boyer bc12142
ApplyPatch efi-dont-map-boot-services-on-32bit.patch
Josh Boyer bc12142
Josh Boyer fcbaf26
ApplyPatch hibernate-freeze-filesystems.patch
Josh Boyer fcbaf26
Dave Jones abc7c8e
ApplyPatch lis3-improve-handling-of-null-rate.patch
Dave Jones abc7c8e
Dave Jones 5a67442
# utrace.
Josh Boyer 62e9e5a
ApplyPatch utrace.patch
Neil Horman 778a29a
Josh Boyer 8aec613
ApplyPatch ext4-Support-check-none-nocheck-mount-options.patch
Josh Boyer 8aec613
Josh Boyer cf9048c
ApplyPatch udlfb-remove-sysfs-framebuffer-device-with-USB-disconnect.patch
Josh Boyer cf9048c
Josh Boyer d2b0178
#rhbz 772772
Josh Boyer d2b0178
ApplyPatch rt2x00_fix_MCU_request_failures.patch
Josh Boyer d2b0178
Josh Boyer b080939
ApplyPatch power-x86-destdir.patch
Josh Boyer b080939
Josh Boyer 4efc0c7
ApplyPatch hfsplus-Change-finder_info-to-u32.patch
Josh Boyer 4efc0c7
ApplyPatch hfsplus-Add-an-ioctl-to-bless-files.patch
Josh Boyer 4efc0c7
Josh Boyer 32e0cc2
#rhbz 788269
Josh Boyer 32e0cc2
ApplyPatch jbd2-clear-BH_Delay-and-BH_Unwritten-in-journal_unmap_buf.patch
Josh Boyer 32e0cc2
Josh Boyer af1af57
#rhbz 754518
Josh Boyer af1af57
ApplyPatch scsi-sd_revalidate_disk-prevent-NULL-ptr-deref.patch
Josh Boyer af1af57
Josh Boyer 97821c0
ApplyPatch mcelog-rcu-splat.patch
Josh Boyer 97821c0
Josh Boyer c10e537
#rhbz 795544
Josh Boyer c10e537
ApplyPatch ums_realtek-do-not-use-stack-memory-for-DMA-in-__do_.patch
Josh Boyer c10e537
Josh Boyer 4f646f3
#rhbz 727865 730007
Josh Boyer 4f646f3
ApplyPatch ACPICA-Fix-regression-in-FADT-revision-checks.patch
Josh Boyer 4f646f3
Josh Boyer 5f05fc5
#rhbz 728478
Josh Boyer 5f05fc5
ApplyPatch sony-laptop-Enable-keyboard-backlight-by-default.patch
Josh Boyer 5f05fc5
Dave Jones 766e8e8
ApplyPatch unhandled-irqs-switch-to-polling.patch
Dave Jones 766e8e8
Dave Jones 40b1a0c
ApplyPatch weird-root-dentry-name-debug.patch
Dave Jones 40b1a0c
6875c9a
#rhbz 803809 CVE-2012-1179
6875c9a
ApplyPatch mm-thp-fix-pmd_bad-triggering.patch
6875c9a
d005e8b
#Highbank clock functions
d005e8b
ApplyPatch highbank-export-clock-functions.patch 
d005e8b
Jesse Keating 7a32965
# END OF PATCH APPLICATIONS
Jesse Keating 7a32965
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
# Any further pre-build tree manipulations happen here.
Jesse Keating 7a32965
Jesse Keating 7a32965
chmod +x scripts/checkpatch.pl
Jesse Keating 7a32965
Dave Jones ed3d267
# This Prevents scripts/setlocalversion from mucking with our version numbers.
Kyle McMartin fa06609
touch .scmversion
Kyle McMartin fa06609
Jesse Keating 7a32965
# only deal with configs if we are going to build for the arch
Jesse Keating 7a32965
%ifnarch %nobuildarches
Jesse Keating 7a32965
Jesse Keating 7a32965
mkdir configs
Jesse Keating 7a32965
Jesse Keating 7a32965
# Remove configs not for the buildarch
Jesse Keating 7a32965
for cfg in kernel-%{version}-*.config; do
Jesse Keating 7a32965
  if [ `echo %{all_arch_configs} | grep -c $cfg` -eq 0 ]; then
Jesse Keating 7a32965
    rm -f $cfg
Jesse Keating 7a32965
  fi
Jesse Keating 7a32965
done
Jesse Keating 7a32965
Jesse Keating 7a32965
%if !%{debugbuildsenabled}
Jesse Keating 7a32965
rm -f kernel-%{version}-*debug.config
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
# now run oldconfig over all the config files
Dave Jones 384fed0
for i in kernel-*-$(uname -p)*.config
Jesse Keating 7a32965
do
Jesse Keating 7a32965
  mv $i .config
Jesse Keating 7a32965
  Arch=`head -1 .config | cut -b 3-`
Kyle McMartin a62b0aa
  make ARCH=$Arch oldnoconfig
Jesse Keating 7a32965
  echo "# $Arch" > configs/$i
Jesse Keating 7a32965
  cat .config >> configs/$i
Jesse Keating 7a32965
done
Jesse Keating 7a32965
# end of kernel config
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
John W. Linville fa580e5
# get rid of unwanted files resulting from patch fuzz
John W. Linville fa580e5
find . \( -name "*.orig" -o -name "*~" \) -exec rm -f {} \; >/dev/null
John W. Linville fa580e5
Dave Jones 246f94f
# remove unnecessary SCM files
Dave Jones 246f94f
find . -name .gitignore -exec rm -f {} \; >/dev/null
Dave Jones 246f94f
Josh Boyer c2a12cd
%if %{signmodules}
Josh Boyer c2a12cd
cat <
Josh Boyer c2a12cd
###
Josh Boyer c2a12cd
### Now generating a PGP key pair to be used for signing modules.
Josh Boyer c2a12cd
###
Josh Boyer c2a12cd
### If this takes a long time, you might wish to run rngd in the background to
Josh Boyer c2a12cd
### keep the supply of entropy topped up.  It needs to be run as root, and
Josh Boyer c2a12cd
### should use a hardware random number generator if one is available, eg:
Josh Boyer c2a12cd
###
Josh Boyer c2a12cd
###     rngd -r /dev/hwrandom
Josh Boyer c2a12cd
###
Josh Boyer c2a12cd
### If one isn't available, the pseudo-random number generator can be used:
Josh Boyer c2a12cd
###
Josh Boyer c2a12cd
###     rngd -r /dev/urandom
Josh Boyer c2a12cd
###
Josh Boyer c2a12cd
EOF
Josh Boyer c2a12cd
gpg --homedir . --batch --gen-key %{SOURCE11}
Josh Boyer c2a12cd
cat <
Josh Boyer c2a12cd
###
Josh Boyer c2a12cd
### Key pair generated.
Josh Boyer c2a12cd
###
Josh Boyer c2a12cd
EOF
Josh Boyer c2a12cd
%endif
Josh Boyer c2a12cd
Jesse Keating 7a32965
cd ..
Jesse Keating 7a32965
Jesse Keating 7a32965
###
Jesse Keating 7a32965
### build
Jesse Keating 7a32965
###
Jesse Keating 7a32965
%build
Jesse Keating 7a32965
Jesse Keating 7a32965
%if %{with_sparse}
Jesse Keating 7a32965
%define sparse_mflags	C=1
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Kyle McMartin 1bfd59b
%if %{with_debuginfo}
Jesse Keating 7a32965
# This override tweaks the kernel makefiles so that we run debugedit on an
Jesse Keating 7a32965
# object before embedding it.  When we later run find-debuginfo.sh, it will
Jesse Keating 7a32965
# run debugedit again.  The edits it does change the build ID bits embedded
Jesse Keating 7a32965
# in the stripped object, but repeating debugedit is a no-op.  We do it
Jesse Keating 7a32965
# beforehand to get the proper final build ID bits into the embedded image.
Jesse Keating 7a32965
# This affects the vDSO images in vmlinux, and the vmlinux image in bzImage.
Jesse Keating 7a32965
export AFTER_LINK=\
Jesse Keating 7a32965
'sh -xc "/usr/lib/rpm/debugedit -b $$RPM_BUILD_DIR -d /usr/src/debug \
Jesse Keating 7a32965
    				-i $@ > $@.id"'
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
cp_vmlinux()
Jesse Keating 7a32965
{
Jesse Keating 7a32965
  eu-strip --remove-comment -o "$2" "$1"
Jesse Keating 7a32965
}
Jesse Keating 7a32965
Jesse Keating 7a32965
BuildKernel() {
Jesse Keating 7a32965
    MakeTarget=$1
Jesse Keating 7a32965
    KernelImage=$2
Jesse Keating 7a32965
    Flavour=$3
Jesse Keating 7a32965
    InstallName=${4:-vmlinuz}
Jesse Keating 7a32965
Jesse Keating 7a32965
    # Pick the right config file for the kernel we're building
Jesse Keating 7a32965
    Config=kernel-%{version}-%{_target_cpu}${Flavour:+-${Flavour}}.config
Jesse Keating 7a32965
    DevelDir=/usr/src/kernels/%{KVERREL}${Flavour:+.${Flavour}}
Jesse Keating 7a32965
Jesse Keating 7a32965
    # When the bootable image is just the ELF kernel, strip it.
Jesse Keating 7a32965
    # We already copy the unstripped file into the debuginfo package.
Jesse Keating 7a32965
    if [ "$KernelImage" = vmlinux ]; then
Jesse Keating 7a32965
      CopyKernel=cp_vmlinux
Jesse Keating 7a32965
    else
Jesse Keating 7a32965
      CopyKernel=cp
Jesse Keating 7a32965
    fi
Jesse Keating 7a32965
Jesse Keating 7a32965
    KernelVer=%{version}-%{release}.%{_target_cpu}${Flavour:+.${Flavour}}
Jesse Keating 7a32965
    echo BUILDING A KERNEL FOR ${Flavour} %{_target_cpu}...
Jesse Keating 7a32965
Josh Boyer 740de53
    %if 0%{?stable_update}
Josh Boyer 740de53
    # make sure SUBLEVEL is incremented on a stable release.  Sigh 3.x.
Josh Boyer 740de53
    perl -p -i -e "s/^SUBLEVEL.*/SUBLEVEL = %{?stablerev}/" Makefile
Josh Boyer 740de53
    %endif
Josh Boyer 740de53
Jesse Keating 7a32965
    # make sure EXTRAVERSION says what we want it to say
Josh Boyer 740de53
    perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = -%{release}.%{_target_cpu}${Flavour:+.${Flavour}}/" Makefile
Jesse Keating 7a32965
Josh Boyer 9e4aeab
    # if pre-rc1 devel kernel, must fix up PATCHLEVEL for our versioning scheme
Jesse Keating 7a32965
    %if !0%{?rcrev}
Jesse Keating 7a32965
    %if 0%{?gitrev}
Josh Boyer 9e4aeab
    perl -p -i -e 's/^PATCHLEVEL.*/PATCHLEVEL = %{upstream_sublevel}/' Makefile
Jesse Keating 7a32965
    %endif
Jesse Keating 7a32965
    %endif
Jesse Keating 7a32965
Jesse Keating 7a32965
    # and now to start the build process
Jesse Keating 7a32965
Jesse Keating 7a32965
    make -s mrproper
Jesse Keating 7a32965
    cp configs/$Config .config
Jesse Keating 7a32965
Jesse Keating 7a32965
    Arch=`head -1 .config | cut -b 3-`
Jesse Keating 7a32965
    echo USING ARCH=$Arch
Jesse Keating 7a32965
Kyle McMartin da80d72
    make -s ARCH=$Arch oldnoconfig >/dev/null
Dave Jones 4d4f51e
    make -s ARCH=$Arch V=1 %{?_smp_mflags} $MakeTarget %{?sparse_mflags}
Dave Jones 4d4f51e
    make -s ARCH=$Arch V=1 %{?_smp_mflags} modules %{?sparse_mflags} || exit 1
Jesse Keating 7a32965
Jesse Keating 7a32965
    # Start installing the results
Jesse Keating 7a32965
%if %{with_debuginfo}
Jesse Keating 7a32965
    mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/boot
Jesse Keating 7a32965
    mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/%{image_install_path}
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
    mkdir -p $RPM_BUILD_ROOT/%{image_install_path}
Jesse Keating 7a32965
    install -m 644 .config $RPM_BUILD_ROOT/boot/config-$KernelVer
Jesse Keating 7a32965
    install -m 644 System.map $RPM_BUILD_ROOT/boot/System.map-$KernelVer
Jesse Keating 7a32965
Jesse Keating 7a32965
    # We estimate the size of the initramfs because rpm needs to take this size
Jesse Keating 7a32965
    # into consideration when performing disk space calculations. (See bz #530778)
Jesse Keating 7a32965
    dd if=/dev/zero of=$RPM_BUILD_ROOT/boot/initramfs-$KernelVer.img bs=1M count=20
Jesse Keating 7a32965
Jesse Keating 7a32965
    if [ -f arch/$Arch/boot/zImage.stub ]; then
Jesse Keating 7a32965
      cp arch/$Arch/boot/zImage.stub $RPM_BUILD_ROOT/%{image_install_path}/zImage.stub-$KernelVer || :
Jesse Keating 7a32965
    fi
Jesse Keating 7a32965
    $CopyKernel $KernelImage \
Jesse Keating 7a32965
    		$RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
Jesse Keating 7a32965
    chmod 755 $RPM_BUILD_ROOT/%{image_install_path}/$InstallName-$KernelVer
Jesse Keating 7a32965
Jesse Keating 7a32965
    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer
Jesse Keating 7a32965
    # Override $(mod-fw) because we don't want it to install any firmware
Kyle McMartin eb0d563
    # we'll get it from the linux-firmware package and we don't want conflicts
Jesse Keating 7a32965
    make -s ARCH=$Arch INSTALL_MOD_PATH=$RPM_BUILD_ROOT modules_install KERNELRELEASE=$KernelVer mod-fw=
Josh Boyer c2a12cd
Josh Boyer c2a12cd
%if %{signmodules}
Josh Boyer c2a12cd
        if [ -z "$(readelf -n $(find fs/ -name \*.ko | head -n 1) | grep module.sig)" ]; then
Josh Boyer c2a12cd
            echo "ERROR: modules are NOT signed" >&2;
Josh Boyer c2a12cd
            exit 1;
Josh Boyer c2a12cd
        fi
Josh Boyer c2a12cd
%endif
Josh Boyer c2a12cd
Jesse Keating 7a32965
%ifarch %{vdso_arches}
Jesse Keating 7a32965
    make -s ARCH=$Arch INSTALL_MOD_PATH=$RPM_BUILD_ROOT vdso_install KERNELRELEASE=$KernelVer
Jesse Keating 7a32965
    if [ ! -s ldconfig-kernel.conf ]; then
Jesse Keating 7a32965
      echo > ldconfig-kernel.conf "\
Jesse Keating 7a32965
# Placeholder file, no vDSO hwcap entries used in this kernel."
Jesse Keating 7a32965
    fi
Jesse Keating 7a32965
    %{__install} -D -m 444 ldconfig-kernel.conf \
Jesse Keating 7a32965
        $RPM_BUILD_ROOT/etc/ld.so.conf.d/kernel-$KernelVer.conf
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
    # And save the headers/makefiles etc for building modules against
Jesse Keating 7a32965
    #
Jesse Keating 7a32965
    # This all looks scary, but the end result is supposed to be:
Jesse Keating 7a32965
    # * all arch relevant include/ files
Jesse Keating 7a32965
    # * all Makefile/Kconfig files
Jesse Keating 7a32965
    # * all script/ files
Jesse Keating 7a32965
Jesse Keating 7a32965
    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
Jesse Keating 7a32965
    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/source
Jesse Keating 7a32965
    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
Jesse Keating 7a32965
    (cd $RPM_BUILD_ROOT/lib/modules/$KernelVer ; ln -s build source)
Jesse Keating 7a32965
    # dirs for additional modules per module-init-tools, kbuild/modules.txt
Jesse Keating 7a32965
    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/extra
Jesse Keating 7a32965
    mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/updates
Jesse Keating 7a32965
    # first copy everything
Jesse Keating 7a32965
    cp --parents `find  -type f -name "Makefile*" -o -name "Kconfig*"` $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
Jesse Keating 7a32965
    cp Module.symvers $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
Jesse Keating 7a32965
    cp System.map $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
Jesse Keating 7a32965
    if [ -s Module.markers ]; then
Jesse Keating 7a32965
      cp Module.markers $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
Jesse Keating 7a32965
    fi
Jesse Keating 7a32965
    # then drop all but the needed Makefiles/Kconfig files
Jesse Keating 7a32965
    rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Documentation
Jesse Keating 7a32965
    rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts
Jesse Keating 7a32965
    rm -rf $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
Jesse Keating 7a32965
    cp .config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
Jesse Keating 7a32965
    cp -a scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
Jesse Keating 7a32965
    if [ -d arch/$Arch/scripts ]; then
Jesse Keating 7a32965
      cp -a arch/$Arch/scripts $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/%{_arch} || :
Jesse Keating 7a32965
    fi
Jesse Keating 7a32965
    if [ -f arch/$Arch/*lds ]; then
Jesse Keating 7a32965
      cp -a arch/$Arch/*lds $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/arch/%{_arch}/ || :
Jesse Keating 7a32965
    fi
Jesse Keating 7a32965
    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/*.o
Jesse Keating 7a32965
    rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/scripts/*/*.o
Josh Boyer be7f8e0
%ifarch ppc ppc64
Jesse Keating 7a32965
    cp -a --parents arch/powerpc/lib/crtsavres.[So] $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
    if [ -d arch/%{asmarch}/include ]; then
Jesse Keating 7a32965
      cp -a --parents arch/%{asmarch}/include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/
Jesse Keating 7a32965
    fi
Jesse Keating 7a32965
    cp -a include $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
Jesse Keating 7a32965
Jesse Keating 7a32965
    # Make sure the Makefile and version.h have a matching timestamp so that
Jesse Keating 7a32965
    # external modules can be built
Jesse Keating 7a32965
    touch -r $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/Makefile $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/linux/version.h
Jesse Keating 7a32965
    touch -r $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/.config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/linux/autoconf.h
Jesse Keating 7a32965
    # Copy .config to include/config/auto.conf so "make prepare" is unnecessary.
Jesse Keating 7a32965
    cp $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/.config $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/config/auto.conf
Jesse Keating 7a32965
Kyle McMartin 1bfd59b
%if %{with_debuginfo}
Jesse Keating 7a32965
    if test -s vmlinux.id; then
Jesse Keating 7a32965
      cp vmlinux.id $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/vmlinux.id
Jesse Keating 7a32965
    else
Roland McGrath 9b36e58
      echo >&2 "*** ERROR *** no vmlinux build ID! ***"
Roland McGrath 9b36e58
      exit 1
Jesse Keating 7a32965
    fi
Jesse Keating 7a32965
Jesse Keating 7a32965
    #
Jesse Keating 7a32965
    # save the vmlinux file for kernel debugging into the kernel-debuginfo rpm
Jesse Keating 7a32965
    #
Jesse Keating 7a32965
    mkdir -p $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer
Jesse Keating 7a32965
    cp vmlinux $RPM_BUILD_ROOT%{debuginfodir}/lib/modules/$KernelVer
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
    find $RPM_BUILD_ROOT/lib/modules/$KernelVer -name "*.ko" -type f >modnames
Jesse Keating 7a32965
Jesse Keating 7a32965
    # mark modules executable so that strip-to-file can strip them
Jesse Keating 7a32965
    xargs --no-run-if-empty chmod u+x < modnames
Jesse Keating 7a32965
Jesse Keating 7a32965
    # Generate a list of modules for block and networking.
Jesse Keating 7a32965
Dave Jones b89c80f
    grep -F /drivers/ modnames | xargs --no-run-if-empty nm -upA |
Jesse Keating 7a32965
    sed -n 's,^.*/\([^/]*\.ko\):  *U \(.*\)$,\1 \2,p' > drivers.undef
Jesse Keating 7a32965
Jesse Keating 7a32965
    collect_modules_list()
Jesse Keating 7a32965
    {
Jesse Keating 7a32965
      sed -r -n -e "s/^([^ ]+) \\.?($2)\$/\\1/p" drivers.undef |
Jesse Keating 7a32965
      LC_ALL=C sort -u > $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$1
Jesse Keating 7a32965
    }
Jesse Keating 7a32965
Jesse Keating 7a32965
    collect_modules_list networking \
Josh Boyer 4215bf0
    			 'register_netdev|ieee80211_register_hw|usbnet_probe|phy_driver_register|rt(l_|2x00)(pci|usb)_probe'
Jesse Keating 7a32965
    collect_modules_list block \
Jesse Keating 7a32965
    			 'ata_scsi_ioctl|scsi_add_host|scsi_add_host_with_dma|blk_init_queue|register_mtd_blktrans|scsi_esp_register|scsi_register_device_handler'
Jesse Keating 7a32965
    collect_modules_list drm \
Jesse Keating 7a32965
    			 'drm_open|drm_init'
Jesse Keating 7a32965
    collect_modules_list modesetting \
Jesse Keating 7a32965
    			 'drm_crtc_init'
Jesse Keating 7a32965
Jesse Keating 7a32965
    # detect missing or incorrect license tags
Jesse Keating 7a32965
    rm -f modinfo
Jesse Keating 7a32965
    while read i
Jesse Keating 7a32965
    do
Jesse Keating 7a32965
      echo -n "${i#$RPM_BUILD_ROOT/lib/modules/$KernelVer/} " >> modinfo
Jesse Keating 7a32965
      /sbin/modinfo -l $i >> modinfo
Jesse Keating 7a32965
    done < modnames
Jesse Keating 7a32965
Dave Jones b89c80f
    grep -E -v \
Jesse Keating 7a32965
    	  'GPL( v2)?$|Dual BSD/GPL$|Dual MPL/GPL$|GPL and additional rights$' \
Jesse Keating 7a32965
	  modinfo && exit 1
Jesse Keating 7a32965
Jesse Keating 7a32965
    rm -f modinfo modnames
Jesse Keating 7a32965
Josh Boyer b8b2783
    pushd $RPM_BUILD_ROOT/lib/modules/$KernelVer/
Josh Boyer b8b2783
    rm -rf modnames
Josh Boyer b8b2783
    find . -name "*.ko" -type f > modnames
Josh Boyer b8b2783
    # Look through all of the modules, and throw any that have a dependency in
Josh Boyer b8b2783
    # our list into the list as well.
Josh Boyer b8b2783
    rm -rf dep.list dep2.list
8be461c
    rm -rf req.list req2.list
Josh Boyer b8b2783
    cp %{SOURCE16} .
Josh Boyer b8b2783
    for dep in `cat modnames`
Josh Boyer b8b2783
    do
Josh Boyer b8b2783
      depends=`modinfo $dep | grep depends| cut -f2 -d":" | sed -e 's/^[ \t]*//'`
Josh Boyer b8b2783
      [ -z "$depends" ] && continue;
Josh Boyer b8b2783
      for mod in `echo $depends | sed -e 's/,/ /g'`
Josh Boyer b8b2783
      do
Josh Boyer b8b2783
        match=`grep "^$mod.ko" mod-extra.list` ||:
Josh Boyer b8b2783
        if [ -z "$match" ]
Josh Boyer b8b2783
        then
Josh Boyer b8b2783
          continue
Josh Boyer b8b2783
        else
8be461c
          echo $mod.ko >> req.list
Josh Boyer b8b2783
        fi
Josh Boyer b8b2783
      done
Josh Boyer b8b2783
    done
Josh Boyer b8b2783
8be461c
    sort -u req.list > req2.list
8be461c
    sort -u mod-extra.list > mod-extra2.list
8be461c
    join -v 1 mod-extra2.list req2.list > mod-extra3.list
8be461c
8be461c
    for mod in `cat mod-extra3.list`
Josh Boyer b8b2783
    do
Josh Boyer b8b2783
      # get the path for the module
Josh Boyer d496e06
      modpath=`grep /$mod modnames` ||:
Josh Boyer b8b2783
      [ -z "$modpath" ]  && continue;
Josh Boyer b8b2783
      echo $modpath >> dep.list
Josh Boyer b8b2783
    done
Josh Boyer b8b2783
Josh Boyer b8b2783
    sort -u dep.list > dep2.list
Josh Boyer b8b2783
Josh Boyer b8b2783
    # now move the modules into the extra/ directory
Josh Boyer b8b2783
    for mod in `cat dep2.list`
Josh Boyer b8b2783
    do
Josh Boyer b8b2783
      newpath=`dirname $mod | sed -e 's/kernel\//extra\//'`
Josh Boyer b8b2783
      mkdir -p $newpath
Josh Boyer b8b2783
      mv $mod $newpath
Josh Boyer b8b2783
    done
Josh Boyer b8b2783
8be461c
    rm modnames dep.list dep2.list req.list req2.list
8be461c
    rm mod-extra.list mod-extra2.list mod-extra3.list
Josh Boyer b8b2783
    popd
Josh Boyer b8b2783
John W. Linville fa580e5
    # remove files that will be auto generated by depmod at rpm -i time
John W. Linville fa580e5
    for i in alias alias.bin builtin.bin ccwmap dep dep.bin ieee1394map inputmap isapnpmap ofmap pcimap seriomap symbols symbols.bin usbmap
John W. Linville fa580e5
    do
John W. Linville fa580e5
      rm -f $RPM_BUILD_ROOT/lib/modules/$KernelVer/modules.$i
John W. Linville fa580e5
    done
John W. Linville fa580e5
Jesse Keating 7a32965
    # Move the devel headers out of the root file system
Kyle McMartin f6c1ae1
    mkdir -p $RPM_BUILD_ROOT/usr/src/kernels
Jesse Keating 7a32965
    mv $RPM_BUILD_ROOT/lib/modules/$KernelVer/build $RPM_BUILD_ROOT/$DevelDir
Josh Boyer bddef7d
Josh Boyer bddef7d
    # This is going to create a broken link during the build, but we don't use
Josh Boyer bddef7d
    # it after this point.  We need the link to actually point to something
Josh Boyer bddef7d
    # when kernel-devel is installed, and a relative link doesn't work across
Josh Boyer bddef7d
    # the F17 UsrMove feature.
Josh Boyer bddef7d
    ln -sf $DevelDir $RPM_BUILD_ROOT/lib/modules/$KernelVer/build
Kyle McMartin 4b3b407
Kyle McMartin 4b3b407
    # prune junk from kernel-devel
Kyle McMartin 4b3b407
    find $RPM_BUILD_ROOT/usr/src/kernels -name ".*.cmd" -exec rm -f {} \;
Jesse Keating 7a32965
}
Jesse Keating 7a32965
Jesse Keating 7a32965
###
Jesse Keating 7a32965
# DO it...
Jesse Keating 7a32965
###
Jesse Keating 7a32965
Jesse Keating 7a32965
# prepare directories
Jesse Keating 7a32965
rm -rf $RPM_BUILD_ROOT
Jesse Keating 7a32965
mkdir -p $RPM_BUILD_ROOT/boot
Jesse Keating 7a32965
mkdir -p $RPM_BUILD_ROOT%{_libexecdir}
Jesse Keating 7a32965
Josh Boyer 83337ce
cd linux-%{KVERREL}
Jesse Keating 7a32965
Jesse Keating 7a32965
%if %{with_debug}
Jesse Keating 7a32965
BuildKernel %make_target %kernel_image debug
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%if %{with_pae_debug}
Jesse Keating 7a32965
BuildKernel %make_target %kernel_image PAEdebug
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%if %{with_pae}
Jesse Keating 7a32965
BuildKernel %make_target %kernel_image PAE
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
534352f
%if %{with_kirkwood}
534352f
BuildKernel %make_target %kernel_image kirkwood
534352f
%endif
534352f
534352f
%if %{with_imx}
534352f
BuildKernel %make_target %kernel_image imx
534352f
%endif
534352f
534352f
%if %{with_highbank}
534352f
BuildKernel %make_target %kernel_image highbank
534352f
%endif
534352f
986a9f3
%if %{with_omap}
986a9f3
BuildKernel %make_target %kernel_image omap
986a9f3
%endif
986a9f3
986a9f3
%if %{with_tegra}
986a9f3
BuildKernel %make_target %kernel_image tegra
986a9f3
%endif
986a9f3
Jesse Keating 7a32965
%if %{with_up}
Jesse Keating 7a32965
BuildKernel %make_target %kernel_image
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%if %{with_smp}
Jesse Keating 7a32965
BuildKernel %make_target %kernel_image smp
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Kyle McMartin 8bcddfb
%global perf_make \
Kyle McMartin 8bcddfb
  make %{?_smp_mflags} -C tools/perf -s V=1 EXTRA_CFLAGS="-Wno-error=array-bounds" HAVE_CPLUS_DEMANGLE=1 prefix=%{_prefix}
Kyle McMartin 42d4c31
%if %{with_perf}
Josh Boyer 8addb5f
# perf
Kyle McMartin 8bcddfb
%{perf_make} all
Kyle McMartin 8bcddfb
%{perf_make} man || %{doc_build_fail}
Kyle McMartin 42d4c31
%endif
Josh Boyer 8addb5f
Kyle McMartin 42d4c31
%if %{with_tools}
Josh Boyer 8addb5f
%ifarch %{cpupowerarchs}
Josh Boyer 8addb5f
# cpupower
Josh Boyer 8addb5f
# make sure version-gen.sh is executable.
Josh Boyer 8addb5f
chmod +x tools/power/cpupower/utils/version-gen.sh
Josh Boyer 9c44ba9
make %{?_smp_mflags} -C tools/power/cpupower CPUFREQ_BENCH=false
Josh Boyer 9c44ba9
%ifarch %{ix86}
Josh Boyer 8addb5f
    cd tools/power/cpupower/debug/i386
Josh Boyer 8addb5f
    make %{?_smp_mflags} centrino-decode powernow-k8-decode
Josh Boyer 8addb5f
    cd -
Josh Boyer 9c44ba9
%endif
Josh Boyer 9c44ba9
%ifarch x86_64
Josh Boyer 9c44ba9
    cd tools/power/cpupower/debug/x86_64
Josh Boyer 9c44ba9
    make %{?_smp_mflags} centrino-decode powernow-k8-decode
Josh Boyer 9c44ba9
    cd -
Josh Boyer 9c44ba9
%endif
Josh Boyer b080939
%ifarch %{ix86} x86_64
Josh Boyer b080939
   cd tools/power/x86/x86_energy_perf_policy/
Josh Boyer b080939
   make
Josh Boyer b080939
   cd -
Josh Boyer b080939
   cd tools/power/x86/turbostat
Josh Boyer b080939
   make
Josh Boyer b080939
   cd -
Josh Boyer b080939
%endif #turbostat/x86_energy_perf_policy
Josh Boyer 8addb5f
%endif
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%if %{with_doc}
Jesse Keating 7a32965
# Make the HTML and man pages.
Chuck Ebbert 2247721
make htmldocs mandocs || %{doc_build_fail}
Jesse Keating 7a32965
Jesse Keating 7a32965
# sometimes non-world-readable files sneak into the kernel source tree
Jesse Keating 7a32965
chmod -R a=rX Documentation
Jesse Keating 7a32965
find Documentation -type d | xargs chmod u+w
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
###
Jesse Keating 7a32965
### Special hacks for debuginfo subpackages.
Jesse Keating 7a32965
###
Jesse Keating 7a32965
Jesse Keating 7a32965
# This macro is used by %%install, so we must redefine it before that.
Jesse Keating 7a32965
%define debug_package %{nil}
Jesse Keating 7a32965
Kyle McMartin 1bfd59b
%if %{with_debuginfo}
Jesse Keating 7a32965
%define __debug_install_post \
Jesse Keating 7a32965
  /usr/lib/rpm/find-debuginfo.sh %{debuginfo_args} %{_builddir}/%{?buildsubdir}\
Jesse Keating 7a32965
%{nil}
Jesse Keating 7a32965
Jesse Keating 7a32965
%ifnarch noarch
Jesse Keating 7a32965
%global __debug_package 1
Jesse Keating 7a32965
%files -f debugfiles.list debuginfo-common-%{_target_cpu}
Jesse Keating 7a32965
%defattr(-,root,root)
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
###
Jesse Keating 7a32965
### install
Jesse Keating 7a32965
###
Jesse Keating 7a32965
Jesse Keating 7a32965
%install
Jesse Keating 7a32965
Josh Boyer 83337ce
cd linux-%{KVERREL}
Jesse Keating 7a32965
Jesse Keating 7a32965
%if %{with_doc}
Jesse Keating 7a32965
docdir=$RPM_BUILD_ROOT%{_datadir}/doc/kernel-doc-%{rpmversion}
Jesse Keating 7a32965
man9dir=$RPM_BUILD_ROOT%{_datadir}/man/man9
Jesse Keating 7a32965
Jesse Keating 7a32965
# copy the source over
Jesse Keating 7a32965
mkdir -p $docdir
Josh Boyer 08ed142
tar -h -f - --exclude=man --exclude='.*' -c Documentation | tar xf - -C $docdir
Jesse Keating 7a32965
Jesse Keating 7a32965
# Install man pages for the kernel API.
Jesse Keating 7a32965
mkdir -p $man9dir
Jesse Keating 7a32965
find Documentation/DocBook/man -name '*.9.gz' -print0 |
Jesse Keating 7a32965
xargs -0 --no-run-if-empty %{__install} -m 444 -t $man9dir $m
Jesse Keating 7a32965
ls $man9dir | grep -q '' || > $man9dir/BROKEN
Jesse Keating 7a32965
%endif # with_doc
Jesse Keating 7a32965
Josh Boyer 8addb5f
# We have to do the headers install before the tools install because the
Josh Boyer 8addb5f
# kernel headers_install will remove any header files in /usr/include that
Josh Boyer 8addb5f
# it doesn't install itself.
Jesse Keating 7a32965
Jesse Keating 7a32965
%if %{with_headers}
Jesse Keating 7a32965
# Install kernel headers
Jesse Keating 7a32965
make ARCH=%{hdrarch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_install
Jesse Keating 7a32965
Jesse Keating 7a32965
# Do headers_check but don't die if it fails.
Jesse Keating 7a32965
make ARCH=%{hdrarch} INSTALL_HDR_PATH=$RPM_BUILD_ROOT/usr headers_check \
Jesse Keating 7a32965
     > hdrwarnings.txt || :
Jesse Keating 7a32965
if grep -q exist hdrwarnings.txt; then
Jesse Keating 7a32965
   sed s:^$RPM_BUILD_ROOT/usr/include/:: hdrwarnings.txt
Jesse Keating 7a32965
   # Temporarily cause a build failure if header inconsistencies.
Jesse Keating 7a32965
   # exit 1
Jesse Keating 7a32965
fi
Jesse Keating 7a32965
Jesse Keating 7a32965
find $RPM_BUILD_ROOT/usr/include \
Jesse Keating 7a32965
     \( -name .install -o -name .check -o \
Jesse Keating 7a32965
     	-name ..install.cmd -o -name ..check.cmd \) | xargs rm -f
Jesse Keating 7a32965
Jesse Keating 7a32965
# glibc provides scsi headers for itself, for now
Jesse Keating 7a32965
rm -rf $RPM_BUILD_ROOT/usr/include/scsi
Jesse Keating 7a32965
rm -f $RPM_BUILD_ROOT/usr/include/asm*/atomic.h
Jesse Keating 7a32965
rm -f $RPM_BUILD_ROOT/usr/include/asm*/io.h
Jesse Keating 7a32965
rm -f $RPM_BUILD_ROOT/usr/include/asm*/irq.h
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Kyle McMartin 42d4c31
%if %{with_perf}
Josh Boyer 8addb5f
# perf tool binary and supporting scripts/binaries
Kyle McMartin 8bcddfb
%{perf_make} DESTDIR=$RPM_BUILD_ROOT install
Josh Boyer 8addb5f
Kyle McMartin ec31efd
# python-perf extension
Kyle McMartin 8bcddfb
%{perf_make} DESTDIR=$RPM_BUILD_ROOT install-python_ext
Kyle McMartin ec31efd
Josh Boyer 8addb5f
# perf man pages (note: implicit rpm magic compresses them later)
Kyle McMartin 8bcddfb
%{perf_make} DESTDIR=$RPM_BUILD_ROOT install-man || %{doc_build_fail}
Kyle McMartin 42d4c31
%endif
Josh Boyer 8addb5f
Kyle McMartin 42d4c31
%if %{with_tools}
Josh Boyer 8addb5f
%ifarch %{cpupowerarchs}
Josh Boyer 9c44ba9
make -C tools/power/cpupower DESTDIR=$RPM_BUILD_ROOT libdir=%{_libdir} mandir=%{_mandir} CPUFREQ_BENCH=false install
Josh Boyer 8addb5f
rm -f %{buildroot}%{_libdir}/*.{a,la}
Josh Boyer 8addb5f
%find_lang cpupower
Josh Boyer 8addb5f
mv cpupower.lang ../
Josh Boyer 9c44ba9
%ifarch %{ix86}
Josh Boyer 8addb5f
    cd tools/power/cpupower/debug/i386
Josh Boyer 8addb5f
    install -m755 centrino-decode %{buildroot}%{_bindir}/centrino-decode
Josh Boyer 8addb5f
    install -m755 powernow-k8-decode %{buildroot}%{_bindir}/powernow-k8-decode
Josh Boyer 8addb5f
    cd -
Josh Boyer 9c44ba9
%endif
Josh Boyer 9c44ba9
%ifarch x86_64
Josh Boyer 9c44ba9
    cd tools/power/cpupower/debug/x86_64
Josh Boyer 9c44ba9
    install -m755 centrino-decode %{buildroot}%{_bindir}/centrino-decode
Josh Boyer 9c44ba9
    install -m755 powernow-k8-decode %{buildroot}%{_bindir}/powernow-k8-decode
Josh Boyer 9c44ba9
    cd -
Josh Boyer 9c44ba9
%endif
Josh Boyer 8addb5f
chmod 0755 %{buildroot}%{_libdir}/libcpupower.so*
Josh Boyer 8addb5f
mkdir -p %{buildroot}%{_unitdir} %{buildroot}%{_sysconfdir}/sysconfig
Josh Boyer 8addb5f
install -m644 %{SOURCE2000} %{buildroot}%{_unitdir}/cpupower.service
Josh Boyer 8addb5f
install -m644 %{SOURCE2001} %{buildroot}%{_sysconfdir}/sysconfig/cpupower
Josh Boyer 8addb5f
%endif
Josh Boyer b080939
%ifarch %{ix86} x86_64
Josh Boyer b080939
   mkdir -p %{buildroot}%{_mandir}/man8
Josh Boyer b080939
   cd tools/power/x86/x86_energy_perf_policy
Josh Boyer b080939
   make DESTDIR=%{buildroot} install
Josh Boyer b080939
   cd -
Josh Boyer b080939
   cd tools/power/x86/turbostat
Josh Boyer b080939
   make DESTDIR=%{buildroot} install
Josh Boyer b080939
   cd -
Josh Boyer b080939
%endif #turbostat/x86_energy_perf_policy
Josh Boyer 8addb5f
%endif
Josh Boyer 8addb5f
Jesse Keating 7a32965
%if %{with_bootwrapper}
Jesse Keating 7a32965
make DESTDIR=$RPM_BUILD_ROOT bootwrapper_install WRAPPER_OBJDIR=%{_libdir}/kernel-wrapper WRAPPER_DTSDIR=%{_libdir}/kernel-wrapper/dts
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
Jesse Keating 7a32965
###
Jesse Keating 7a32965
### clean
Jesse Keating 7a32965
###
Jesse Keating 7a32965
Jesse Keating 7a32965
%clean
Jesse Keating 7a32965
rm -rf $RPM_BUILD_ROOT
Jesse Keating 7a32965
Jesse Keating 7a32965
###
Jesse Keating 7a32965
### scripts
Jesse Keating 7a32965
###
Jesse Keating 7a32965
Josh Boyer 93e7772
%if %{with_tools}
Josh Boyer 8addb5f
%post -n kernel-tools
Josh Boyer 8addb5f
/sbin/ldconfig
Josh Boyer 8addb5f
Josh Boyer 8addb5f
%postun -n kernel-tools
Josh Boyer 8addb5f
/sbin/ldconfig
Josh Boyer 93e7772
%endif
Josh Boyer 8addb5f
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# This macro defines a %%post script for a kernel*-devel package.
Jesse Keating 7a32965
#	%%kernel_devel_post [<subpackage>]
Jesse Keating 7a32965
#
Jesse Keating 7a32965
%define kernel_devel_post() \
Jesse Keating 7a32965
%{expand:%%post %{?1:%{1}-}devel}\
Jesse Keating 7a32965
if [ -f /etc/sysconfig/kernel ]\
Jesse Keating 7a32965
then\
Jesse Keating 7a32965
    . /etc/sysconfig/kernel || exit $?\
Jesse Keating 7a32965
fi\
Jesse Keating 7a32965
if [ "$HARDLINK" != "no" -a -x /usr/sbin/hardlink ]\
Jesse Keating 7a32965
then\
Jesse Keating 7a32965
    (cd /usr/src/kernels/%{KVERREL}%{?1:.%{1}} &&\
Jesse Keating 7a32965
     /usr/bin/find . -type f | while read f; do\
Jesse Keating 7a32965
       hardlink -c /usr/src/kernels/*.fc*.*/$f $f\
Jesse Keating 7a32965
     done)\
Jesse Keating 7a32965
fi\
Jesse Keating 7a32965
%{nil}
Jesse Keating 7a32965
Josh Boyer b8b2783
#
Josh Boyer b8b2783
# This macro defines a %%post script for a kernel*-modules-extra package.
Josh Boyer b8b2783
#	%%kernel_modules-extra_post [<subpackage>]
Josh Boyer b8b2783
#
Josh Boyer b8b2783
%define kernel_modules_extra_post() \
Josh Boyer b8b2783
%{expand:%%post %{?1:%{1}-}modules-extra}\
Josh Boyer b8b2783
/sbin/depmod -a %{KVERREL}%{?1:.%{1}}\
Josh Boyer b8b2783
%{nil}
Josh Boyer 8addb5f
Jesse Keating 7a32965
# This macro defines a %%posttrans script for a kernel package.
Jesse Keating 7a32965
#	%%kernel_variant_posttrans [<subpackage>]
Jesse Keating 7a32965
# More text can follow to go at the end of this variant's %%post.
Jesse Keating 7a32965
#
Jesse Keating 7a32965
%define kernel_variant_posttrans() \
Jesse Keating 7a32965
%{expand:%%posttrans %{?1}}\
Jesse Keating 7a32965
/sbin/new-kernel-pkg --package kernel%{?-v:-%{-v*}} --mkinitrd --dracut --depmod --update %{KVERREL}%{?-v:.%{-v*}} || exit $?\
Jesse Keating 7a32965
/sbin/new-kernel-pkg --package kernel%{?1:-%{1}} --rpmposttrans %{KVERREL}%{?1:.%{1}} || exit $?\
Jesse Keating 7a32965
%{nil}
Jesse Keating 7a32965
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# This macro defines a %%post script for a kernel package and its devel package.
Jesse Keating 7a32965
#	%%kernel_variant_post [-v <subpackage>] [-r <replace>]
Jesse Keating 7a32965
# More text can follow to go at the end of this variant's %%post.
Jesse Keating 7a32965
#
Jesse Keating 7a32965
%define kernel_variant_post(v:r:) \
Jesse Keating 7a32965
%{expand:%%kernel_devel_post %{?-v*}}\
Josh Boyer b8b2783
%{expand:%%kernel_modules_extra_post %{?-v*}}\
Jesse Keating 7a32965
%{expand:%%kernel_variant_posttrans %{?-v*}}\
Jesse Keating 7a32965
%{expand:%%post %{?-v*}}\
Jesse Keating 7a32965
%{-r:\
Jesse Keating 7a32965
if [ `uname -i` == "x86_64" -o `uname -i` == "i386" ] &&\
Jesse Keating 7a32965
   [ -f /etc/sysconfig/kernel ]; then\
Jesse Keating 7a32965
  /bin/sed -r -i -e 's/^DEFAULTKERNEL=%{-r*}$/DEFAULTKERNEL=kernel%{?-v:-%{-v*}}/' /etc/sysconfig/kernel || exit $?\
Jesse Keating 7a32965
fi}\
Jesse Keating 7a32965
%{expand:\
Jesse Keating 7a32965
/sbin/new-kernel-pkg --package kernel%{?-v:-%{-v*}} --install %{KVERREL}%{?-v:.%{-v*}} || exit $?\
Jesse Keating 7a32965
}\
Jesse Keating 7a32965
%{nil}
Jesse Keating 7a32965
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# This macro defines a %%preun script for a kernel package.
Jesse Keating 7a32965
#	%%kernel_variant_preun <subpackage>
Jesse Keating 7a32965
#
Jesse Keating 7a32965
%define kernel_variant_preun() \
Jesse Keating 7a32965
%{expand:%%preun %{?1}}\
Jesse Keating 7a32965
/sbin/new-kernel-pkg --rminitrd --rmmoddep --remove %{KVERREL}%{?1:.%{1}} || exit $?\
Jesse Keating 7a32965
%{nil}
Jesse Keating 7a32965
Jesse Keating 7a32965
%kernel_variant_preun
Jesse Keating 7a32965
%kernel_variant_post -r kernel-smp
Jesse Keating 7a32965
Jesse Keating 7a32965
%kernel_variant_preun smp
Jesse Keating 7a32965
%kernel_variant_post -v smp
Jesse Keating 7a32965
Jesse Keating 7a32965
%kernel_variant_preun PAE
Jesse Keating 7a32965
%kernel_variant_post -v PAE -r (kernel|kernel-smp)
Jesse Keating 7a32965
Jesse Keating 7a32965
%kernel_variant_preun debug
Jesse Keating 7a32965
%kernel_variant_post -v debug
Jesse Keating 7a32965
Jesse Keating 7a32965
%kernel_variant_post -v PAEdebug -r (kernel|kernel-smp)
Jesse Keating 7a32965
%kernel_variant_preun PAEdebug
Jesse Keating 7a32965
534352f
%kernel_variant_preun kirkwood
534352f
%kernel_variant_post -v kirkwood
534352f
534352f
%kernel_variant_preun imx
534352f
%kernel_variant_post -v imx
534352f
534352f
%kernel_variant_preun highbank
534352f
%kernel_variant_post -v highbank
534352f
986a9f3
%kernel_variant_preun omap
986a9f3
%kernel_variant_post -v omap
986a9f3
986a9f3
%kernel_variant_preun tegra
986a9f3
%kernel_variant_post -v tegra
986a9f3
Jesse Keating 7a32965
if [ -x /sbin/ldconfig ]
Jesse Keating 7a32965
then
Jesse Keating 7a32965
    /sbin/ldconfig -X || exit $?
Jesse Keating 7a32965
fi
Jesse Keating 7a32965
Jesse Keating 7a32965
###
Jesse Keating 7a32965
### file lists
Jesse Keating 7a32965
###
Jesse Keating 7a32965
Jesse Keating 7a32965
%if %{with_headers}
Jesse Keating 7a32965
%files headers
Jesse Keating 7a32965
%defattr(-,root,root)
Jesse Keating 7a32965
/usr/include/*
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
%if %{with_bootwrapper}
Jesse Keating 7a32965
%files bootwrapper
Jesse Keating 7a32965
%defattr(-,root,root)
Jesse Keating 7a32965
/usr/sbin/*
Jesse Keating 7a32965
%{_libdir}/kernel-wrapper
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Jesse Keating 7a32965
# only some architecture builds need kernel-doc
Jesse Keating 7a32965
%if %{with_doc}
Jesse Keating 7a32965
%files doc
Jesse Keating 7a32965
%defattr(-,root,root)
Jesse Keating 7a32965
%{_datadir}/doc/kernel-doc-%{rpmversion}/Documentation/*
Jesse Keating 7a32965
%dir %{_datadir}/doc/kernel-doc-%{rpmversion}/Documentation
Jesse Keating 7a32965
%dir %{_datadir}/doc/kernel-doc-%{rpmversion}
Jesse Keating 7a32965
%{_datadir}/man/man9/*
Jesse Keating 7a32965
%endif
Jesse Keating 7a32965
Kyle McMartin 42d4c31
%if %{with_perf}
Kyle McMartin 42d4c31
%files -n perf
Jesse Keating 7a32965
%defattr(-,root,root)
Jesse Keating 7a32965
%{_bindir}/perf
Jesse Keating 7a32965
%dir %{_libexecdir}/perf-core
Jesse Keating 7a32965
%{_libexecdir}/perf-core/*
Kyle McMartin 42d4c31
%{_mandir}/man[1-8]/perf*
Josh Boyer 83337ce
%doc linux-%{KVERREL}/tools/perf/Documentation/examples.txt
Kyle McMartin 42d4c31
Kyle McMartin 42d4c31
%files -n python-perf
Kyle McMartin 42d4c31
%defattr(-,root,root)
Kyle McMartin 42d4c31
%{python_sitearch}
Kyle McMartin 42d4c31
Kyle McMartin 42d4c31
%if %{with_debuginfo}
Kyle McMartin 42d4c31
%files -f perf-debuginfo.list -n perf-debuginfo
Kyle McMartin 42d4c31
%defattr(-,root,root)
Josh Boyer 27d8a0e
Josh Boyer 27d8a0e
%files -f python-perf-debuginfo.list -n python-perf-debuginfo
Josh Boyer 27d8a0e
%defattr(-,root,root)
Kyle McMartin 42d4c31
%endif
Kyle McMartin 42d4c31
%endif # with_perf
Roland McGrath 3c4ea9a
Kyle McMartin 42d4c31
%if %{with_tools}
Kyle McMartin 42d4c31
%files -n kernel-tools -f cpupower.lang
Kyle McMartin 42d4c31
%defattr(-,root,root)
Josh Boyer 8addb5f
%ifarch %{cpupowerarchs}
Josh Boyer 8addb5f
%{_bindir}/cpupower
Josh Boyer 6ec053a
%ifarch %{ix86} x86_64
Josh Boyer 8addb5f
%{_bindir}/centrino-decode
Josh Boyer 8addb5f
%{_bindir}/powernow-k8-decode
Josh Boyer 6ec053a
%endif
Josh Boyer 8addb5f
%{_libdir}/libcpupower.so.0
Josh Boyer 8addb5f
%{_libdir}/libcpupower.so.0.0.0
Josh Boyer 8addb5f
%{_unitdir}/cpupower.service
Kyle McMartin 42d4c31
%{_mandir}/man[1-8]/cpupower*
Josh Boyer 8addb5f
%config(noreplace) %{_sysconfdir}/sysconfig/cpupower
Josh Boyer b080939
%ifarch %{ix86} x86_64
Josh Boyer b080939
%{_bindir}/x86_energy_perf_policy
Josh Boyer b080939
%{_mandir}/man8/x86_energy_perf_policy*
Josh Boyer b080939
%{_bindir}/turbostat
Josh Boyer b080939
%{_mandir}/man8/turbostat*
Josh Boyer b080939
%endif
Josh Boyer 8addb5f
%endif
Josh Boyer 8addb5f
Roland McGrath 3c4ea9a
%if %{with_debuginfo}
Josh Boyer 8addb5f
%files -f kernel-tools-debuginfo.list -n kernel-tools-debuginfo
Roland McGrath 3c4ea9a
%defattr(-,root,root)
Roland McGrath 3c4ea9a
%endif
Josh Boyer 8addb5f
Josh Boyer 8addb5f
%ifarch %{cpupowerarchs}
Josh Boyer 8addb5f
%files -n kernel-tools-devel
Josh Boyer 8addb5f
%{_libdir}/libcpupower.so
Josh Boyer 8addb5f
%{_includedir}/cpufreq.h
Josh Boyer 8addb5f
%endif
Kyle McMartin 42d4c31
%endif # with_perf
Jesse Keating 7a32965
Dave Jones 166b79a
# This is %%{image_install_path} on an arch where that includes ELF files,
Jesse Keating 7a32965
# or empty otherwise.
Jesse Keating 7a32965
%define elf_image_install_path %{?kernel_image_elf:%{image_install_path}}
Jesse Keating 7a32965
Jesse Keating 7a32965
#
Jesse Keating 7a32965
# This macro defines the %%files sections for a kernel package
Jesse Keating 7a32965
# and its devel and debuginfo packages.
Jesse Keating 7a32965
#	%%kernel_variant_files [-k vmlinux] <condition> <subpackage>
Jesse Keating 7a32965
#
Jesse Keating 7a32965
%define kernel_variant_files(k:) \
Jesse Keating 7a32965
%if %{1}\
Jesse Keating 7a32965
%{expand:%%files %{?2}}\
Jesse Keating 7a32965
%defattr(-,root,root)\
Kyle McMartin f6dd1f4
/%{image_install_path}/%{?-k:%{-k*}}%{!?-k:vmlinuz}-%{KVERREL}%{?2:.%{2}}\
Kyle McMartin d287769
%attr(600,root,root) /boot/System.map-%{KVERREL}%{?2:.%{2}}\
Jesse Keating 7a32965
/boot/config-%{KVERREL}%{?2:.%{2}}\
Jesse Keating 7a32965
%dir /lib/modules/%{KVERREL}%{?2:.%{2}}\
Jesse Keating 7a32965
/lib/modules/%{KVERREL}%{?2:.%{2}}/kernel\
Jesse Keating 7a32965
/lib/modules/%{KVERREL}%{?2:.%{2}}/build\
Jesse Keating 7a32965
/lib/modules/%{KVERREL}%{?2:.%{2}}/source\
Jesse Keating 7a32965
/lib/modules/%{KVERREL}%{?2:.%{2}}/updates\
Jesse Keating 7a32965
%ifarch %{vdso_arches}\
Jesse Keating 7a32965
/lib/modules/%{KVERREL}%{?2:.%{2}}/vdso\
Jesse Keating 7a32965
/etc/ld.so.conf.d/kernel-%{KVERREL}%{?2:.%{2}}.conf\
Jesse Keating 7a32965
%endif\
Jesse Keating 7a32965
/lib/modules/%{KVERREL}%{?2:.%{2}}/modules.*\
Jesse Keating 7a32965
%ghost /boot/initramfs-%{KVERREL}%{?2:.%{2}}.img\
Jesse Keating 7a32965
%{expand:%%files %{?2:%{2}-}devel}\
Jesse Keating 7a32965
%defattr(-,root,root)\
Jesse Keating 7a32965
/usr/src/kernels/%{KVERREL}%{?2:.%{2}}\
Josh Boyer b8b2783
%{expand:%%files %{?2:%{2}-}modules-extra}\
Josh Boyer b8b2783
%defattr(-,root,root)\
Josh Boyer b8b2783
/lib/modules/%{KVERREL}%{?2:.%{2}}/extra\
Jesse Keating 7a32965
%if %{with_debuginfo}\
Jesse Keating 7a32965
%ifnarch noarch\
Jesse Keating 7a32965
%{expand:%%files -f debuginfo%{?2}.list %{?2:%{2}-}debuginfo}\
Jesse Keating 7a32965
%defattr(-,root,root)\
Jesse Keating 7a32965
%endif\
Jesse Keating 7a32965
%endif\
Jesse Keating 7a32965
%endif\
Jesse Keating 7a32965
%{nil}
Jesse Keating 7a32965
Jesse Keating 7a32965
Jesse Keating 7a32965
%kernel_variant_files %{with_up}
Jesse Keating 7a32965
%kernel_variant_files %{with_smp} smp
Jesse Keating 7a32965
%kernel_variant_files %{with_debug} debug
Jesse Keating 7a32965
%kernel_variant_files %{with_pae} PAE
Jesse Keating 7a32965
%kernel_variant_files %{with_pae_debug} PAEdebug
534352f
%kernel_variant_files %{with_kirkwood} kirkwood
534352f
%kernel_variant_files %{with_imx} imx
534352f
%kernel_variant_files %{with_highbank} highbank
986a9f3
%kernel_variant_files %{with_omap} omap
986a9f3
%kernel_variant_files %{with_tegra} tegra
Jesse Keating 7a32965
Jesse Keating 7a32965
# plz don't put in a version string unless you're going to tag
Jesse Keating 7a32965
# and build.
Jesse Keating 7a32965
Josh Boyer 3575ffb
#  ___________________________________________________________
Josh Boyer 49977fe
# / This branch is for Fedora 18. You probably want to commit \
Josh Boyer 49977fe
# \ to the F-17 branch instead, or in addition to this one.   /
Josh Boyer 3575ffb
#  -----------------------------------------------------------
Josh Boyer 3575ffb
#         \   ^__^
Josh Boyer 3575ffb
#          \  (@@)\_______
Josh Boyer 3575ffb
#             (__)\       )\/\
Josh Boyer 3575ffb
#                 ||----w |
Josh Boyer 3575ffb
#                 ||     ||
Jesse Keating 7a32965
%changelog
Dave Jones 1dc056e
* Mon Mar 19 2012 Dave Jones <davej@redhat.com> - 3.3.0-3
Dave Jones 1dc056e
- Reenable debugging options.
Dave Jones 1dc056e
Dave Jones bf4a7c2
* Mon Mar 19 2012 Dave Jones <davej@redhat.com> - 3.3.0-2
Dave Jones bf4a7c2
- Disable debugging options.
Dave Jones bf4a7c2
Dave Jones befa7ea
* Sun Mar 18 2012 Dave Jones <davej@redhat.com>
Dave Jones befa7ea
- Linux 3.3
Dave Jones befa7ea
4574844
* Fri Mar 16 2012 Adam Jackson <ajax@redhat.com>
4574844
- drm-i915-dp-stfu.patch: Muzzle a bunch of DP WARN()s.  They're not wrong,
4574844
  but they're not helpful at this point.
4574844
Dave Jones 27001e9
* Fri Mar 16 2012 Dave Jones <davej@redhat.com> - 3.3.0-0.rc7.git2.1
Dave Jones d0ee9bb
- Linux v3.3-rc7-103-g0c4d067
Dave Jones d0ee9bb
d93bb24
* Fri Mar 16 2012 Justin M. Forbes <jforbes@redhat.com>
d93bb24
- re-enable threading on hibernate compression/decompression
d93bb24
Josh Boyer 6df15dd
* Fri Mar 16 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 6df15dd
- Fix irqpoll patch to really only apply for ASM108x machines (rhbz 800520)
Josh Boyer 6df15dd
6875c9a
* Thu Mar 15 2012 Justin M. Forbes <jforbes@redhat.com>
6875c9a
- CVE-2012-1179 fix pmd_bad() triggering in code paths holding mmap_sem read mode (rhbz 803809)
6875c9a
Josh Boyer c4069fe
* Wed Mar 14 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer c4069fe
- Fixup irqpoll patch to only activate on machines with ASM108x PCI bridge
Josh Boyer c4069fe
John W. Linville fa580e5
* Tue Mar 13 2012 John W. Linville <linville@redhat.com>
John W. Linville fa580e5
- Remove infrastructure related to compat-wireless integration
John W. Linville fa580e5
d005e8b
* Mon Mar 12 2012 Mark Langsdorf <mark.langsdorf@calxeda.com>
d005e8b
- Re-enable highbank config option and add new config file to support it
d005e8b
Dave Jones 04412e0
* Mon Mar 12 2012 Dave Jones <davej@redhat.com> - 3.3.0-0.rc7.git0.5
Dave Jones 04412e0
- Reenable debugging options.
Dave Jones 04412e0
Dave Jones 07186c6
* Mon Mar 12 2012 Dave Jones <davej@redhat.com> - 3.3.0-0.rc7.git0.4
Dave Jones 07186c6
- Disable debugging options.
Dave Jones 07186c6
Dave Jones 34ff8bb
* Mon Mar 12 2012 Dave Jones <davej@redhat.com>
Dave Jones 34ff8bb
- Linux 3.3-rc7
Dave Jones 34ff8bb
Dave Jones 40b1a0c
* Wed Mar 07 2012 Dave Jones <davej@redhat.com>
Dave Jones 40b1a0c
- Add debug patch for bugs 787171/766277
Dave Jones 40b1a0c
Josh Boyer c2a12cd
* Wed Mar 07 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer c2a12cd
- Add modsign for x86 builds
Josh Boyer c2a12cd
Dave Jones 8247ca0
* Wed Mar 07 2012 Dave Jones <davej@redhat.com> - 3.3.0-0.rc6.git2.2
Dave Jones 8247ca0
- Disable debugging options.
Dave Jones 8247ca0
Dave Jones 0b705fd
* Wed Mar 07 2012 Dave Jones <davej@redhat.com> - 3.3.0-0.rc6.git2.1
Dave Jones 0b705fd
- Linux v3.3-rc6-132-g55062d0
Dave Jones 0b705fd
Dave Jones bbec159
* Wed Mar 07 2012 Dave Jones <davej@redhat.com> - 3.3.0-0.rc6.git1.1
Dave Jones bbec159
- Linux v3.3-rc6-131-g097d591
Dave Jones bbec159
Dave Jones 986c6ce
* Mon Mar 05 2012 Dave Jones <davej@redhat.com>
Dave Jones 986c6ce
- Linux 3.3-rc6
Dave Jones 986c6ce
John W. Linville 18b1cc8
* Mon Mar 05 2012 John W. Linville <linville@redhat.com>
John W. Linville 18b1cc8
- Turn-off CONFIG_B43_BCMA_EXTRA to avoid b43/brcmsmac overlap
John W. Linville 18b1cc8
Mark Wielaard ec9ad68
* Mon Mar 05 2012 Mark Wielaard <mark@klomp.org>
Mark Wielaard ec9ad68
- Add -r to debuginfo_args to invoke eu-strip --reloc-debug-sections.
Mark Wielaard ec9ad68
77c4837
* Fri Mar 02 2012 Justin M. Forbes <jforbes@redhat.com> 
77c4837
- Disable threading in hibernate compression/decompression
77c4837
a3e5ef0
* Fri Mar 02 2012 Adam Jackson <ajax@redhat.com>
a3e5ef0
- drm-intel-crtc-dpms-fix.patch: Fix system hang on gen2 kit on DPMS (#730853)
a3e5ef0
Dave Jones 766e8e8
* Thu Mar 01 2012 Dave Jones <davej@redhat.com>
Dave Jones 766e8e8
- temporarily switch to low-performance polling IRQ mode when
Dave Jones 766e8e8
  unexpected IRQs occur.
Dave Jones 766e8e8
Dave Jones b9cc47d
* Wed Feb 29 2012 Dave Jones <davej@redhat.com> - 3.3.0-0.rc5.git3.1
Dave Jones b9cc47d
- Linux v3.3-rc5-101-g88ebdda
Dave Jones b9cc47d
John W. Linville e48a479
* Wed Feb 29 2012 John W. Linville <linville@redhat.com>
John W. Linville e48a479
- Disable with_backports (pending removal)
John W. Linville e48a479
- Disable a number of drivers for ancient wireless LAN cards
John W. Linville e48a479
- Disable iwm3200-related drivers (hardware never released)
John W. Linville e48a479
- Disable "thin firmware" version of libertas driver (libertas_tf)
John W. Linville e48a479
Josh Boyer 5f05fc5
* Tue Feb 28 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 5f05fc5
- Add patch to enable keyboard backlight on Sony laptops (rhbz 728478)
Josh Boyer 5f05fc5
Dave Jones 18bb3c2
* Tue Feb 28 2012 Dave Jones <davej@redhat.com>
Dave Jones 18bb3c2
- Disable CONFIG_USB_DEVICEFS (Deprecated).
Dave Jones 18bb3c2
4d8a6ac
* Tue Feb 28 2012 Justin M. Forbes <jforbes@redhat.com> 
4d8a6ac
- CVE-2012-1090 CIFS: fix dentry refcount leak when opening a FIFO on lookup (rhbz 798296)
4d8a6ac
Dave Jones e0d8aaf
* Tue Feb 28 2012 Dave Jones <davej@redhat.com> - 3.3.0-0.rc5.git2.1
Dave Jones e0d8aaf
- Linux v3.3-rc5-88-g586c6e7
Dave Jones e0d8aaf
Josh Boyer 4f646f3
* Mon Feb 27 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 4f646f3
- Add patch to fix regression in FADT revision checks (rhbz 730007 727865)
Josh Boyer 4f646f3
Josh Boyer 53294d9
* Mon Feb 27 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc5.git1.1
Josh Boyer 53294d9
- Linux 3.3-rc5-git1 (upstream 500dd2370e77c9551ba298bdeeb91b02d8402199)
Josh Boyer ed314e2
- Reenable debugging options.
Josh Boyer ed314e2
Josh Boyer 15133d7
* Sun Feb 26 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc5.git0.3
Josh Boyer 15133d7
- Add patch from Linus Torvalds to fix 32-bit autofs4 build
Josh Boyer 15133d7
Josh Boyer 9a6c2dc
* Sat Feb 25 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc5.git0.2
Josh Boyer 9a6c2dc
- Disable debugging options.
Josh Boyer 9a6c2dc
Josh Boyer b4aa2bc
* Sat Feb 25 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc5.git0.1
Josh Boyer b4aa2bc
- Linux 3.3-rc5
Josh Boyer b4aa2bc
Josh Boyer 7e4a1e0
* Sat Feb 25 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc4.git5.1
Josh Boyer 7e4a1e0
- Linux 3.3-rc4-git5 (upstream b52b80023f262ce8a0ffdcb490acb23e8678377a)
Josh Boyer 7e4a1e0
Josh Boyer 9007bbd
* Fri Feb 24 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 9007bbd
- Linux 3.3-rc4-git4 (upstream bb4c7e9a9908548b458f34afb2fee74dc0d49f90)
Josh Boyer 9007bbd
9752853
* Thu Feb 23 2012 Peter Robinson <pbrobinson@fedoraproject.org>
9752853
- Further ARM config updates
9752853
Josh Boyer e1b8885
* Wed Feb 22 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc4.git3.1
Josh Boyer e1b8885
- Linux 3.3-rc4-git3 (upstream 45196cee28a5bcfb6ddbe2bffa4270cbed66ae4b)
Josh Boyer e1b8885
Josh Boyer 530700b
* Wed Feb 22 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc4.git2.1
Josh Boyer 530700b
- Linux 3.3-rc4-git2 (upstream 719741d9986572d64b47c35c09f5e7bb8d389400)
Josh Boyer 530700b
Josh Boyer 3e2e5a3
* Tue Feb 21 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc4.git1.4
Josh Boyer 3e2e5a3
- Drop x86-Avoid-invoking-RCU-when-CPU-is-idle.patch (rhbz 795050)
Josh Boyer 3e2e5a3
201cb5c
* Tue Feb 21 2012 Peter Robinson <pbrobinson@fedoraproject.org>
201cb5c
- update ARM configs to F-17 branch
201cb5c
Josh Boyer 292a691
* Tue Feb 21 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 598ed8b
- ext4: fix resize when resizing within single group (rhbz 786454)
Josh Boyer 292a691
- imon: don't wedge hardware after early callbacks (rhbz 781832)
Josh Boyer 292a691
Josh Boyer 73a9923
* Tue Feb 21 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc4.git1.2
Josh Boyer 73a9923
- Enable rtl8712 driver (rhbz 699618)
Josh Boyer 12b12c6
- Linux 3.3-rc4-git1 (upstream 27e74da9800289e69ba907777df1e2085231eff7)
Josh Boyer 12b12c6
Dave Jones 43a44e9
* Mon Feb 20 2012 Dave Jones <davej@redhat.com>
Dave Jones 43a44e9
- Do not call drivers when invalidating partitions for -ENOMEDIUM
Dave Jones 43a44e9
Josh Boyer c10e537
* Mon Feb 20 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer c10e537
- Avoid using stack variables in ums_realtek (again) (rhbz 795544)
Josh Boyer c10e537
Dave Jones e9f7247
* Mon Feb 20 2012 Dave Jones <davej@redhat.com>
Dave Jones e9f7247
- NFSv4: Fix an Oops in the NFSv4 getacl code
Dave Jones e9f7247
Josh Boyer c10e537
* Mon Feb 20 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc4.git0.2
Josh Boyer cd70fad
- Reenable debugging options.
Josh Boyer cd70fad
Josh Boyer c10e537
* Sun Feb 19 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc4.git0.1
Josh Boyer 9167f1f
- Linux 3.3-rc4
Josh Boyer 9167f1f
- Disable debugging options.
Josh Boyer 9167f1f
d78aa36
* Sun Feb 19 2012 Peter Robinson <pbrobinson@fedoraproject.org>
d78aa36
- Further updates to ARM config
d78aa36
- Fix and re-enable Tegra NVEC patch
d78aa36
Dave Jones e4ae14c
* Fri Feb 17 2012 Dave Jones <davej@redhat.com>
Dave Jones abc7c8e
- improve handling of null rate in LIS3LV02Dx accelerometer driver. (rhbz 785814)
Dave Jones abc7c8e
Dave Jones abc7c8e
* Fri Feb 17 2012 Dave Jones <davej@redhat.com>
Dave Jones e4ae14c
- Reenable radio drivers. (rhbz 784824)
Dave Jones e4ae14c
Josh Boyer fcbaf26
* Fri Feb 17 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc3.git7.2
Josh Boyer fcbaf26
- Freeze all filesystems during system suspend/hibernate.
Josh Boyer fcbaf26
Josh Boyer 4973953
* Fri Feb 17 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc3.git7.1
Josh Boyer 4973953
- Linux 3.3-rc3-git7 (upstream 4903062b5485f0e2c286a23b44c9b59d9b017d53)
Josh Boyer 4973953
8efb1fa
* Wed Feb 15 2012 Peter Robinson <pbrobinson@fedoraproject.org>
8efb1fa
- Update ARM configs to 3.3 kernel
8efb1fa
- use mainline cpu freq options
8efb1fa
Josh Boyer 4973953
* Wed Feb 15 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc3.git6.2
Josh Boyer db9a53c
- Linux 3.3-rc3-git6 (upstream c38e23456278e967f094b08247ffc3711b1029b2)
Josh Boyer 51519e8
- Require newer linux-firmware package for updated bnx2/bnx2x drivers
Josh Boyer db9a53c
5327175
* Wed Feb 15 2012 Adam Jackson <ajax@redhat.com>
5327175
- Add patch and config change for vgem.ko
5327175
Josh Boyer 97821c0
* Tue Feb 14 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 97821c0
- Add patch to fix RCU usage during cpu idle (rhbz 789641)
Josh Boyer 97821c0
- Add patch to fix mce rcu splat (rhbz 789644)
Josh Boyer 7d0c627
- Patch to enable CONFIG_KEYS_COMPAT on s390 from David Howells (rhbz 790367)
Josh Boyer 7505efc
- Modify sd_revalidate_disk patch to do a WARN_ONCE instead of silently skip
Josh Boyer fed67f2
- Install perf examples as suggested by Jason Baron
Josh Boyer 97821c0
Josh Boyer 01ec5d6
* Tue Feb 14 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc3.git5.1
Josh Boyer 01ec5d6
- Linux 3.3-rc3-git5 (upstream ce5afed937f0a823d3b00c9459409c3f5f2fbd5d)
Josh Boyer 01ec5d6
6299761
* Tue Feb 14 2012 Peter Robinson <pbrobinson@fedoraproject.org>
6299761
- Update ARM components in Makefile.config
6299761
Josh Boyer 3b80d49
* Mon Feb 13 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 3b80d49
- Apply patch to fix autofs4 lockdep splat (rhbz 714828)
Josh Boyer 3b80d49
Josh Boyer c47696a
* Mon Feb 13 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc3.git4.1
Josh Boyer c47696a
- Linux 3.3-rc3-git4 (upstream 3ec1e88b33a3bdd852ce8e014052acec7a9da8b5)
Josh Boyer c47696a
Josh Boyer ed66563
* Sat Feb 11 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc3.git3.1
Josh Boyer ed66563
- Linux 3.3-rc3-git3 (upstream 8df54d622a120058ee8bec38743c9b8f091c8e58)
Josh Boyer ed66563
Josh Boyer af1af57
* Fri Feb 10 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer af1af57
- Patch to prevent NULL pointer dereference in sd_revalidate_disk (rhbz 754518)
Josh Boyer af1af57
Josh Boyer 268ca99
* Fri Feb 10 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc3.git2.1
Josh Boyer 268ca99
- Linux 3.3-rc3-git2 (upstream 612b8507c5d545feed2437b3d2239929cac7688d)
Josh Boyer 268ca99
Josh Boyer 268ca99
* Fri Feb 10 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc3.git1.2
Josh Boyer 1d0352b
- Reenable debugging options.
Josh Boyer 1d0352b
Josh Boyer 07b8ad8
* Fri Feb 10 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 07b8ad8
- Linux 3.3-rc3-git1 (upstream 19e00f2f1d5273dbc52eab0ebc315cae3aa44b2a)
Josh Boyer 07b8ad8
Dave Jones adf844d
* Thu Feb 09 2012 Dave Jones <davej@redhat.com>
Dave Jones adf844d
- bsg: fix sysfs link remove warning (#787281)
Dave Jones adf844d
Josh Boyer bbb7954
* Thu Feb 09 2012 Josh Boyer <jwboyer@gmail.com> - 3.3.0-0.rc3.git0.2
Josh Boyer bbb7954
- Disable debugging options.
Josh Boyer bbb7954
Josh Boyer c3fd9fe
* Thu Feb 09 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer c3fd9fe
- Linux 3.3-rc3
Josh Boyer c3fd9fe
Josh Boyer 32e0cc2
* Wed Feb 08 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer c7a040e
- Remove a bogus inline declaration that broke ARM and ppc builds (rhbz 787373)
Josh Boyer 32e0cc2
- CVE-2011-4086 jbd2: unmapped buffer with _Unwritten or _Delay flags set can
Josh Boyer 32e0cc2
  lead to DoS (rhbz 788260)
Josh Boyer a0668fa
- Add new upstream NFS id mapping patches from Steve Dickson
Josh Boyer 32e0cc2
Josh Boyer 3cae8fa
* Tue Feb 07 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 3cae8fa
- Linux 3.3-rc2-git6 (upstream 6bd113f1f4a8c0d05c4dbadb300319e0e3526db4)
Josh Boyer 3cae8fa
Chris Wright 87eafd0
* Tue Feb 07 2012 Chris Wright <chrisw@redhat.com>
Chris Wright 87eafd0
- Enable Open vSwitch
Chris Wright 87eafd0
0aaee59
* Tue Feb 07 2012 Justin M. Forbes <jforbes@redhat.com>
0aaee59
- Add virtio-scsi support
0aaee59
Josh Boyer 4efc0c7
* Tue Feb 07 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer bddef7d
- Make build/ point to /usr/src/kernels instead of being relative (rhbz 788125)
Josh Boyer bddef7d
Josh Boyer bddef7d
* Tue Feb 07 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 4efc0c7
- Linux 3.3-rc2-git5 (upstream 8597559a78e1cde158b999212bc9543682638eb1)
Josh Boyer 4efc0c7
- Add hfsplus file blessing patches from Matthew Garrett
Josh Boyer 4efc0c7
551d759
* Mon Feb  6 2012 Peter Robinson <pbrobinson@fedoraproject.org>
551d759
- Build an ARM hardfp base versatile/qemu kernel
551d759
Josh Boyer b080939
* Mon Feb 06 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc2.git4.1
Josh Boyer b080939
- Linux 3.3-rc2-git4 (upstream 23783f817bceedd6d4e549385e3f400ea64059e5)
Josh Boyer b080939
- Build and ship turbostat and x86_energy_perf_policy in kernel-tools
Josh Boyer b080939
John W. Linville 2940fac
* Mon Feb 06 2012 John W. Linville <linville@redhat.com>
John W. Linville 2940fac
- Update compat-wireless snapshot from 2012-02-05
John W. Linville 2940fac
Josh Boyer 3acb24c
* Fri Feb 03 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 3acb24c
- Goodbye iSeries.  Only sfr loved you and even he's moved on
Josh Boyer 3acb24c
Josh Boyer 914bd7b
* Fri Feb 03 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc2.git3.2
Josh Boyer 914bd7b
- Drop patch that was NAKed upstream (rhbz 783211)
Josh Boyer 914bd7b
Josh Boyer 46521a3
* Fri Feb 03 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc2.git3.1
Josh Boyer 46521a3
- Linux 3.3-rc2-git3 (upstream 7f06db34e55af8fc33cf3d6d46d869cb7a372b5d)
Josh Boyer d2b0178
- Patch from Jakub Kicinski to fix rt2x00 MCU requests (rhbz 772772)
Josh Boyer d2b0178
860b1af
* Thu Feb 02 2012 Dennis Gilmore <dennis@ausil.us>
860b1af
- disable TOUCHSCREEN_EGALAX on arm arches
860b1af
- build in CACHE_L2X0 on the imx kernel
860b1af
- dont build the module for imx21 usb since its not something we support
860b1af
a492600
* Thu Feb 02 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc2.git2.1
Josh Boyer 49c7216
- Linux 3.3-rc2-git2 (upstream 24b36da33c64368775f4ef9386d44dce1d2bc8cf)
Josh Boyer 49c7216
e4c5c54
* Thu Feb 02 2012 Dennis Gilmore <dennis@ausil.us>
e4c5c54
- disable compat-wireless on arm arches
e4c5c54
Josh Boyer 94e3777
* Wed Feb 01 2012 Josh Boyer <jwboyer@gmail.com> - 3.3.0-0.rc2.git1.1
Josh Boyer 94e3777
- Linux 3.3-rc2-git1 (upstream ce106ad31016b5da1168496cd0454a6290555f84)
Josh Boyer 94e3777
Josh Boyer c762c2f
* Wed Feb 01 2012 Josh Boyer <jwboyer@gmail.com> - 3.3.0-0.rc2.git0.3
Josh Boyer c762c2f
- Reenable debugging options.
Josh Boyer c762c2f
Josh Boyer bc17434
* Tue Jan 31 2012 Josh Boyer <jwboyer@gmail.com> - 3.3.0-0.rc2.git0.2
Josh Boyer bc17434
- Disable debugging options.
Josh Boyer bc17434
Josh Boyer ae3db82
* Tue Jan 31 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer ae3db82
- Linux 3.3-rc2
Josh Boyer ae3db82
Dave Jones 9775553
* Tue Jan 31 2012 Dave Jones <davej@redhat.com>
Dave Jones 3994eb6
- Distributed switch architecture & drivers can be modular in 3.3.
Dave Jones 9775553
Josh Boyer cf9048c
* Mon Jan 30 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc1.git6.1
Josh Boyer cf9048c
- Linux 3.3-rc1-git6 (upstream 6bc2b95ee602659c1be6fac0f6aadeb0c5c29a5d)
Josh Boyer cf9048c
- Add patch from Kay Sievers for udlfb device removal
Josh Boyer cf9048c
- utrace patch to allow calling internal functions from atomic context from
Josh Boyer cf9048c
  Oleg Nesterov
Josh Boyer cf9048c
John W. Linville d47884a
* Mon Jan 30 2012 John W. Linville <linville@redhat.com>
John W. Linville d47884a
- ath9k: use WARN_ON_ONCE in ath_rc_get_highest_rix
John W. Linville d47884a
Josh Boyer cf01b78
* Sun Jan 29 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc1.git5.1
Josh Boyer cf01b78
- Linux 3.3-rc1-git5 (upstream 0a9626575400879d1d5e6bc8768188b938d7c501)
Josh Boyer cf01b78
John W. Linville 6701fed
* Fri Jan 27 2012 John W. Linville <linville@redhat.com>
John W. Linville 6701fed
- Update compat-wireless with snapshot from 2012-01-26
John W. Linville 6701fed
- Drop brcmfmac GCC 4.7 compatibility patch (included in above)
John W. Linville 6701fed
- Include config.mk from compat-wireless build in files for installation
John W. Linville 6701fed
Josh Boyer 30a3098
* Fri Jan 27 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc1.git4.1
Josh Boyer 30a3098
- Linux 3.3-rc1-git4 (upstream 74ea15d909b31158f9b63190a95b52bc05586d4b)
Josh Boyer 30a3098
- Enable the non-staging GMA500 driver (rhbz 785053)
Josh Boyer 30a3098
Josh Boyer 3f3bada
* Thu Jan 26 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 3f3bada
- Drop revert-efi-rtclock.patch.  Issue was fixed by upstream commit 47997d75
Josh Boyer 14c5ae9
- Enable CONFIG_EFI_STUB per Matthew Garrett
Josh Boyer 3f3bada
609f8f0
* Wed Jan 25 2012 Peter Robinson <pbrobinson@fedoraproject.org>
609f8f0
- Build perf/tools on ARM sfp/hfp not just sfp
43fa717
Josh Boyer 6cc339f
* Wed Jan 25 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc1.git3.1
Josh Boyer 6cc339f
- Linux 3.3-rc1-git3 (upstream aaad641eadfd3e74b0fbb68fcf539b9cef0415d0)
Josh Boyer 62e9e5a
- Update utrace.patch from Oleg Nesterov
Josh Boyer b4c7c30
- Add patch to invalidate parent cache when fsync is called on a partition 
Josh Boyer b4c7c30
  (rhbz 783211)
Josh Boyer 62e9e5a
Josh Boyer 64d09e6
* Wed Jan 25 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc1.git2.1
Josh Boyer 64d09e6
- Linux 3.3-rc1-git2 (upstream f8275f9694b8adf9f3498e747ea4c3e8b984499b)
Josh Boyer 64d09e6
Josh Boyer c876c77
* Tue Jan 24 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer c876c77
- Re-enable the ARCMSR module (rhbz 784287)
Josh Boyer d5f748e
- Re-enable the LIRC_STAGING drivers (rhbz 784398)
Josh Boyer c876c77
Josh Boyer 10e2c35
* Tue Jan 24 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc1.git1.1
Josh Boyer 10e2c35
- Linux 3.3-rc1-git1 (upstream c1aab02dac690af7ff634d8e1cb3be6a04387eef)
Josh Boyer 10e2c35
Josh Boyer 7f88f48
* Mon Jan 23 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc1.git0.4
Josh Boyer 7f88f48
- Reenable debugging options.
Josh Boyer 7f88f48
Josh Boyer 6ec053a
* Mon Jan 23 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 6ec053a
- Add mac80211 deauth fix pointed out by Stanislaw Gruszka
Josh Boyer 6ec053a
- Add arch guards in files section for kernel-tools subpackage
Josh Boyer 6ec053a
Josh Boyer ec5a10b
* Sun Jan 22 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc1.git0.3
Josh Boyer ec5a10b
- Disable NVME as it doesn't build on 32-bit
Josh Boyer ec5a10b
Josh Boyer ec5a10b
* Fri Jan 20 2012 Josh Boyer <jwboyer@redhat.com> - 3.3.0-0.rc1.git0.2
Josh Boyer 76e8dd2
- Disable debugging options.
Josh Boyer 76e8dd2
Josh Boyer e8409b1
* Fri Jan 20 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer e8409b1
- Rebase to Linux 3.3-rc1
Josh Boyer e8409b1
John W. Linville 4ff2328
* Thu Jan 19 2012 John W. Linville <linville@redhat.com>
John W. Linville 4ff2328
- Pass the same make options to compat-wireless as to the base kernel
John W. Linville 4ff2328
f8708ce
* Thu Jan 19 2012 Dennis Gilmore <dennis@ausil.us>
f8708ce
- dont build TOUCHSCREEN_EETI on arm 
f8708ce
Josh Boyer 57fc038
* Wed Jan 18 2012 Josh Boyer <jwboyer@redhat.com> 3.2.1-8
Josh Boyer 57fc038
- Fix broken procfs backport (rhbz 782961)
Josh Boyer 57fc038
Josh Boyer 1b35f54
* Wed Jan 18 2012 Josh Boyer <jwboyer@redhat.com> 3.2.1-7
Josh Boyer 42c018e
- /proc/pid/* information leak (rhbz 782686)
Josh Boyer 3b621a2
- CVE-2012-0056 proc: clean up and fix /proc/<pid>/mem (rhbz 782681)
Josh Boyer ac03f32
- CVE-2012-0058 Unused iocbs in a batch should not be accounted as active
Josh Boyer ac03f32
  (rhbz 782696)
Josh Boyer 3b621a2
Dave Jones d283b6f
* Tue Jan 17 2012 Dave Jones <davej@redhat.com>
Dave Jones d283b6f
- Rawhide builds now use MAXSMP on x86.
Dave Jones d283b6f
- For release builds, set x86-64 to support 64 CPUs.
Dave Jones d283b6f
  If larger systems become widespread, we can increase in an update.
Dave Jones d283b6f
Dave Jones a943176
* Tue Jan 17 2012 Dave Jones <davej@redhat.com> 3.2.1-5
Dave Jones 6dfd49c
- Give KMEMLEAK a try again.
Dave Jones 6dfd49c
Dave Jones 36c7a65
* Mon Jan 16 2012 Dave Jones <davej@redhat.com>
Dave Jones 36c7a65
- Disable ISA
Dave Jones 36c7a65
John W. Linville 912fdfc
* Mon Jan 16 2012 John W. Linville <linville@redhat.com>
John W. Linville 912fdfc
- Re-enable CONFIG_BRCMFMAC builds (found work-around for GCC 4.7 builds)
John W. Linville 912fdfc
Josh Boyer 08ed142
* Sun Jan 15 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 08ed142
- Avoid packaging symlinks for kernel-doc files (rhbz 767351)
Josh Boyer 6c1c998
- Apply mac80211 NULL ptr deref fix to compat-wireless too (rhbz 769766)
Josh Boyer 08ed142
Dave Jones 47a613d
* Fri Jan 13 2012 Dave Jones <davej@redhat.com>
Dave Jones afa8ecf
- Disable NFC drivers.
Dave Jones afa8ecf
Dave Jones afa8ecf
* Fri Jan 13 2012 Dave Jones <davej@redhat.com>
Dave Jones 277962e
- Enable CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK
Dave Jones 277962e
  (On by default in rawhide/-debug)
Dave Jones 277962e
Dave Jones 277962e
* Fri Jan 13 2012 Dave Jones <davej@redhat.com>
Dave Jones 2ee9f14
- Disable memory hotplug on x86-64
Dave Jones 2ee9f14
Dave Jones 2ee9f14
* Fri Jan 13 2012 Dave Jones <davej@redhat.com>
Dave Jones 010a4f2
- Disable Calgary IOMMU
Dave Jones 010a4f2
Dave Jones 010a4f2
* Fri Jan 13 2012 Dave Jones <davej@redhat.com>
Dave Jones 07ac776
- Disable MTD
Dave Jones 07ac776
Dave Jones 07ac776
* Fri Jan 13 2012 Dave Jones <davej@redhat.com>
Dave Jones 1e9f58d
- Flannel shirts, Grunge music, IOMega ZIP drives, PCMCIA & ISA SCSI
Dave Jones 1e9f58d
  controllers. The 90s were _awesome_. But it's time to move on.
Dave Jones 1e9f58d
Dave Jones 1e9f58d
* Fri Jan 13 2012 Dave Jones <davej@redhat.com>
Dave Jones 47a613d
- Disable PLIP, Enable PPP BSDCOMP, Disable SLIP
Dave Jones 47a613d
Josh Boyer 04ca5f9
* Fri Jan 13 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 04ca5f9
- Fix verbose logging messages in the rtl8192cu driver (rhbz 728740)
Josh Boyer 04ca5f9
Josh Boyer 3aa57a6
* Fri Jan 13 2012 Josh Boyer <jwboyer@redhat.com> 3.2.1-2
Josh Boyer 3aa57a6
- CVE-2012-0045 kvm: syscall instruction induced guest panic (rhbz 773392)
Josh Boyer 3aa57a6
Josh Boyer fdb68da
* Fri Jan 13 2012 Josh Boyer <jwboyer@redhat.com> 3.2.1-1
Dave Jones 5b8ebac
- Linux 3.2.1
Josh Boyer fdb68da
- Change stable patch compression format to xz
Josh Boyer fdb68da
Josh Boyer 34e654d
* Wed Jan 11 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 34e654d
- Patch from Stanislaw Gruszka to fix NULL ptr deref in mac80211 (rhbz 769766)
Josh Boyer 34e654d
John W. Linville fb21dc0
* Tue Jan 10 2012 John W. Linville <linville@redhat.com>
John W. Linville fb21dc0
- Update compat-wireless snapshot with version from 2012-01-09
John W. Linville fb21dc0
Josh Boyer 8aec613
* Tue Jan 10 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 8aec613
- Add patch to fix ext4 compatibility with ext2 mount option (rhbz 770172)
Josh Boyer a5827f3
- Fix ext4 corrupted bitmap error path (pointed out by Eric Sandeen)
Josh Boyer 8aec613
2b37c3c
* Thu Jan 05 2012 Adam Jackson <ajax@redhat.com>
2b37c3c
- Disable unsupported DRI1-only DRM drivers: i810, r128, tdfx
2b37c3c
John W. Linville 7fee57a
* Thu Jan 05 2012 John W. Linville <linville@redhat.com>
John W. Linville 7fee57a
- Patch compat-wireless build to avoid "pr_fmt redefined" warnings
John W. Linville 7fee57a
- Disable CONFIG_BRCMFMAC builds (needs unknown symbol __bad_udelay)
John W. Linville 7fee57a
- Include compat-wireless in removal of files resulting from patch fuzz
John W. Linville 7fee57a
Josh Boyer ac403a6
* Thu Jan 05 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer ac403a6
- Move the depmod file removal below the compat-wireless build to make sure we
Josh Boyer ac403a6
  clean them all out
Josh Boyer ac403a6
Dave Jones be19a69
* Thu Jan 05 2012 Dave Jones <davej@redhat.com>
Dave Jones be19a69
- CONFIG_DEBUG_SET_MODULE_RONX should always be set.
Dave Jones be19a69
Dave Jones c89941d
* Thu Jan 05 2012 Dave Jones <davej@redhat.com> - 3.2.0-3
Dave Jones c89941d
- Reenable debugging options.
Dave Jones c89941d
Dave Jones 086827d
* Thu Jan 05 2012 Dave Jones <davej@redhat.com> - 3.2.0-2
Dave Jones 086827d
- Disable debugging options.
Dave Jones 086827d
Dave Jones 8959a0e
* Wed Jan 04 2012 Dave Jones <davej@redhat.com> 3.2.0-1
Dave Jones 8959a0e
- Linux 3.2
Dave Jones 8959a0e
Dave Jones c54d27c
* Wed Jan 04 2012 Dave Jones <davej@redhat.com> 3.2.0-0.rc7.git5.1
Dave Jones c54d27c
- Linux 3.2-rc7-git5 (157e8bf8b4823bfcdefa6c1548002374b61f61df)
Dave Jones c54d27c
John W. Linville 37e219b
* Tue Jan 03 2012 John W. Linville <linville@redhat.com> 
John W. Linville 37e219b
- Avoid unnecessary modprobe invocations during compat-wireless build
John W. Linville 37e219b
Josh Boyer 54daf00
* Tue Jan 03 2012 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 54daf00
- Add bluetooth support for BCM20102A0 21e3 (rhbz 770233)
Josh Boyer 54daf00
John W. Linville c679b87
* Tue Jan 03 2012 John W. Linville <linville@redhat.com> 
John W. Linville c679b87
- Re-enable CONFIG_RT2800PCI_RT53XX in compat-wireless build (rhbz #720594)
John W. Linville c679b87
Dave Jones a19da5c
* Mon Jan 02 2012 Dave Jones <davej@redhat.com> - 3.2.0-0.rc7.git4.1
Dave Jones a19da5c
- Linux 3.2-rc7-git4 (115e8e705e4be071b9e06ff72578e3b603f2ba65)
Dave Jones a19da5c
Dave Jones ae6da83
* Sat Dec 31 2011 Dave Jones <davej@redhat.com> - 3.2.0-0.rc7.git3.1
Dave Jones ae6da83
- Linux 3.2-rc7-git3 (06867fbb8abc936192195e5dcc4b63e12cc78f72)
Dave Jones ae6da83
Dave Jones 74b7133
* Fri Dec 30 2011 Dave Jones <davej@redhat.com> - 3.2.0-0.rc7.git2.1
Dave Jones 74b7133
- Linux 3.2-rc7-git2 (89307babf966165171547f105e2253dec261cfa5)
Dave Jones 74b7133
Dave Jones 3d927e4
* Wed Dec 28 2011 Dave Jones <davej@redhat.com>
Dave Jones 3d927e4
- Disable unnecessary CONFIG_NET_DCCPPROBE
Dave Jones 3d927e4
Dave Jones 26e753f
* Wed Dec 28 2011 Dave Jones <davej@redhat.com> - 3.2.0-0.rc7.git1.1
Dave Jones 26e753f
- Linux 3.2-rc7-git1 (371de6e4e0042adf4f9b54c414154f57414ddd37)
Dave Jones 26e753f
Kyle McMartin b02aa10
* Sat Dec 24 2011 Kyle McMartin <kyle@redhat.com> - 3.2.0-0.rc7.git0.1
Kyle McMartin b02aa10
- Linux 3.2-rc7
Kyle McMartin b02aa10
d3b519e
* Fri Dec 23 2011 Dennis Gilmore <dennis@ausil.us> 
d3b519e
- build imx highbank and kirkwood kernels on arm
d3b519e
- clean up arm config options
d3b519e
Dave Jones 2569ae1
* Thu Dec 22 2011 Dave Jones <davej@redhat.com> - 3.2.0-0.rc6.git3.1
Dave Jones 2569ae1
- Linux 3.2-rc6-git3 (ecefc36b41ac0fe92d76273a23faf27b2da13411)
Dave Jones 2569ae1
Dave Jones 39b6e0a
* Tue Dec 20 2011 Dave Jones <davej@redhat.com> - 3.2.0-0.rc6.git2.1
Dave Jones 39b6e0a
- Linux 3.2-rc6-git2 (a4a4923919f2d43583789b1f3603f4e5600d8321)
Dave Jones 39b6e0a
Josh Boyer be7f8e0
* Tue Dec 20 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer be7f8e0
- Include crtsaves.o for ppc64 as well (rhbz #769415)
Josh Boyer 0e0a3af
- Drop EDID headers patch from 751589 for now (rhbz #769103)
Josh Boyer be7f8e0
Josh Boyer be7f8e0
* Mon Dec 19 2011 John W. Linville <linville@redhat.com>
John W. Linville 217da4e
- modpost: add option to allow external modules to avoid taint
John W. Linville 217da4e
- Make integrated compat-wireless take advantage of the above
John W. Linville 217da4e
- Turn-on backports again, since TAINT_OOT_MODULE issue is resolved
John W. Linville 217da4e
- Update compat-wireless snapshot from 2011-12-18
John W. Linville 217da4e
Dave Jones 7729f41
* Mon Dec 19 2011 Dave Jones <davej@redhat.com>
Dave Jones 92505b0
- Switch x86-code-dump-fix-truncation.patch to use the pending upstream fix.
Dave Jones 92505b0
Dave Jones 92505b0
* Mon Dec 19 2011 Dave Jones <davej@redhat.com>
Dave Jones 7729f41
- Disable IMA. (Forces TPM on, which may be undesirable: See 733964, 746097)
Dave Jones 7729f41
  Move TPM modules to modules-extra
Dave Jones 7729f41
Dave Jones cd4b60e
* Mon Dec 19 2011 Dave Jones <davej@redhat.com> - 3.2.0-0.rc6.git1.1
Dave Jones cd4b60e
- Linux 3.2-rc6-git1 (390f998509bf049019df0b078c0a6606e0d57fb4)
Dave Jones cd4b60e
Josh Boyer 799841b
* Sat Dec 17 2011 Josh Boyer <jwboyer@redhat.com> - 3.2.0-0.rc6.git0.1
Josh Boyer 799841b
- Linux 3.2-rc6
Josh Boyer 799841b
Dave Jones e7b5dbf
* Fri Dec 16 2011 Dave Jones <davej@redhat.com> - 3.2.0-0.rc5.git4.1
Dave Jones e7b5dbf
- Linux 3.2-rc5-git4 (6f12d2ee52dcf97dcefdadbd500e7650311eaa6a)
Dave Jones e7b5dbf
Ben Skeggs b126e8d
* Fri Dec 16 2011 Ben Skeggs <bskeggs@redhat.com>
Ben Skeggs b126e8d
- Add patch to do a better job of dealing with busted EDID headers (rhbz#751589)
Ben Skeggs b126e8d
Josh Boyer dd51030
* Thu Dec 15 2011 Josh Boyer <jwboyer@redhat.com> - 3.2.0-0.rc5.git3.1
Josh Boyer dd51030
- Linux 3.2-rc5-git3 (55b02d2f4445ad625213817a1736bf2884d32547)
Josh Boyer dd51030
Dave Jones ee15bb1
* Thu Dec 15 2011 Dave Jones <davej@redhat.com> - 3.2.0-0.rc5.git2.4
Dave Jones ee15bb1
- Disable Intel IOMMU by default.
Dave Jones ee15bb1
Dave Jones 70e0ba3
* Thu Dec 15 2011 Dave Jones <davej@redhat.com> - 3.2.0-0.rc5.git2.3
Dave Jones 70e0ba3
- Change configfs to be built-in. (rhbz 767432)
Dave Jones 70e0ba3
Dave Jones e873886
* Wed Dec 14 2011 Steve Dickson <steved@redhat.com> 3.2.0-0.rc5.git2.2.fc17
Dave Jones f3fbdcb
- Enabled the in-kernel idmapper.
Dave Jones f3fbdcb
- keyring: allow special keyrings to be cleared
Dave Jones f3fbdcb
Dave Jones 59806ed
* Wed Dec 14 2011 Dave Jones <davej@redhat.com> - 3.2.0-0.rc5.git2.1
Dave Jones 59806ed
- Linux 3.2-rc5-git2 (373da0a2a33018d560afcb2c77f8842985d79594)
Dave Jones 59806ed
Dave Jones d9f7d1b
* Tue Dec 13 2011 Dave Jones <davej@redhat.com> - 3.2.0-0.rc5.git1.1
Dave Jones d9f7d1b
- Linux 3.2-rc5-git1 (442ee5a942834431ccf0b412e3cf7bb9ae97ff4e)
Dave Jones d9f7d1b
Dave Jones 5cb4690
* Tue Dec 13 2011 Dave Jones <davej@redhat.com>
Dave Jones 5cb4690
- Disable FDDI/SKFP.
Dave Jones 5cb4690
Josh Boyer d496e06
* Tue Dec 13 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer d496e06
- mod-extras: Don't fail the build if a module is listed that isn't built
Josh Boyer 4a6707e
- Remove extraneous settings and enable Radeon KMS for powerpc (via Will Woods)
Josh Boyer d496e06
John W. Linville 98db752
* Mon Dec 12 2011 John W. Linville <linville@redhat.com>
John W. Linville 98db752
- Turn-off backports until TAINT_OOT_MODULE issue is resolved
John W. Linville 98db752
Josh Boyer 23654a1
* Mon Dec 12 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 23654a1
- Disable backports on arches where we don't actually build a kernel (or config)
Josh Boyer 23654a1
Kyle McMartin 09b002e
* Sun Dec 11 2011 Kyle McMartin <kyle@redhat.com> - 3.0.0-0.rc5.git0.1
Kyle McMartin 09b002e
- Linux 3.2-rc5
Kyle McMartin 09b002e
John W. Linville 3a3b494
* Fri Dec 09 2011 John W. Linville <linville@redhat.com>
John W. Linville 3a3b494
- Do a better job of cleaning-up compat-wireless between builds
John W. Linville 3a3b494
Dave Jones dc99927
* Fri Dec 09 2011 Dave Jones <davej@redhat.com> - 3.2.0-0.rc4.git6.1
Dave Jones dc99927
- Linux 3.2-rc4-git6 (09d9673d53005fdf40de4c759425893904292236)
Dave Jones dc99927
Josh Boyer 9f7d284
* Thu Dec 08 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 9f7d284
- Add patch from Jeff Layton to fix suspend with NFS (rhbz #717735)
Josh Boyer 9f7d284
Dave Jones 6e216ec
* Wed Dec 07 2011 Dave Jones <davej@redhat.com> - 3.2.0-0.rc4.git5.2
Dave Jones 6e216ec
- Linux 3.2-rc4-git5 (77a7300abad7fe01891b400e88d746f97307ee5a)
Dave Jones 6e216ec
Dave Jones e677777
* Wed Dec 07 2011 Dave Jones <davej@redhat.com>
Dave Jones e677777
- Turn DEBUG_PAGEALLOC back off.
Dave Jones e677777
Chuck Ebbert ede16e8
* Wed Dec 07 2011 Chuck Ebbert <cebbert@redhat.com>
Chuck Ebbert ede16e8
- Attempt to fix rhbz #736815 by printing spaces before the brackets
Chuck Ebbert ede16e8
Dave Jones 1cb5d1c
* Tue Dec 06 2011 Dave Jones <davej@redhat.com> 3.2.0-0.rc4.git4.2.fc17
Dave Jones 1cb5d1c
- Linux 3.2-rc4-git2 (b835c0f47f725d864bf2545f10c733b754bb6d51)
Dave Jones 1cb5d1c
Dave Jones 68b02a2
* Tue Dec 06 2011 Dave Jones <davej@redhat.com>
Dave Jones b1cdcd3
- Turn on DEBUG_PAGEALLOC for a day.
Dave Jones b1cdcd3
Dave Jones b1cdcd3
* Tue Dec 06 2011 Dave Jones <davej@redhat.com>
Dave Jones 68b02a2
- Linux 3.2-rc4-git2 (45e713efe2fa574b6662e7fb63fae9497c5e03d4)
Dave Jones 68b02a2
Josh Boyer 61b1735
* Tue Dec 06 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 884a3e1
- Move 802.1q and yenta_socket back into the main kernel package
Josh Boyer 61b1735
Josh Boyer 4787052
* Mon Dec 05 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 4787052
- Only print the apm_cpu_idle message once (rhbz #760341)
Josh Boyer 4787052
Dave Jones b442110
* Mon Dec 05 2011 Dave Jones <davej@redhat.com>
Dave Jones b442110
- Enable CONFIG_BSD_ACCT_V3. Should be safe since psacct-6.5.4-4.fc14.
Dave Jones b442110
Dave Jones fc48129
* Mon Dec 05 2011 Dave Jones <davej@redhat.com> 3.2.0-0.rc4.git2.1.fc17
Dave Jones fc48129
- Linux 3.2-rc4-git2 (8e8da023f5af71662867729db5547dc54786093c)
Dave Jones fc48129
John W. Linville e04a212
* Sat Dec 03 2011 John W. Linville <linville@redhat.com> 
John W. Linville e04a212
- Add compat-wireless patch to define module_usb_driver
John W. Linville e04a212
John W. Linville aeaaac5
* Fri Dec 02 2011 John W. Linville <linville@redhat.com> 
John W. Linville aeaaac5
- Revise compat-wireless configuration
John W. Linville aeaaac5
- Update compat-wireless snapshot
John W. Linville aeaaac5
- Enable with-backports by default
John W. Linville aeaaac5
Josh Boyer 9f33e8d
* Fri Dec 02 2011 Josh Boyer <jwboyer@redhat.com> 3.2.0-0.rc4.git1.4.fc17
Josh Boyer 9f33e8d
- Backport ALPS touchpad patches from input/next branch (rhbz #590880)
Josh Boyer 08b653a
- Apply patch from John Linville to reverse modules-extra dependency order
Josh Boyer 42087d6
- Put ssb.ko back in the main kernel package
Josh Boyer 42087d6
Dave Jones 5e401e5
* Fri Dec 02 2011 Dave Jones <davej@redhat.com> 3.2.0-0.rc4.git1.3.fc17
Dave Jones 5e401e5
- Enable Poulsbo DRM.
Dave Jones 5e401e5
Dave Jones 8c98cf4
* Fri Dec 02 2011 Dave Jones <davej@redhat.com>
Dave Jones 8c98cf4
- Linux 3.2-rc4-git1 (5983fe2b29df5885880d7fa3b91aca306c7564ef)
Dave Jones 8c98cf4
  dropped: rtlwifi-fix-lps_lock-deadlock.patch (applied upstream)
Dave Jones 8c98cf4
Josh Boyer b66345b
* Fri Dec 02 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer b66345b
- Adjust Requires for modules-extra pacakge to rely on kernel-uname-r
Josh Boyer b66345b
Dave Jones 6678319
* Thu Dec 01 2011 Dave Jones <davej@redhat.com>
Dave Jones 115248e
- Linux 3.2-rc4
Dave Jones 115248e
Dave Jones 115248e
* Thu Dec 01 2011 Dave Jones <davej@redhat.com>
Dave Jones 6678319
- Linux 3.2-rc3-git2 (b930c26416c4ea6855726fd977145ccea9afbdda)
Dave Jones 6678319
Josh Boyer b8b2783
* Tue Nov 29 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer b8b2783
- Add modules-extra subpackage
Josh Boyer 5bd5546
- Drop drm-intel-make-lvds-work.patch (rhbz #731296)
Josh Boyer fe32595
- Add patch to fix deadlock in rtlwifi (rhbz #755154)
Josh Boyer b8b2783
Josh Boyer 5e296fd
* Tue Nov 29 2011 Josh Boyer <jwboyer@redhat.com> 3.2.0-0.rc3.git1.1
Josh Boyer 5e296fd
- Linux 3.2-rc3-git1
Josh Boyer 5e296fd
Josh Boyer 471066e
* Thu Nov 24 2011 Josh Boyer <jwboyer@redhat.com> 3.2.0-0.rc3.git0.1
Josh Boyer 471066e
- Linux 3.2-rc3.  Gobble.
Josh Boyer 471066e
Josh Boyer d7de9e2
* Wed Nov 23 2011 Josh Boyer <jwboyer@redhat.com> 3.2.0-0.rc2.git8.1
Josh Boyer d7de9e2
- Linux 3.2-rc2-git8
Josh Boyer d7de9e2
Josh Boyer c877f36
* Tue Nov 22 2011 Josh Boyer <jwboyer@redhat.com> 3.2.0-0.rc2.git7.1
Josh Boyer c877f36
- Linux 3.2-rc2-git7
Josh Boyer c877f36
Josh Boyer 467901a
* Mon Nov 21 2011 Josh Boyer <jwboyer@redhat.com> 3.2.0-0.rc2.git6.1
Josh Boyer 467901a
- Linux 3.2-rc2-git6
Josh Boyer 467901a
- Update utrace.patch from Oleg Nesterov
Josh Boyer 467901a
Josh Boyer 43864d3
* Mon Nov 21 2011 Josh Boyer <jwboyer@redhat.com> 3.2.0-0.rc2.git5.1
Josh Boyer 43864d3
- Linux 3.2-rc2-git5
Josh Boyer 43864d3
Josh Boyer 09eae38
* Sun Nov 20 2011 Josh Boyer <jwboyer@redhat.com> 3.2.0-0.rc2.git4.1
Josh Boyer 09eae38
- Linux 3.2-rc2-git4
Josh Boyer 09eae38
Josh Boyer 0ab1ce7
* Fri Nov 18 2011 Josh Boyer <jwboyer@redhat.com> 3.2.0-0.rc2.git3.1
Josh Boyer 0ab1ce7
- Linux 3.2-rc2-git3
Josh Boyer 0ab1ce7
- Disable various fb and drm drivers that don't have xorg equivalents per ajax
Josh Boyer 0ab1ce7
- Other minor config cleanup
Josh Boyer 0ab1ce7
Josh Boyer 9e8b97b
* Thu Nov 17 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 9e8b97b
- Linux 3.2-rc2-git2
Josh Boyer 9e8b97b
Kyle McMartin 0587528
* Thu Nov 17 2011 Kyle McMartin <kmcmartin@redhat.com>
Kyle McMartin 0587528
- Drop Obsoletes/Provides from kernel-tools onto perf.
Kyle McMartin 0587528
John W. Linville 10731a4
* Wed Nov 16 2011 John W. Linville <linville@redhat.com>
John W. Linville 10731a4
- Add compat-wireless as an option for kernel build
John W. Linville 10731a4
Kyle McMartin e20e757
* Wed Nov 16 2011 Kyle McMartin <kmcmartin@redhat.com>
Kyle McMartin e20e757
- Work around #663080 and restore building 'perf' on s390x (we don't need
Kyle McMartin e20e757
  kernel-tools since cpuspeed isn't needed on s390...)
Kyle McMartin 8bcddfb
- Restore %{perf_make} to ensure CFLAGS doesn't change across building
Kyle McMartin 8bcddfb
  perf.
Kyle McMartin e20e757
Josh Boyer 6df08a4
* Wed Nov 16 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 6df08a4
- Linux 3.2-rc2-git1
Josh Boyer 6df08a4
Josh Boyer c7a536b
* Mon Nov 14 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 4215bf0
- Patch from Joshua Roys to add rtl8192* to modules.networking (rhbz 753645)
Josh Boyer 8e7e637
- Add patch to fix ip6_tunnel naming (rhbz 751165)
Josh Boyer e7cafd4
- Quite warning in apm_cpu_idle (rhbz 753776)
Josh Boyer 4215bf0
Josh Boyer 4215bf0
* Mon Nov 14 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer c7a536b
- CVE-2011-4131: nfs4_getfacl decoding kernel oops (rhbz 753236)
Josh Boyer c7a536b
- Linux 3.2-rc1-git4
Josh Boyer c7a536b
Josh Boyer 90ac8d9
* Sat Nov 12 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 90ac8d9
- Linux 3.2-rc1-git3
Josh Boyer 90ac8d9
Chuck Ebbert e6236b7
* Fri Nov 11 2011 Chuck Ebbert <cebbert@redhat.com>
Chuck Ebbert e6236b7
- Use the same naming scheme as rawhide for -stable RC kernels
Chuck Ebbert e6236b7
  (e.g. 3.1.1-0.rc1.1 instead of 3.1.1-1.rc1)
Chuck Ebbert e6236b7
Josh Boyer 03f8e6a
* Fri Nov 11 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 03f8e6a
- Add reworked pci ASPM patch from Matthew Garrett
Josh Boyer 03f8e6a
John W. Linville 2be5490
* Fri Nov 11 2011 John W. Linville <linville@redhat.com>
John W. Linville 2be5490
- Remove overlap between bcma/b43 and brcmsmac and reenable bcm4331
John W. Linville 2be5490
Josh Boyer 9b8fcc4
* Thu Nov 10 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 9b8fcc4
- Linux 3.2-rc1-git2
Josh Boyer 9b8fcc4
Josh Boyer 33f57de
* Wed Nov 09 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 33f57de
- Linux 3.2-rc1-git1
Josh Boyer 33f57de
- Enable the brcm80211 modules now that they have left staging
Josh Boyer 33f57de
Josh Boyer 27d8a0e
* Tue Nov 08 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 27d8a0e
- Add python-perf-debuginfo package (rhbz 752140)
Josh Boyer 27d8a0e
Neil Horman 778a29a
* Tue Nov 08 2011 Neil Horman <nhorman@redhat.com>
Neil Horman 778a29a
- Add msi irq ennumeration per dev in sysfs (bz 744012)
Neil Horman 778a29a
Josh Boyer e3e38ac
* Tue Nov 08 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer e3e38ac
- Linux 3.2-rc1
Josh Boyer e3e38ac
Josh Boyer ea8a97d
* Mon Nov 07 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer ea8a97d
- Linux 3.1-git7
Josh Boyer ea8a97d
- Drop override for XEN_MAX_DOMAIN_MEMORY (rhbz 751789)
Josh Boyer dee3562
- Add fixes from git://openlinux.windriver.com/people/paulg/modsplit-post-merge
Josh Boyer 44ef27d
- Add two patches to fix mac80211 issues (rhbz 731365)
Josh Boyer ea8a97d
Josh Boyer 7b0cc22
* Fri Nov 04 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 7b0cc22
- Linux 3.1-git6
Josh Boyer 7b0cc22
Josh Boyer 6cc3fe9
* Thu Nov 03 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 6cc3fe9
- Linux 3.1-git5
Josh Boyer 6cc3fe9
Josh Boyer 906f34d
* Tue Nov 01 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 906f34d
- Linux 3.1-git4
Josh Boyer 906f34d
Dave Jones e4fe1fa
* Tue Nov 01 2011 Dave Jones <davej@redhat.com>
Dave Jones bf976a1
- allow building the perf rpm for ARM (rhbz 741325)
Dave Jones bf976a1
Dave Jones bf976a1
* Tue Nov 01 2011 Dave Jones <davej@redhat.com>
Dave Jones e4fe1fa
- Add another Sony laptop to the nonvs blacklist. (rhbz 641789)
Dave Jones e4fe1fa
Kyle McMartin 42d4c31
* Tue Nov 01 2011 Kyle McMartin <kmcmartin@redhat.com>
Kyle McMartin 42d4c31
- Restore perf sub-package so that sparc64 and s390x get their
Kyle McMartin 42d4c31
  perf back.
Kyle McMartin 42d4c31
Josh Boyer 36ae5a6
* Mon Oct 31 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 6f692a1
-CVE-2011-4097: oom_badness() integer overflow (rhbz 750402)
Josh Boyer 36ae5a6
Kyle McMartin ec31efd
* Mon Oct 31 2011 Kyle McMartin <kmcmartin@redhat.com>
Kyle McMartin ec31efd
- Build a python-perf subpackage.
Kyle McMartin ec31efd
Josh Boyer 8e04ce5
* Mon Oct 31 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 8e04ce5
- Linux 3.1-git3.  Happy Halloween.
Josh Boyer 8e04ce5
Josh Boyer dff0854
* Fri Oct 28 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer dff0854
- Linux 3.1-git2
Josh Boyer dff0854
Josh Boyer 2ee118c
* Thu Oct 27 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 2ee118c
- Drop ia64
Josh Boyer 59694fb
- Drop alpha
Josh Boyer 2ee118c
Kyle McMartin 080adf8
* Wed Oct 26 2011 Kyle McMartin <kmcmartin@redhat.com>
Kyle McMartin 080adf8
- Make some config changes caught during a review:
Kyle McMartin 080adf8
 - CONFIG_SOC_CAMERA: disable, it's only for some ARM boards
Kyle McMartin 080adf8
 - CONFIG_MEDIA_ALTERA_CI=m: needed for some DVB boards
Kyle McMartin d87b3f2
 - CONFIG_DEBUG_BLK_CGROUP: stop setting it twice...
Kyle McMartin 080adf8
Chuck Ebbert 11ee033
* Wed Oct 26 2011 Chuck Ebbert <cebbert@redhat.com>
Chuck Ebbert 11ee033
- Add build option "--with=release" to build a non-debug kernel in rawhide.
Chuck Ebbert 11ee033
Josh Boyer 34f9218
* Wed Oct 26 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 34f9218
- Linux 3.1-git1
Josh Boyer 34f9218
829bffe
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.0-5
829bffe
- Rebuilt for glibc bug#747377
829bffe
Kyle McMartin eb0d563
* Wed Oct 26 2011 Kyle McMartin <kmcmartin@redhat.com>
Kyle McMartin eb0d563
- Drop kernel-firmware subpackage. We've had linux-firmware around for
Kyle McMartin eb0d563
  enough releases now.
Kyle McMartin 3655202
- ppc64/ppc vdso patches have been upstream for ages.
Kyle McMartin 428cea3
- Install vdso on s390/s390x.
Kyle McMartin 1bfd59b
- Fedora 8 was a very long time ago... fancy_debuginfo turns into
Kyle McMartin 1bfd59b
  with_debuginfo in the glorious future.
Kyle McMartin d54f6ca
- Disable CONFIG_CC_OPTIMIZE_FOR_SIZE, upstream consensus is -O2 has
Kyle McMartin d54f6ca
  generated better code than -Os for a while
Kyle McMartin d54f6ca
  (https://lkml.org/lkml/2009/11/26/57)
Kyle McMartin 9845830
- Drop vanilla-% targets, and other Makefile cruft which has been bit
Kyle McMartin 9845830
  rotting for years.
Kyle McMartin 9410e6c
- Dump %rhel config bits which are not used in Fedora.
Kyle McMartin 145e7ec
- Drop dead Source0 hacks from the 2.6->3.0 transition.
Kyle McMartin eb0d563
Josh Boyer 3f831a8
* Wed Oct 26 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 00f7e86
- CVE-2011-4077: xfs: potential buffer overflow in xfs_readlink() (rhbz 749166)
Josh Boyer 3f831a8
Josh Boyer 1582123
* Tue Oct 25 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 78ef95d
- CVE-2011-3347: be2net: promiscuous mode and non-member VLAN packets DoS (rhbz 748691)
Josh Boyer 1582123
- CVE-2011-1083: excessive in kernel CPU consumption when creating large nested epoll structures (rhbz 748668)
Josh Boyer 1582123
Josh Boyer e78653b
* Mon Oct 24 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer e78653b
- Backport 3 fixed from linux-next to fix dib0700 playback (rhbz 733827)
Josh Boyer e78653b
Chuck Ebbert 750207a
* Mon Oct 24 2011 Chuck Ebbert <cebbert@redhat.com> 3.1.0-1
Chuck Ebbert 750207a
- Linux 3.1
Chuck Ebbert 750207a
Chuck Ebbert c6b36e0
* Sun Oct 23 2011 Chuck Ebbert <cebbert@redhat.com>
Chuck Ebbert c6b36e0
- Make rpmbuild option "without_debug" work properly on rawhide.
Chuck Ebbert c6b36e0
Chuck Ebbert 65b0d9b
* Fri Oct 21 2011 Chuck Ebbert <cebbert@redhat.com> 3.1.0-0.rc10.git1.1
Chuck Ebbert 62a1a48
- Require grubby >= 8.3-1 like F16 does.
Chuck Ebbert 65b0d9b
- Update to upstream HEAD (v3.1-rc10-42-g2efd7c0).
Chuck Ebbert 62a1a48
Dave Jones 19e3780
* Fri Oct 21 2011 Dave Jones <davej@redhat.com>
Dave Jones 19e3780
- Lower severity of Radeon lockup messages.
Dave Jones 19e3780
Dave Jones a4b83ee
* Wed Oct 19 2011 Dave Jones <davej@redhat.com>
Dave Jones a4b83ee
- Add Sony VGN-FW21E to nonvs blacklist. (rhbz 641789)
Dave Jones a4b83ee
Chuck Ebbert e05440c
* Wed Oct 19 2011 Chuck Ebbert <cebbert@redhat.com>
Chuck Ebbert e05440c
- Sync with F16
Chuck Ebbert e05440c
- Linux 3.1-rc10
Chuck Ebbert e05440c
- Copy nouveau updates patch from F16
Chuck Ebbert e05440c
- Fix deadlock in POSIX cputimer code (rhbz #746485)
Chuck Ebbert e05440c
Josh Boyer 18312c1
* Tue Oct 18 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 18312c1
- Add patch to fix invalid EFI remap calls from Matt Fleming
Josh Boyer 18312c1
Josh Boyer 9220592
* Mon Oct 17 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 9220592
- Add two patches to fix stalls in khugepaged (rhbz 735946)
Josh Boyer 9220592
Dave Jones 3e1637b
* Fri Oct 14 2011 Dave Jones <davej@redhat.com>
Dave Jones 3e1637b
- Disable CONFIG_ACPI_PROCFS_POWER which is supposed to be going away soon.
Dave Jones 3e1637b
Josh Boyer 04203df
* Thu Oct 13 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 04203df
- Update usb-add-quirk-for-logitech-webcams.patch with C600 ID (rhbz 742010)
Josh Boyer 04203df
b0217d0
* Thu Oct 13 2011 Adam Jackson <ajax@redhat.com>
b0217d0
- drm/i915: Treat SDVO LVDS as digital when parsing EDID (#729882)
b0217d0
Josh Boyer c681662
* Thu Oct 13 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer c681662
- Add patch from Stanislaw Gruszka to fix iwlagn NULL dereference (rhbz 744155)
Josh Boyer c681662
Josh Boyer b2efe01
* Tue Oct 11 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer b2efe01
- Disable CONFIG_XEN_BALLOON_MEMORY_HOTPLUG (rhbz 744408)
Josh Boyer b2efe01
Josh Boyer 220cb1c
* Thu Oct 06 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 220cb1c
- Add patch to fix base frequency check for Ricoh e823 devices (rhbz 722509)
Josh Boyer 220cb1c
Dave Jones 64f1bc9
* Thu Oct 06 2011 Dave Jones <davej@redhat.com>
Dave Jones 64f1bc9
- Taint if virtualbox modules have been loaded.
Dave Jones 64f1bc9
Josh Boyer 8260326
* Wed Oct 05 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 8260326
- Linux 3.1-rc9
Josh Boyer 8260326
Josh Boyer d0042d3
* Thu Sep 29 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer d0042d3
- Update logitech USB quirk patch
Josh Boyer d0042d3
Chuck Ebbert c39b72e
* Tue Sep 27 2011 Chuck Ebbert <cebbert@redhat.com>
Chuck Ebbert c39b72e
- Linux 3.1-rc8
Chuck Ebbert c39b72e
- New option: CONFIG_ARM_ERRATA_764369 is not set
Chuck Ebbert c39b72e
- Fix up utrace.patch to apply after commit f9d81f61c
Chuck Ebbert c39b72e
Dave Jones 2ddef1f
* Thu Sep 22 2011 Dave Jones <davej@redhat.com>
Dave Jones 2ddef1f
- Make CONFIG_XEN_PLATFORM_PCI=y (rhbz 740664)
Dave Jones 2ddef1f
bb58618
* Thu Sep 22 2011 Dennis Gilmore <dennis@ausil.us>
bb58618
- build a vmlinux image on sparc64 
bb58618
Josh Boyer 962393f
* Wed Sep 21 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 962393f
- Linux 3.1-rc7
Josh Boyer 962393f
Dave Jones 8674cb1
* Tue Sep 20 2011 Dave Jones <davej@redhat.com>
Dave Jones 8674cb1
- Limit 32-bit x86 kernels to 32 processors.
Dave Jones 8674cb1
Dave Jones bd4ac46
* Mon Sep 19 2011 Dave Jones <davej@redhat.com>
Dave Jones bd4ac46
- Merge some improvements to the 32bit mmap randomisation from Kees Cook.
Dave Jones bd4ac46
Josh Boyer 1830f97
* Wed Sep 14 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 1830f97
- Add patch to fix deadlock in ppc64 icswx (rhbz 737984)
Josh Boyer 1830f97
Neil Horman 2f72396
* Wed Sep 14 2011 Neil Horman <nhorman@redhat.com>
Neil Horman 2f72396
- Enable CONFIG_IP_VS_IPV6 (bz 738194)
Neil Horman 2f72396
Josh Boyer 5f0e65d
* Wed Sep 14 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 5f0e65d
- Add support for Macbook Air 4,1 keyboard, trackpad, and bluetooth
Josh Boyer 86a04b4
- Add patch to fix HVCS on ppc64 (rhbz 738096)
Josh Boyer 1b241cb
- Add various ibmveth driver fixes (rhbz 733766)
Josh Boyer 5f0e65d
Josh Boyer 27b62b6
* Mon Sep 12 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 0471e51
- Linux 3.1-rc6
Josh Boyer 27b62b6
- Avoid false quiescent states in rcutree with CONFIG_RCU_FAST_NO_HZ. (rhbz 577968)
Josh Boyer 27b62b6
Josh Boyer 737c9c7
* Fri Sep 09 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 737c9c7
- Change to 64K page size for ppc64 kernels (rhbz 736751)
Josh Boyer 737c9c7
Josh Boyer 4cf7022
* Wed Sep 07 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 1bc7527
- Linux 3.1-rc5 (locally generated patch from git as kernel.org is down)
Josh Boyer 4cf7022
- Add patch to fix oops when linking entities in ucvideo (rhbz 735437)
Josh Boyer 4cf7022
Dave Jones 82e8051
* Fri Sep 02 2011 Dave Jones <davej@redhat.com>
Dave Jones 82e8051
- utrace: s390: fix the compile problem with traps.c (rhbz 735118)
Dave Jones 82e8051
Dave Jones 92c3aba
* Tue Aug 30 2011 Dave Jones <davej@redhat.com>
Dave Jones 92c3aba
- Revert "x86: Serialize EFI time accesses on rtc_lock" (rhbz 732755)
Dave Jones 92c3aba
Josh Boyer 5e97a20
* Tue Aug 30 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 5e97a20
- Add patch to fix rhbz 606017
Josh Boyer 5e97a20
Josh Boyer fe5d1cd
* Mon Aug 29 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer fe5d1cd
- Linux 3.1-rc4
Josh Boyer fe5d1cd
Dave Jones acf0fc7
* Sat Aug 27 2011 Dave Jones <davej@redhat.com>
Dave Jones acf0fc7
- Fix get_gate_vma usage in i386 NX emulation
Dave Jones c62acbf
- Bring back the 32bit mmap randomization patch for now.
Dave Jones c62acbf
  NX emulation is still too dependant upon it.
Dave Jones acf0fc7
Josh Boyer 96b3b74
* Sat Aug 27 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 96b3b74
- Linux 3.1-rc3-git6
Josh Boyer 96b3b74
Dave Jones 0ad4e11
* Fri Aug 26 2011 Dave Jones <davej@redhat.com>
Dave Jones 448d796
- Enable CONFIG_DETECT_HUNG_TASK for debug builds & rawhide.
Dave Jones 448d796
Dave Jones 448d796
* Fri Aug 26 2011 Dave Jones <davej@redhat.com>
Dave Jones fa32e9c
- Drop linux-2.6-debug-vm-would-have-oomkilled.patch
Dave Jones fa32e9c
  The oom-killer heuristics have improved enough that this should
Dave Jones fa32e9c
  never be necessary (and it probably doesn't dtrt any more)
Dave Jones fa32e9c
Dave Jones fa32e9c
* Fri Aug 26 2011 Dave Jones <davej@redhat.com>
Dave Jones 3f1a765
- Drop linux-2.6-32bit-mmap-exec-randomization.patch
Dave Jones 3f1a765
  Outlived it's usefulness (and made of ugly)
Dave Jones 3f1a765
Dave Jones 3f1a765
* Fri Aug 26 2011 Dave Jones <davej@redhat.com>
Dave Jones 0ad4e11
- Drop acpi-ec-add-delay-before-write.patch (rhbz 733690)
Dave Jones 0ad4e11
Josh Boyer 9c44ba9
* Fri Aug 26 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 9c44ba9
- Linux 3.1-rc3-git5
Josh Boyer 9c44ba9
Josh Boyer 2859779
* Thu Aug 25 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 2859779
- Linux 3.1-rc3-git3
Josh Boyer 2859779
Josh Boyer 04d46b9
* Wed Aug 24 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 04d46b9
- Revert 'iwlwifi: advertise max aggregate size'. (rhbz 708747)
Josh Boyer 04d46b9
Josh Boyer 0b3ccf1
* Mon Aug 22 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer d20ff5e
- Linux 3.1-rc3
Josh Boyer d20ff5e
- Add patch to fix duplicate backlight registration (rhbz 732202)
Josh Boyer d20ff5e
Josh Boyer d20ff5e
* Mon Aug 22 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 0b3ccf1
- Linux 3.1-rc2-git9
Josh Boyer 0b3ccf1
Josh Boyer 7252f6d
* Sat Aug 20 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 7252f6d
- Linux 3.1-rc2-git8
Josh Boyer 7252f6d
Josh Boyer 0ad3713
* Sat Aug 20 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 0ad3713
- Linux 3.1-rc2-git7
Josh Boyer 0ad3713
- Add a provides/obsoletes for cpupowerutils-devel
Josh Boyer 0ad3713
Josh Boyer c3c2b77
* Fri Aug 19 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 7aac3eb
- Add patch from upstream to fix 64-bit divide error in btrfs
Josh Boyer 7aac3eb
Josh Boyer 7aac3eb
* Fri Aug 19 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer c3c2b77
- Linux 3.1-rc2-git5
Josh Boyer c3c2b77
- Change XHCI to builtin (rhbz 731706)
Josh Boyer c3c2b77
- Add patch to fix race between cryptd and aesni (rhbz 721002)
Josh Boyer c3c2b77
Josh Boyer 5106c63
* Thu Aug 18 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 02587b4
- Adjust provides/obsoletes to replace the cpupowerutils package
Josh Boyer 02587b4
Josh Boyer 02587b4
* Thu Aug 18 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 5106c63
- Add patch to fix perf build against rawhide glibc
Josh Boyer 5106c63
- Add BR for gettext for cpupower translations
Josh Boyer 5106c63
Josh Boyer 8addb5f
* Wed Aug 17 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 69fc02b
- Linux 3.1-rc2-git4
Josh Boyer 8addb5f
- Create the kernel-tools subpackages based on a start by davej
Josh Boyer 8addb5f
Dave Jones 1d18ad9
* Tue Aug 16 2011 Dave Jones <davej@redhat.com>
Dave Jones 1d18ad9
- Prepare for packaging more of tools/ by renaming 'perf' subpackage
Dave Jones 1d18ad9
  to kernel-tools
Dave Jones 1d18ad9
986a9f3
* Tue Aug 16 2011 Dennis Gilmore <dennis@ausil.us>
986a9f3
+- add config for arm tegra devices
986a9f3
+- setup kernel to build omap image (patch from David Marlin)
986a9f3
+- setup kernel to build tegra image based on omap work
986a9f3
+- add arm device tree patches
986a9f3
Josh Boyer 8ffa0af
* Tue Aug 16 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 8ffa0af
- Bring ARM config changes from David Marlin forward
Josh Boyer bc12142
- Sync a handful of patches from f16
Josh Boyer 8ffa0af
Josh Boyer 6920e17
* Mon Aug 15 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 6920e17
- Linux-3.1-rc2
Josh Boyer 6920e17
- Replace trial patch for rhbz 726877 with a better fix
Josh Boyer 6920e17
Josh Boyer c1aa9d7
* Thu Aug 11 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer f1b16b1
- Linux-3.1-rc1-git6
Josh Boyer f1b16b1
- Make ide_pmac a module (rhbz 730039)
Josh Boyer f1b16b1
Josh Boyer f1b16b1
* Thu Aug 11 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer c1aa9d7
- Linux-3.1-rc1-git3
Josh Boyer c1aa9d7
Josh Boyer 3922dda
* Wed Aug 10 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer d71f188
- Make sure all the config-* files are in Sources
Josh Boyer d71f188
Josh Boyer d71f188
* Wed Aug 10 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 3922dda
- Linux-3.1-rc1-git2
Josh Boyer 3922dda
Dave Jones b4b8a81
* Tue Aug 09 2011 Dave Jones <davej@redhat.com>
Dave Jones 18192bc
- ptrace_report_syscall: check if TIF_SYSCALL_EMU is defined
Dave Jones 18192bc
Dave Jones 18192bc
* Tue Aug 09 2011 Dave Jones <davej@redhat.com>
Dave Jones b4b8a81
- Enable CONFIG_SAMSUNG_LAPTOP (rhbz 729363)
Dave Jones b4b8a81
Josh Boyer 740de53
* Mon Aug 08 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 557f2a4
- Linux-3.1-rc1-git1
Josh Boyer 557f2a4
Josh Boyer 557f2a4
* Mon Aug 08 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 740de53
- Linux-3.1-rc1
Josh Boyer 740de53
- Adjust Makefile munging for new 3.x numbering scheme
Josh Boyer 740de53
Dave Jones 84f976b
* Fri Aug 05 2011 Dave Jones <davej@redhat.com>
Dave Jones 84f976b
- Deselect CONFIG_DECNET. Unmaintained, and rubbish.
Dave Jones 84f976b
Josh Boyer fac491b
* Fri Aug 05 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer fac491b
- Linux-3.0-git21
Josh Boyer fac491b
Dave Jones 6d621fb
* Thu Aug 04 2011 Dave Jones <davej@redhat.com>
Dave Jones 6d621fb
- Drop neuter_intel_microcode_load.patch (rhbz 690930)
Dave Jones 6d621fb
Josh Boyer 8e3ae98
* Thu Aug 04 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 8e3ae98
- Linux 3.0-git19
Josh Boyer 8e3ae98
- Add patch to fix epoll backtrace (rhbz 722472)
Josh Boyer 8e3ae98
- Add trial patch to fix rhbz 726877
Josh Boyer 8e3ae98
Dave Jones 1aa2339
* Wed Aug 03 2011 Dave Jones <davej@redhat.com>
Dave Jones 1aa2339
- Re-apply the rebased utrace
Dave Jones 1aa2339
John W. Linville 7e3f828
* Wed Aug 03 2011 John W. Linville <linville@redhat.com>
John W. Linville 7e3f828
- Disable CONFIG_BCMA since no driver currently uses it (rhbz 727796)
John W. Linville 7e3f828
Dave Jones f52a0de
* Tue Aug 02 2011 Dave Jones <davej@redhat.com>
Dave Jones f52a0de
- Change USB_SERIAL_OPTION back to modular. (rhbz 727680)
Dave Jones f52a0de
Josh Boyer 5025007
* Tue Aug 02 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer c205779
- Linux 3.0-git17
Josh Boyer c205779
- Add patch to fix backtrace in cdc_ncm driver (rhbz 720128)
Josh Boyer c205779
- Add patch to fix backtrace in usm-realtek driver (rhbz 720054)
Josh Boyer c205779
- Add change from Yanko Kaneti to get the rt2x00 drivers in modules.networking
Josh Boyer c205779
  (rhbz 708314)
Josh Boyer c205779
Josh Boyer c205779
* Tue Aug 02 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 5025007
- Linux 3.0-git16
Josh Boyer 5025007
Josh Boyer 3575ffb
* Mon Aug 01 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 3575ffb
- Linux 3.0-git14
Josh Boyer 3575ffb
Josh Boyer 0b39172
* Sat Jul 30 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 0b39172
- Linux 3.0-git12
Josh Boyer 0b39172
Josh Boyer 37a65c7
* Fri Jul 29 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 9e4aeab
- Adjust Makefile sedding to account for 3.x release style
Josh Boyer 9e4aeab
Josh Boyer 9e4aeab
* Fri Jul 29 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 37a65c7
- Linux 3.0-git11
Josh Boyer 37a65c7
- Backport patch to correct udlfb removal events (rhbz 726163)
Josh Boyer 37a65c7
Dave Jones 4e3ef44
* Thu Jul 28 2011 Dave Jones <davej@redhat.com>
Dave Jones 4e3ef44
- module-init-tools needs to be a prereq not a conflict.
Dave Jones 4e3ef44
Josh Boyer 35ffdcd
* Wed Jul 27 2011 Josh Boyer <jwboyer@redhat.com>
Josh Boyer 35ffdcd
- Linux 3.0-git9
Josh Boyer 35ffdcd
- Move CONFIG_JUMP_LABEL to config-generic now that powerpc has it too
Josh Boyer 35ffdcd
Kyle McMartin 4a20417
* Mon Jul 25 2011 Kyle McMartin <kmcmartin@redhat.com>
Kyle McMartin 4a20417
- Linux 3.0-git3
Kyle McMartin 4a20417
- Drop hda_intel-prealloc-4mb-dmabuffer.patch, set new
Kyle McMartin 4a20417
  CONFIG_SND_HDA_PREALLOC_SIZE=4096 for similar effect.
Kyle McMartin 4a20417
Dave Jones 524b8cb
* Fri Jul 22 2011 Dave Jones <davej@redhat.com>
Dave Jones 524b8cb
- bootwrapper needs objcopy. Add it to requires: (wwoods)
Dave Jones 524b8cb
Kyle McMartin e8ba2bf
* Fri Jul 22 2011 Kyle McMartin <kmcmartin@redhat.com> 3.0.0-1
Kyle McMartin e8ba2bf
- Linux 3.0, but really 3.0.0 (sigh)
Kyle McMartin e8ba2bf
Chuck Ebbert bfe3407
* Thu Jul 21 2011 Chuck Ebbert <cebbert@redhat.com>  3.0-0.rc7.git10.1
Chuck Ebbert bfe3407
- 3.0-rc7-git10
Chuck Ebbert e2a36ba
- Use ext4 for ext2 and ext3 filesystems (CONFIG_EXT4_USE_FOR_EXT23=y)
Chuck Ebbert e2a36ba
Dave Jones 441b0a7
* Thu Jul 21 2011 Dave Jones <davej@redhat.com>
Dave Jones 441b0a7
- Switch BLK_DEV_RAM to be modular (rhbz 720833)
Dave Jones 441b0a7
Chuck Ebbert 826713d
* Wed Jul 20 2011 Chuck Ebbert <cebbert@redhat.com> 3.0-0.rc7.git8.1
Chuck Ebbert 826713d
- 3.0-rc7-git8
Chuck Ebbert 826713d
Dave Jones 5ac3ec1
* Fri Jul 15 2011 Dave Jones <davej@redhat.com> 3.0-0.rc7.git3.1
Dave Jones 5ac3ec1
- 3.0-rc7-git3
Dave Jones 5ac3ec1
Dave Jones 5a67442
* Fri Jul 15 2011 Dave Jones <davej@redhat.com>
Dave Jones 5a67442
- Bring back utrace until uprobes gets merged upstream.
Dave Jones 5a67442
Kyle McMartin cdb2917
* Wed Jul 13 2011 Kyle McMartin <kmcmartin@redhat.com> 3.0-0.rc7.git1.1
Kyle McMartin cdb2917
- Update to snapshot 3.0-rc7-git1 for intel drm fixes.
Kyle McMartin cdb2917
John W. Linville b054bb0
* Tue Jul 12 2011 John W. Linville <linville@redhat.com>
John W. Linville 5274cf8
- zd1211rw: fix invalid signal values from device (rhbz 720093)
John W. Linville 5274cf8
John W. Linville 5274cf8
* Tue Jul 12 2011 John W. Linville <linville@redhat.com>
John W. Linville b054bb0
- rt2x00: Add device ID for RT539F device. (rhbz 720594)
John W. Linville b054bb0
Kyle McMartin a6b4f0c
* Tue Jul 12 2011 Kyle McMartin <kmcmartin@redhat.com> 3.0-0.rc7.git0.1
Kyle McMartin a6b4f0c
- Linux 3.0-rc7, hopefully the last before the Great Renumbering becomes
Kyle McMartin a6b4f0c
  official.
Kyle McMartin a6b4f0c
Dave Jones d74412c
* Mon Jul 11 2011 Dave Jones <davej@redhat.com>
Dave Jones d74412c
- Change BINFMT_MISC to be modular. (rhbz 695415)
Dave Jones d74412c
Kyle McMartin e04b212
* Sun Jul 10 2011 Kyle McMartin <kmcmartin@redhat.com> 3.0-0.rc6.git6.1
Kyle McMartin e04b212
- Linux 3.0-rc6-git6
Kyle McMartin e04b212
- iwlagn-fix-dma-direction.patch: drop.
Kyle McMartin e04b212
- Revert CONFIG_X86_RESERVE_LOW=640, it breaks booting on x86_64.
Kyle McMartin e04b212
Dave Jones 75d6a46
* Thu Jul 07 2011 Dave Jones <davej@redhat.com>
Dave Jones 75d6a46
- Centralise CPU_FREQ options into config-generic.
Dave Jones 75d6a46
  Switch to using ondemand by default. (rhbz 713572)
Dave Jones 75d6a46
Chuck Ebbert c2cf2cf
* Wed Jul 06 2011 Chuck Ebbert <cebbert@redhat.com>
Chuck Ebbert c2cf2cf
- Set CONFIG_X86_RESERVE_LOW=640 as requested by mjg
Chuck Ebbert c2cf2cf
Kyle McMartin 99ca089
* Mon Jul 04 2011 Kyle McMartin <kmcmartin@redhat.com> 3.0-0.rc6.git0.1
Kyle McMartin 99ca089
- Linux 3.0-rc6
Kyle McMartin 99ca089
- [generic] SCSI_ISCI=m, because why not
Kyle McMartin 99ca089
Kyle McMartin d2e2953
* Sat Jul 02 2011 Kyle McMartin <kmcmartin@redhat.com> 3.0-0.rc5.git5.1
Kyle McMartin d2e2953
- Linux 3.0-rc5-git5
Kyle McMartin d2e2953
Kyle McMartin 631520c
* Mon Jun 27 2011 Kyle McMartin <kmcmartin@redhat.com> 3.0-0.rc5.git0.1
Kyle McMartin 631520c
- Linux 3.0-rc5
Kyle McMartin 631520c
Dave Jones 4e11b0f
* Mon Jun 27 2011 Dave Jones <davej@redhat.com>
Dave Jones 4e11b0f
- Disable CONFIG_CRYPTO_MANAGER_DISABLE_TESTS, as this also disables FIPS (rhbz 716942)
Dave Jones 4e11b0f
Kyle McMartin 472d463
* Thu Jun 23 2011 Kyle McMartin <kmcmartin@redhat.com> 3.0-0.rc4.git3.1
Kyle McMartin 472d463
- Linux 3.0-rc4-git3
Kyle McMartin 472d463
- Drop linux-3.0-fix-uts-release.patch, and instead just perl the Makefile
Kyle McMartin 472d463
- linux-2.6-silence-noise.patch: fix context
Kyle McMartin 4cc6bd7
- iwlagn-fix-dma-direction.patch: fix DMAR errors (for me at least)
Kyle McMartin 472d463
Kyle McMartin 761d1c0
* Wed Jun 22 2011 Kyle McMartin <kmcmartin@redhat.com> 3.0-0.rc4.git0.2
Kyle McMartin 761d1c0
- Re-enable debuginfo generation. Thanks to Richard Jones for noticing... no
Kyle McMartin 761d1c0
  wonder builds had been so quick lately.
Kyle McMartin 761d1c0
Kyle McMartin e2875c5
* Tue Jun 21 2011 Kyle McMartin <kmcmartin@redhat.com> 3.0-0.rc4.git0.1
Kyle McMartin e2875c5
- Linux 3.0-rc4 (getting closer...)
Kyle McMartin e2875c5
Kyle McMartin 11b539c
* Fri Jun 17 2011 Kyle McMartin <kmcmartin@redhat.com> 3.0-0.rc3.git6.1
Kyle McMartin 11b539c
- Update to 3.0-rc3-git6
Kyle McMartin 11b539c
Dave Jones 975b375
* Fri Jun 17 2011 Dave Jones <davej@redhat.com>
Dave Jones 975b375
- drop qcserial 'compile fix' that was just duplicating an include.
Dave Jones 3e54430
- drop struct sizeof debug patch. (no real value. not upstreamable)
Dave Jones 27d8829
- drop linux-2.6-debug-always-inline-kzalloc.patch.
Dave Jones 27d8829
  Can't recall why this was added. Can easily re-add if deemed necessary.
Dave Jones 975b375
Kyle McMartin 6491f55
* Fri Jun 17 2011 Kyle McMartin <kmcmartin@redhat.com>
Kyle McMartin 6491f55
- linux-2.6-defaults-pci_no_msi.patch: drop, haven't toggled the default
Kyle McMartin 6491f55
  in many moons.
Kyle McMartin f9204b5
- linux-2.6-defaults-pci_use_crs.patch: ditto.
Kyle McMartin 7918b0c
- linux-2.6-selinux-mprotect-checks.patch: upstream a while ago.
Kyle McMartin 55e809c
- drm-i915-gen4-has-non-power-of-two-strides.patch: drop buggy bugfix
Kyle McMartin 7918b0c
- drop some more unapplied crud.
Kyle McMartin a71a059
- We haven't applied firewire patches in a dogs age.
Kyle McMartin 6491f55
Kyle McMartin a8a2918
* Fri Jun 17 2011 Kyle McMartin <kmcmartin@redhat.com> 3.0-0.rc3.git5.1
Kyle McMartin a8a2918
- Try updating to a git snapshot for the first time in 3.0-rc,
Kyle McMartin a8a2918
  update to 3.0-rc3-git5
Kyle McMartin a8a2918
- Fix a subtle bug I introduced in 3.0-rc1, "patch-3." is 9 letters, not 10.
Kyle McMartin a8a2918
Kyle McMartin ff5dfe2
* Thu Jun 16 2011 Kyle McMartin <kmcmartin@redhat.com>
Kyle McMartin ff5dfe2
- Disable mm patches which had been submitted against 2.6.39, as Rik reports
Kyle McMartin ff5dfe2
  they seem to aggravate a VM_BUG_ON. More investigation is necessary.
Kyle McMartin ff5dfe2
Kyle McMartin 64e35b5
* Wed Jun 15 2011 Kyle McMartin <kmcmartin@redhat.com>
Kyle McMartin 930d409
- Conflict with pre-3.2.1-5 versions of mdadm. (#710646)
Kyle McMartin 930d409
Kyle McMartin 930d409
* Wed Jun 15 2011 Kyle McMartin <kmcmartin@redhat.com>
Kyle McMartin 64e35b5
- Build in aesni-intel on i686 for symmetry with 64-bit.
Kyle McMartin 64e35b5
Kyle McMartin 1d8e347
* Tue Jun 14 2011 Kyle McMartin <kmcmartin@redhat.com> 3.0-0.rc3.git0.3
Kyle McMartin 1d8e347
- Fix libdm conflict (whose bright idea was it to give subpackages differing
Kyle McMartin 1d8e347
  version numbers?)
Kyle McMartin 1d8e347
Kyle McMartin 61c4903
* Tue Jun 14 2011 Kyle McMartin <kmcmartin@redhat.com>
Kyle McMartin 61c4903
- Update to 3.0-rc3, add another conflicts to deal with 2 digit
Kyle McMartin 61c4903
  versions (libdm.)
Kyle McMartin 61c4903
- Simplify linux-3.0-fix-uts-release.patch now that SUBLEVEL is optional.
Kyle McMartin 61c4903
- revert-ftrace-remove-unnecessary-disabling-of-irqs.patch: drop upstreamed
Kyle McMartin 61c4903
  patch.
Kyle McMartin 61c4903
- drm-intel-eeebox-eb1007-quirk.patch: ditto.
Kyle McMartin 61c4903
- ath5k-disable-fast-channel-switching-by-default.patch: ditto.
Kyle McMartin 61c4903
Kyle McMartin 33b31a1
* Thu Jun 09 2011 Kyle McMartin <kmcmartin@redhat.com>
Kyle McMartin 33b31a1
- ath5k-disable-fast-channel-switching-by-default.patch (rhbz#709122)
Kyle McMartin 33b31a1
  (korgbz#34992) [a99168ee in wireless-next]
Kyle McMartin 33b31a1
Kyle McMartin 490bb4b
* Thu Jun 09 2011 Kyle McMartin <kmcmartin@redhat.com> 3.0-0.rc2.git0.2
Kyle McMartin 490bb4b
- rhbz#710921: revert-ftrace-remove-unnecessary-disabling-of-irqs.patch
Kyle McMartin 490bb4b
Kyle McMartin 99b6793
* Wed Jun 08 2011 Kyle McMartin <kmcmartin@redhat.com> 3.0-0.rc2.git0.1
Kyle McMartin 99b6793
- Update to 3.0-rc2, rebase utsname fix.
Kyle McMartin 99b6793
- Build IPv6 into the kernel for a variety of reasons
Kyle McMartin 99b6793
  (http://lists.fedoraproject.org/pipermail/kernel/2011-June/003105.html)
Kyle McMartin 99b6793
Kyle McMartin 9303275
* Mon Jun 06 2011 Kyle McMartin <kmcmartin@redhat.com> 3.0-0.rc1.git0.3
Kyle McMartin 9303275
- Conflict with module-init-tools older than 3.13 to ensure the
Kyle McMartin 9303275
  3.0 transition is handled correctly.
Kyle McMartin 9303275
Kyle McMartin 911cdc5
* Wed Jun 01 2011 Kyle McMartin <kmcmartin@redhat.com> 3.0-0.rc1.git0.2
Kyle McMartin 911cdc5
- Fix utsname for 3.0-rc1
Kyle McMartin 911cdc5
Kyle McMartin 90ed1a9
* Mon May 30 2011 Kyle McMartin <kmcmartin@redhat.com> 3.0-0.rc1.git0.1
Kyle McMartin 90ed1a9
- Linux 3.0-rc1 (won't build until module-init-tools gets an update.)
Kyle McMartin 1d83b4a
Kyle McMartin 90ed1a9
* Mon May 30 2011 Kyle McMartin <kyle@redhat.com>
Kyle McMartin db49e9e
- Trimmed changelog, see fedpkg git for earlier history.
Jesse Keating 7a32965
Jesse Keating 7a32965
###
Jesse Keating 7a32965
# The following Emacs magic makes C-c C-e use UTC dates.
Jesse Keating 7a32965
# Local Variables:
Jesse Keating 7a32965
# rpm-change-log-uses-utc: t
Jesse Keating 7a32965
# End:
Jesse Keating 7a32965
###