diff options
author | Joshua Lock <joshua.g.lock@intel.com> | 2017-05-19 16:53:06 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-05-25 23:59:31 +0100 |
commit | 8da8909b7b0612beb71628bef06b5047608fd27a (patch) | |
tree | 8ad0e99e6c3f0bb64226b40706f0f027164bd41b /meta/classes/kernel.bbclass | |
parent | 415fbfb0cd1bc5129179596ba27ae2362b7de2a4 (diff) | |
download | poky-8da8909b7b0612beb71628bef06b5047608fd27a.tar.gz |
kernel: predefine KBUILD_BUILD_USER and KBUILD_BUILD_HOST
By exporting KBUILD_BUILD_USER with a pre-defined value we improve the
reproducibility of the kernel and remove the requirement for whoami in the
HOSTTOOLS.
KBUILD_BUILD_HOST also helps improve the reproducibility of the kernel.
For more kernel reproducibility options see:
https://lwn.net/Articles/437864/
(From OE-Core rev: a5a14edb5573e33667b63b1e34cb4e19d075e8e8)
Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/kernel.bbclass')
-rw-r--r-- | meta/classes/kernel.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index 8954b28b2c..7a134d5c29 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass | |||
@@ -130,6 +130,8 @@ PACKAGES_DYNAMIC += "^kernel-firmware-.*" | |||
130 | 130 | ||
131 | export OS = "${TARGET_OS}" | 131 | export OS = "${TARGET_OS}" |
132 | export CROSS_COMPILE = "${TARGET_PREFIX}" | 132 | export CROSS_COMPILE = "${TARGET_PREFIX}" |
133 | export KBUILD_BUILD_USER = "oe-user" | ||
134 | export KBUILD_BUILD_HOST = "oe-host" | ||
133 | 135 | ||
134 | KERNEL_PRIORITY ?= "${@int(d.getVar('PV').split('-')[0].split('+')[0].split('.')[0]) * 10000 + \ | 136 | KERNEL_PRIORITY ?= "${@int(d.getVar('PV').split('-')[0].split('+')[0].split('.')[0]) * 10000 + \ |
135 | int(d.getVar('PV').split('-')[0].split('+')[0].split('.')[1]) * 100 + \ | 137 | int(d.getVar('PV').split('-')[0].split('+')[0].split('.')[1]) * 100 + \ |