I don't know really, but doing some searches I found a couple of things that might give a hint. First, this is the search string I used:
- Code: Select all
How can I modify the name when I compile a customized kernel for Debian
There are quite a few results, and I really don't have the tine or interest to look at all of them, but any way, one these 3 might help you .
http://newbiedoc.sourceforge.net/system/kernel-pkg.html5.2. --append-to-version
The first option lets you specify an addition to the kernel version, which then becomes part of the kernel's name. You may use alphanumeric characters, "+" and "." (period or full stop); do not use underscore "_".
Here's the kernel I'm running now:
====
https://stackoverflow.com/questions/28684811/how-to-change-version-string-of-the-kernel=======
The last, but is not Debian, and does not use "make-kpkg", and I am not sure if it can be applied to Linux or Debian, it is somewhat more simple though.
https://www.freebsd.org/doc/handbook/kernelconfig-building.htmlOnce the edits to the custom configuration file have been saved, the source code for the kernel can be compiled using the following steps:
All the steps, are NOT included in this post, but they are really simple, 1 step includes:
Compile the new kernel by specifying the name of the custom kernel configuration file:
- Code: Select all
# make buildkernel KERNCONF=MYKERNEL
=========
There seem to be a lot of results in a search, if none of the above are good enough, there are many more , just go through them until you find one that is suitable for you.