scripts
.gitignore
ALSA-hda-realtek-Add-quirk-for-Mac-Pro-5-1-machines.patch
Makefile
Makefile.config
NFSv4-Further-reduce-the-footprint-of-the-idmapper.patch
NFSv4-Minor-cleanups-for-nfs4_handle_exception-and-n.patch
NFSv4-Rate-limit-the-state-manager-for-lock-reclaim-.patch
NFSv4-Reduce-the-footprint-of-the-idmapper.patch
Platform-fix-samsung-laptop-DMI-identification-for-N.patch
README.txt
TODO
acpi-sony-nonvs-blacklist.patch
add-poll-requested-events.patch
arm-omap-dt-compat.patch
arm-readl.patch
arm-smsc-support-reading-mac-address-from-device-tree.patch
arm-tegra-nvec-kconfig.patch
atl1c_net_next_update-3.3.patch
bcma-brcmsmac-compat.patch
binfmt_elf-fix-PIE-execution-with-random-disabled.patch
bluetooth-use-after-free.patch
config-arm-generic
config-arm-highbank
config-arm-imx
config-arm-kirkwood
config-arm-omap-generic
config-arm-tegra
config-debug
config-generic
config-i686-PAE
config-local
config-nodebug
config-powerpc-generic
config-powerpc32-generic
config-powerpc32-smp
config-powerpc64
config-rhel-generic
config-s390x
config-sparc64-generic
config-x86-32-generic
config-x86-generic
config-x86_64-generic
die-floppy-die.patch
disable-hid-battery.patch
disable-i8042-check-on-apple-mac.patch
dmar-disable-when-ricoh-multifunction.patch
drivers-media-update.patch
drm-i915-dp-stfu.patch
drm-i915-fbc-stfu.patch
drm-intel-crtc-dpms-fix.patch
drm-intel-next.patch
efi-dont-map-boot-services-on-32bit.patch
epoll-limit-paths.patch
ext4-Support-check-none-nocheck-mount-options.patch
fix_xen_guest_on_old_EC2.patch
floppy-drop-disable_hlt-warning.patch
force-version-2.6.patch
genkey
git-linus.diff
hibernate-freeze-filesystems.patch
hugetlb-fix-resv_map-leak-in-error-path.patch
ipw2x00-add-supported-cipher-suites-to-wiphy-initialization.patch
iwlagn-check-for-priv--txq-in-iwlagn_wait_tx_queue_empty.patch
jbd-jbd2-validate-sb-s_first-in-journal_get_superblo.patch
kernel.spec
linux-2.6-32bit-mmap-exec-randomization.patch
linux-2.6-acpi-debug-infinite-loop.patch
linux-2.6-acpi-video-dos.patch
linux-2.6-compile-fixes.patch
linux-2.6-crash-driver.patch
linux-2.6-defaults-acpi-video.patch
linux-2.6-defaults-aspm.patch
linux-2.6-e1000-ich9-montevina.patch
linux-2.6-enable-more-pci-autosuspend.patch
linux-2.6-i386-nx-emulation.patch
linux-2.6-input-kill-stupid-messages.patch
linux-2.6-intel-iommu-igfx.patch
linux-2.6-makefile-after_link.patch
linux-2.6-serial-460800.patch
linux-2.6-silence-acpi-blacklist.patch
linux-2.6-silence-fbcon-logo.patch
linux-2.6-silence-noise.patch
linux-2.6-upstream-reverts.patch
linux-2.6-usb-pci-autosuspend.patch
linux-2.6.30-no-pcspkr-modalias.patch
lis3-improve-handling-of-null-rate.patch
mac80211-fix-rx-key-NULL-ptr-deref-in-promiscuous-mode.patch
macvtap-zerocopy-validate-vector-length.patch
mcelog-rcu-splat.patch
md-dont-delay-reboot-by-1-second-if-no-MD-devices.patch
mm-pmd_read_atomic-fix-32bit-PAE-pmd-walk-vs-pmd_populate-SMP-race-condition.patch
nfs-oops-getacl.patch
nx-emu-remove-cpuinitdata-for-disable_nx-on-x86_32.patch
platform-fix-samsung-brightness-min-max-calculations.patch
quite-apm.patch
rcu-reintroduce-missing-calls.patch
rt2x00_fix_MCU_request_failures.patch
rtl818x-fix-sleeping-function-called-from-invalid-context.patch
shlib_base_randomize.patch
silence-timekeeping-spew.patch
sources
stable-queue.patch
taint-vbox.patch
thp-avoid-atomic64_read-in-pmd_read_atomic-for-32bit-PAE.patch
unhandled-irqs-switch-to-polling.patch
utrace.patch
weird-root-dentry-name-debug.patch
find-provides
merge.pl
README.txt
		Kernel package tips & tricks.
		~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

The kernel is one of the more complicated packages in the distro, and
for the newcomer, some of the voodoo in the spec file can be somewhat scary.
This file attempts to document some of the magic.


Speeding up make prep
---------------------
The kernel is nearly 500MB of source code, and as such, 'make prep'
takes a while. The spec file employs some trickery so that repeated
invocations of make prep don't take as long.  Ordinarily the %prep
phase of a package will delete the tree it is about to untar/patch.
The kernel %prep keeps around an unpatched version of the tree,
and makes a symlink tree clone of that clean tree and than applies
the patches listed in the spec to the symlink tree.
This makes a huge difference if you're doing multiple make preps a day.
As an added bonus, doing a diff between the clean tree and the symlink
tree is slightly faster than it would be doing two proper copies of the tree.


build logs.
-----------
There's a convenience helper script in scripts/grab-logs.sh
that will grab the build logs from koji for the kernel version reported
by make verrel


config heirarchy.
-----------------
Instead of having to maintain a config file for every arch variant we build on,
the kernel spec uses a nested system of configs.  At the top level, is
config-generic. Add options here that should be present in every possible
config on all architectures.
Beneath this are per-arch overrides. For example config-x86-generic add
additional x86 specific options, and also _override_ any options that were
set in config-generic.
There exist two additional overrides, config-debug, and config-nodebug,
which override -generic, and the per-arch overrides. It is documented
further below.

debug options.
--------------
This is a little complicated, as the purpose & meaning of this changes
depending on where we are in the release cycle.
If we are building for a current stable release, 'make release' has
typically been run already, which sets up the following..
- Two builds occur, a 'kernel' and a 'kernel-debug' flavor.
- kernel-debug will get various heavyweight debugging options like
  lockdep etc turned on.

If we are building for rawhide, 'make debug' has been run, which changes
the status quo to:
- We only build one kernel 'kernel'
- The debug options from 'config-debug' are always turned on.
This is done to increase coverage testing, as not many people actually
run kernel-debug.

To add new debug options, add an option to _both_ config-debug and config-nodebug,
and also new stanzas to the Makefile 'debug' and 'release' targets.

Sometimes debug options get added to config-generic, or per-arch overrides
instead of config-[no]debug. In this instance, the options should have no
discernable performance impact, otherwise they belong in the debug files.