CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
476986b6227f11fd934f5f694a8038dbc67fc3ff
[kernel/raspberrypi2.git] / README
1 Crux-arm RaspberryPi2 Linux Kernel
2
3 NOTE: This README is wip. Some instructions are either vague or missing.
4
5 upstream sources:
6 https://www.kernel.org/pub/linux/kernel/v4.x
7 git://git.kernel.org/pub/scm/linux/kernel/git/statble/linux-stable.git
8 https://github.com/raspberrypi/linux
9
10 Type make or make all to build kernel image, the device tree files/overlays,
11 modules and related files. You may also find some of the other targets useful;
12 either for rebuilding only a certain target or possibly downloading files for
13 later offline build. These currently include:
14
15 all: build all targets
16 clean: clean out built files/directories
17 distclean: clean, plus remove even downloaded files also
18 files: download all remote files
19 config: unpatch the kernel and copy the default config into the kernel tree
20 image: build zImage and rpi2 prep'd kernel image files
21 dtb: build device tree database/overlay files, tarball
22 modules: build kernel modules, tarball
23 menuconfig: run menuconfig for kernel, starting with default kernel config
24
25 For booting the kernel, you will also need to download these addition files:
26 bootcode.bin: https://github.com/raspberrypi/firmware/raw/master/boot/bootcode.bin
27 start.elf: https://github.com/raspberrypi/firmware/raw/master/boot/start.elf
28
29 Sd card layout:
30
31 first partition, boot (fat32):
32 kernel-$version.img, System.map-$version, bootcode.bin, start.elf, config.txt, cmdline.txt
33 Untar the dtb tarball (dtb-$version.tar.*) to the boot partition.
34
35 second partition, root (ext{2,3,4}, xfs, btrfs, etc):
36 Untar the modules tarball (modules-$version.tar.*) to the root partition.
37 Untar all the package files created by crossrootfs and raspberrypi2-arm to
38 the root partition.
39
40 Generating the kernel patch:
41
42 This is a stripped down description of how I generated the kernel patch.
43 It is based on how I thought it might have been done by Alpine Linux for
44 there raspberrypi kernel.
45
46 git clone -b rpi-4.5.y https://github.com/raspberrypi/linux.git linux-rpi
47 cd linux-rpi
48 git remote add -b linux-4.5.y stable-4.5 \
49 git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
50 git pull stable-4.5
51 git diff linux-4.5.y..rpi-4.5.y > ../linux-4.5.y-rpi-$(date +%Y%m%d).patch