I've been installing kernels from mainline repository - all simple there, just *.deb files, one can do simple dpkg -i on them. But how can one apply the patches 0001-base-packaging.patch , 0002-debian-changelog.patch, 0003-configs-based-on-Ubuntu-4.4.0-0.10.patch manually ?
Asked
Active
Viewed 3.5k times
8
Sergiy Kolodyazhnyy
- 107,582
1 Answers
12
As stated in README at mainline:
These binary packages represent builds of the mainline or stable Linux kernel tree at the commit below:
v4.4 (afd2ff9b7e1b367172f18ba7f693dfb62bdcb2dc)To obtain the source from which they are built fetch the commit below:
git://git.launchpad.net/~ubuntu-kernel-test/ubuntu/+source/linux/+git/mainline-crack v4.4and apply the following patches on top in the order below:
0001-base-packaging.patch 0002-debian-changelog.patch 0003-configs-based-on-Ubuntu-4.4.0-0.10.patch
This means that you need to apply those patches only if you are building your kernel from source and not from *.deb.
In case if you are building it from source, then these are the steps you need to follow:
Install these packages:
sudo apt-get install git build-essential kernel-package fakeroot libncurses5-devGet the source code:
mkdir anyname; cd anyname git clone git://git.launchpad.net/~ubuntu-kernel-test/ubuntu/+source/linux/+git/mainline-crack v4.4Copy the patches files.
Change to kernel directory:
cd v4.4Make any custom changes.
Apply patches:
patch -p1 < ~/anyname/0001-base-packaging.patch patch -p1 < ~/anyname/0002-debian-changelog.patch patch -p1 < ~/anyname/0003-configs-based-on-Ubuntu-4.4.0-0.10.patchMake:
cp /boot/config-`uname -r` .config gedit .config make oldconfig make menuconfig make clean make -j `getconf _NPROCESSORS_ONLN` deb-pkg LOCALVERSION=-customInstall generated deb:
sudo dpkg -i ../*.debUpdate
GRUBand reboot:sudo update-grub; sudo reboot
Raphael
- 8,135