How to apply kernel patches
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 ?
Solution 1:
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.4
and 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-dev
-
Get the source code:
mkdir anyname; cd anyname git clone git://git.launchpad.net/~ubuntu-kernel-test/ubuntu/+source/linux/+git/mainline-crack v4.4
Copy the patches files.
-
Change to kernel directory:
cd v4.4
Make 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.patch
-
Make:
cp /boot/config-`uname -r` .config gedit .config make oldconfig make menuconfig make clean make -j `getconf _NPROCESSORS_ONLN` deb-pkg LOCALVERSION=-custom
-
Install generated deb:
sudo dpkg -i ../*.deb
-
Update
GRUB
and reboot:sudo update-grub; sudo reboot