summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2016-01-28 22:42:34 +0000
committerFelix Fietkau <nbd@openwrt.org>2016-01-28 22:42:34 +0000
commitb3f7902a0687dced523f49a0430757ac68f6467d (patch)
treebbccfb88801d3734fc481792abddfd57d01e3411 /config
parentfefe200a00995320e1e04e1c3325eece71b47b92 (diff)
downloadmaster-31e0f0ae-b3f7902a0687dced523f49a0430757ac68f6467d.tar.gz
master-31e0f0ae-b3f7902a0687dced523f49a0430757ac68f6467d.tar.bz2
master-31e0f0ae-b3f7902a0687dced523f49a0430757ac68f6467d.zip
include/kernel: add custom USER/DOMAIN config options
These allow the generated kernel's build metadata to be defined explicitly. This metadata is reported, eg, at boot time and in `uname -a` on running systems. If the variables aren't configured, the current build system username and hostname are used as normal. The motivation for this option is to achive reproducible (bit-for-bit identical) kernel builds of official openwrt releases. Signed-off-by: bryan newbold <bnewbold@robocracy.org> Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 48541
Diffstat (limited to 'config')
-rw-r--r--config/Config-kernel.in16
1 files changed, 16 insertions, 0 deletions
diff --git a/config/Config-kernel.in b/config/Config-kernel.in
index 6e79bae34b..c93bbde511 100644
--- a/config/Config-kernel.in
+++ b/config/Config-kernel.in
@@ -4,6 +4,22 @@
# See /LICENSE for more information.
#
+config KERNEL_BUILD_USER
+ string "Custom Kernel Build User Name"
+ default ""
+ help
+ Sets the Kernel build user string, which for example will be returned
+ by 'uname -a' on running systems.
+ If not set, uses system user at build time.
+
+config KERNEL_BUILD_DOMAIN
+ string "Custom Kernel Build Domain Name"
+ default ""
+ help
+ Sets the Kernel build domain string, which for example will be
+ returned by 'uname -a' on running systems.
+ If not set, uses system hostname at build time.
+
config KERNEL_PRINTK
bool "Enable support for printk"
default y