linux/debian
Ben Hutchings 45a3bb5a44 [x86] efi: Make "noefi" really disable EFI runtime serivces
svn path=/dists/sid/linux/; revision=19840
2013-02-23 05:54:19 +00:00
..
abi/3.2.0-4 Update ABI files for 3.2.0-4 2012-11-11 16:00:50 +00:00
bin Add script to edit changelog for stable updates 2012-11-18 01:30:08 +00:00
config Ignore ABI changes in 3.2.38 for symbols not expected to be used OOT 2013-02-17 23:41:17 +00:00
installer udeb: Add alx to nic-extra-modules 2013-02-20 15:17:39 +00:00
lib/python/debian_linux Support build-arch and build-indep make targets 2012-06-14 14:39:30 +00:00
patches [x86] efi: Make "noefi" really disable EFI runtime serivces 2013-02-23 05:54:19 +00:00
po Update Czech debconf template translations (Michal Simunek) (Closes: #679674) 2012-07-03 05:25:56 +00:00
source Use xz compression for upstream and Debian tarballs 2012-06-08 12:34:48 +00:00
templates Bump python build-dep, needed since the switch from local SortedDict to collections.OrderedDict (new in version 2.7). 2013-01-19 21:44:42 +00:00
README.Debian linux-image, README.Debian: Suggest debian-kernel-handbook package 2012-06-24 22:09:43 +00:00
README.source README.source: Correct name of main patch series file 2012-07-01 13:34:49 +00:00
changelog [x86] efi: Make "noefi" really disable EFI runtime serivces 2013-02-23 05:54:19 +00:00
compat * debian/changelog: Update. 2009-03-17 18:51:02 +00:00
copyright debian/copyright: Add explanation of indirect linking of perf to OpenSSL (Closes: #606520) 2010-12-11 21:26:34 +00:00
rules Explicitly set QUILT_PC when invoking quilt 2012-07-09 13:42:47 +00:00
rules.defs * Use generated rules, effectively remove second flavour resolver. 2005-08-14 19:59:43 +00:00
rules.real linux-image-dbg: Add symlinks to vmlinux from the locations expected by kdump-tools (Closes: #700418), systemtap and others 2013-02-23 04:49:21 +00:00

README.source

Updating the upstream source
============================

1) You can use either:
   a) a git repository of the kernel source
   b) a kernel tarball from kernel.org (e.g. linux-3.4.tar.bz2)
      and, optionally, a patch (e.g. patch-3.5-rc1.bz2).

2) Run ./debian/bin/genorig.py <repository>
   or  ./debian/bin/genorig.py <tarball> [patch]
   This will produce ../orig/linux_<version>.orig.tar.gz
   (e.g. linux_3.5~rc1.orig.tar.gz).

   (genorig.py requires the python and unifdef packages to be
    installed)

3) Unpack linux_<version>.orig.tar.gz, cd into the new directory,
   and do a 'svn export' to get the debian/ subdirectory.
   Alternatively unpack using "make -f debian/rules orig".

   (the orig target of the Makefiles requires rsync)

Applying patches to the Debian kernel tree
==========================================

The Debian kernel packaging uses the quilt patch system, but with
multiple series to allow for featuresets.

Patches are stored below debian/patches, loosely sorted in bugfix/,
features/ and debian/. Patches are in the standard kernel patch
format (unified diff to be applied with patch -p1) and generally have
DEP-3 headers.

The series file 'series' is used for all configurations and a series
file 'series-<featureset>' is used for each optional featureset.

If you want to generate a source tree with all patches applied, run
make -f debian/rules source

The resulting source can be found below debian/build.

Kernel config files
===================
Configuration files are constructed dynamically from a number of config
files, as listed in debian/config/<arch>/defines.

Control file
============
The master control file debian/control must be generated before
the package is uploaded. debian/rules contains the debian/control 
target, which generates the control file by invoking the 
debian/bin/gencontrol.py script, which combines the templates from
the templates directory and architecture-specific defines file to
produce the debian/control file. Note that this target is intentionally
made to fail with a non-zero exit code to make sure that it is never
run during an automatic build. The following variables are substituted
into the templates:

@version@      Upstream kernel version, for example 2.6.11.
@arch@         The Debian arch name, such as powerpc or i386.
@flavour@      The build flavour, such as 686 or k7-smp.
@class@        The CPU/architecture class; displayed in synopsis.  It should
               be fairly short, as the synopsis is supposed to be <80 chars.
               It should be in the form "foo class", and will show up in the
	       description as "foo class machines".
@longclass@    The CPU/architecture class; displayed in the extended
               description.  The same rules apply as in @class@.  If
	       this is unset, it will default to @class@.
@desc@         (Potentially) multi-line verbiage that's appended to
               -image descriptions.
@abiname@      Current abiname, a single digit.

Normally, the arch-specific contents should be controlled by
adjusting the corresponding defines file.

TODO:
- Patches applied to the upstream source
- How to define a flavour
- More detail on generation of debian/control and configs