Unsolved
1 Message
0
640
March 14th, 2020 20:00
Project Sputnik kernel source
Hi all,
Can anyone point me to a repository for the project sputnik kernel patches? Upstreamed or not, I believe the GPL says they have to make this available as the binaries are distributed. Somehow all I can find is years-old posts about this.
thanks!
No Events found!



Gilbou92
1 Rookie
•
77 Posts
0
May 19th, 2020 04:00
I grab my kernel sources from here :
https://launchpad.net/ubuntu/+source/linux-oem-osp1/5.0.0-1052.57
My current kernel is :
5.0.0-1052-oem-osp1 #57-Ubuntu
When I get a new kernel, I edit the URL to insert the proper kernel number (5.0.0-1052 here) and the build number #57 is added at the end of the URL after a dot
Once you are on this page, you can download the original 5.0.0 sources
And the patch (the diff.gz file)
For the current kernel I download this :
linux-oem-osp1_5.0.0.orig.tar.gz
linux-oem-osp1_5.0.0-1052.57.diff.gz
You decompress the kernel sources into a folder. Decompress the patch and copy the patch inside the kernel folder (where you find the arch folder and other ones)
You apply the patch by doing this :
patch -p1 < patch-file-name.diff
Once done, you have the kernel + patch ready to build
Please try and report to me if you need help.