Go to file
2013-05-09 15:34:59 -04:00
scripts
.gitignore
0001-kmsg-Honor-dmesg_restrict-sysctl-on-dev-kmsg.patch Fix dmesg_restrict patch to avoid regression (rhbz 952655) 2013-05-07 12:34:53 -04:00
0001-Revert-drm-i915-revert-eDP-bpp-clamping-code-changes.patch Linux v3.9-9409-g8665218 2013-05-03 21:20:16 -04:00
acpi-sony-nonvs-blacklist.patch
acpi-video-dos.patch
arm-export-read_current_timer.patch
arm-lpae-ax88796.patch
arm-tegra-fixclk.patch
arm-tegra-sdhci-module-fix.patch Update ARM config 2013-05-05 23:55:35 +01:00
arm-tegra-usb-no-reset-linux33.patch
ath9k_rx_dma_stop_check.patch
compile-fixes.patch
config-armv7 Linux v3.9-12070-g8cbc95e 2013-05-09 15:34:59 -04:00
config-armv7-generic Enable DMA for ARM sound drivers 2013-05-09 11:29:12 +01:00
config-armv7-lpae Enable TPS65217 (am33xx) and EC on ChromeOS devices 2013-05-06 22:09:55 +01:00
config-debug Linux v3.9-5165-g5f56886 2013-05-01 08:35:03 -04:00
config-generic Linux v3.9-11789-ge0fd9af 2013-05-08 20:53:09 -04:00
config-i686-PAE
config-local
config-nodebug Linux v3.9-5165-g5f56886 2013-05-01 08:35:03 -04:00
config-powerpc32-generic
config-powerpc32-smp
config-powerpc64 Linux v3.9-10518-gd7ab730 2013-05-06 08:25:04 -04:00
config-powerpc64p7 Linux v3.9-10518-gd7ab730 2013-05-06 08:25:04 -04:00
config-powerpc-generic Linux v3.9-8153-g5a148af 2013-05-02 15:42:10 -04:00
config-s390x
config-x86_64-generic Linux v3.9-8933-gce85722 2013-05-03 13:32:30 -04:00
config-x86-32-generic
config-x86-generic Linux v3.9-10518-gd7ab730 2013-05-06 08:25:04 -04:00
cpupower.config
cpupower.service
crash-driver.patch
criu-no-expert.patch
debug-bad-pte-dmi.patch
debug-bad-pte-modules.patch Linux v3.9-4516-gc9ef713 2013-04-30 14:08:17 -04:00
defaults-acpi-video.patch
devel-pekey-secure-boot-20130502.patch Linux v3.9-7391-g20b4fb4 2013-05-02 08:19:10 -04:00
die-floppy-die.patch
disable-i8042-check-on-apple-mac.patch
drm-edid-try-harder-to-fix-up-broken-headers.patch
drm-i915-dp-stfu.patch Linux v3.9-8933-gce85722 2013-05-03 13:32:30 -04:00
drm-intel-next.patch
drm-vgem.patch
efi-dont-map-boot-services-on-32bit.patch
fix-child-thread-introspection.patch
fs-proc-devtree-remove_proc_entry.patch
hibernate-freeze-filesystems.patch
input-kill-stupid-messages.patch
kernel.spec Linux v3.9-12070-g8cbc95e 2013-05-09 15:34:59 -04:00
lis3-improve-handling-of-null-rate.patch
Makefile
makefile-after_link.patch
Makefile.config ARM 3.10 merge and general cleanup, Drop dedicated tegra kernel as now Multiplatform enabled, Enable Tegra and UX500 (Snowball) in Multiplatform 2013-05-03 11:21:48 +01:00
Makefile.release Linux v3.9-5165-g5f56886 2013-05-01 08:35:03 -04:00
merge.pl
mod-extra.list
mod-extra.sh
mod-sign.sh
no-pcspkr-modalias.patch
PatchList.txt
README.txt
rebase-notes.txt
scsi-sd_revalidate_disk-prevent-NULL-ptr-deref.patch
secure-boot-20130218.patch
selinux-apply-different-permission-to-ptrace-child.patch
serial-460800.patch
silence-acpi-blacklist.patch
silence-fbcon-logo.patch
silence-noise.patch
sources Linux v3.9-12070-g8cbc95e 2013-05-09 15:34:59 -04:00
taint-vbox.patch
tglx.patch Add clockevents oops fix 2013-05-08 11:47:36 -04:00
TODO
upstream-reverts.patch
v4l-dvb-experimental.patch
v4l-dvb-fixes.patch
v4l-dvb-update.patch
vmbugon-warnon.patch
vt-Drop-K_OFF-for-VC_MUTE.patch
weird-root-dentry-name-debug.patch
x509.genkey

		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.

The heirarchy looks like this..

                           config-generic
                                 |
                         config-x86-generic
                         |                |
             config-x86-32-generic   config-x86-64-generic

An option set in a lower level will override the same option set in one
of the higher levels.


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.