summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/kernel.bbclass3
-rw-r--r--meta/classes/linux-kernel-base.bbclass4
2 files changed, 4 insertions, 3 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index 54b006550d..df740af41d 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -204,9 +204,6 @@ PACKAGES_DYNAMIC += "^${KERNEL_PACKAGE_NAME}-firmware-.*"
204 204
205export OS = "${TARGET_OS}" 205export OS = "${TARGET_OS}"
206export CROSS_COMPILE = "${TARGET_PREFIX}" 206export CROSS_COMPILE = "${TARGET_PREFIX}"
207export KBUILD_BUILD_VERSION = "1"
208export KBUILD_BUILD_USER ?= "oe-user"
209export KBUILD_BUILD_HOST ?= "oe-host"
210 207
211KERNEL_RELEASE ?= "${KERNEL_VERSION}" 208KERNEL_RELEASE ?= "${KERNEL_VERSION}"
212 209
diff --git a/meta/classes/linux-kernel-base.bbclass b/meta/classes/linux-kernel-base.bbclass
index ba59222c24..73a6fe36d9 100644
--- a/meta/classes/linux-kernel-base.bbclass
+++ b/meta/classes/linux-kernel-base.bbclass
@@ -37,5 +37,9 @@ def linux_module_packages(s, d):
37 suffix = "" 37 suffix = ""
38 return " ".join(map(lambda s: "kernel-module-%s%s" % (s.lower().replace('_', '-').replace('@', '+'), suffix), s.split())) 38 return " ".join(map(lambda s: "kernel-module-%s%s" % (s.lower().replace('_', '-').replace('@', '+'), suffix), s.split()))
39 39
40export KBUILD_BUILD_VERSION = "1"
41export KBUILD_BUILD_USER ?= "oe-user"
42export KBUILD_BUILD_HOST ?= "oe-host"
43
40# that's all 44# that's all
41 45