several cosmetic changes
[kernel-bfs] / kernel-bfs-2.6.28 / debian / README.Debian
1 Extended kernel-sources for Nokia N900
2 + Con Kolivas' BFS CPU scheduler
3 --------------------------------------
4
5 * Downloading the sources:
6
7  apt-get source kernel-bfs
8
9 * Building the kernel packages:
10
11  DEB_BUILD_OPTIONS="parallel=2" dpkg-buildpackage -r"fakeroot -u" -uc -us -nc
12
13 * Creating new kernel sources:
14
15  dpkg-buildpackage -sa -S
16
17 * Modifying the kernel configuration:
18
19 in the kernel top directory do:
20  cp debian/rx51-bfs_defconfig .config
21  make menuconfig
22  cp .config debian/rx51-bfs_defconfig
23  make mrproper
24 and the rebuild it again
25
26 * Creating new patches:
27
28 This package uses quilt to maintain patches.
29
30  export QUILT_PATCHES=debian/patches
31
32 then before modifying your kernel: 
33  quilt push -a
34
35 starting a new patch:
36  quilt new mypatch.diff
37
38 either:
39  quilt add file...  (files you plan to modify)
40 and edit the files
41
42 or:
43  quilt fold < patch.diff (if you have a patch)
44
45 finally:
46  quilt refresh --no-timestamps --no-index
47 to create or update your patch
48
49 For more details read the quilt documentation.
50
51 Thomas Tanner <maemo@tannerlab.com>
52 Adapted to kernel-bfs by the kernel-bfs team