mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 09:32:14 +02:00
kernel: don't assign the build user/host
The KBUILD_BUILD_USER and KBUILD_BUILD_HOST variables were assigned at the kernel class level, which made it impossible to override them in the local configuration. By setting only the default values of those variables in the kernel class, it is now possible to override them as expected. (From OE-Core rev: a3e8cdf9c3ba966fa4b5a21235540eb0b00fb487) Signed-off-by: Federico Sauter <federico.sauter@ableton.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
559fe1a4d4
commit
6aef6271e1
@@ -157,8 +157,8 @@ PACKAGES_DYNAMIC += "^${KERNEL_PACKAGE_NAME}-firmware-.*"
|
||||
export OS = "${TARGET_OS}"
|
||||
export CROSS_COMPILE = "${TARGET_PREFIX}"
|
||||
export KBUILD_BUILD_VERSION = "1"
|
||||
export KBUILD_BUILD_USER = "oe-user"
|
||||
export KBUILD_BUILD_HOST = "oe-host"
|
||||
export KBUILD_BUILD_USER ?= "oe-user"
|
||||
export KBUILD_BUILD_HOST ?= "oe-host"
|
||||
|
||||
KERNEL_RELEASE ?= "${KERNEL_VERSION}"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user