T tangi Sep 14, 2013 #1 Hi, I would like to put my name in the kernel. Is there a way to add the author of the kernel compilation like on Linux? Thanks.
Hi, I would like to put my name in the kernel. Is there a way to add the author of the kernel compilation like on Linux? Thanks.
DutchDaemon Administrator Staff member Administrator Moderator Developer Sep 14, 2013 #2 If you put this (which is already present in GENERIC) in the kernel configuration file: Code: options INCLUDE_CONFIG_FILE and include the name of the author in that configuration file in a comment, e.g. Code: # KERNEL AUTHOR Sam Geeque it should be included, and readable using strings. I'm assuming that the entire file is included, including whitespace and comments.
If you put this (which is already present in GENERIC) in the kernel configuration file: Code: options INCLUDE_CONFIG_FILE and include the name of the author in that configuration file in a comment, e.g. Code: # KERNEL AUTHOR Sam Geeque it should be included, and readable using strings. I'm assuming that the entire file is included, including whitespace and comments.
OP T tangi Sep 15, 2013 Thread Starter #3 Thank you so much. I expected that if I set the hostname, the kernel compile will take that too.