diff options
author | Yannick Gicquel <yannick.gicquel@iot.bzh> | 2016-01-19 16:33:21 +0100 |
---|---|---|
committer | Yannick Gicquel <yannick.gicquel@iot.bzh> | 2016-01-19 16:56:17 +0100 |
commit | 6cc9f412ce7f6f0b6204cbbca600d3fe550c4159 (patch) | |
tree | e686b662d554154c54294a9187d4155d20b97f27 | |
parent | ea40839f35cb8924423334e7d095190cfcb8571b (diff) |
Revert "modules-common: handle kernel build path in work-shared"
This reverts commit 64ba09ca3f79f4ebe52116af8de98d0bfbe70b49.
After cleaning up sstate cache, it appears a regression while
building the fdpm-kernel-module. In fact, multimedia binary set
provides some modules with hardcoded references to KERNELSRC
or KERNELDIR variable in there Makefile. For now, it is more
reliable to keep the old behavior to avoid regression.
Change-Id: I052f44cc5a9315e08efb5402bca34c87c67e0d2e
Signed-off-by: Yannick Gicquel <yannick.gicquel@iot.bzh>
-rw-r--r-- | meta-rcar-gen2/include/rcar-gen2-modules-common.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta-rcar-gen2/include/rcar-gen2-modules-common.inc b/meta-rcar-gen2/include/rcar-gen2-modules-common.inc index f2b520a..4a3658a 100644 --- a/meta-rcar-gen2/include/rcar-gen2-modules-common.inc +++ b/meta-rcar-gen2/include/rcar-gen2-modules-common.inc @@ -2,8 +2,7 @@ export BUILDDIR = "${STAGING_INCDIR}/.." export LIBSHARED = "${STAGING_LIBDIR}" export KERNELSRC = "${STAGING_KERNEL_DIR}" export CROSS_COMPILE = "${TARGET_PREFIX}" -STAGING_KERNEL_BUILDDIR ?= "${STAGING_KERNEL_DIR}" -export KERNELDIR = "${STAGING_KERNEL_BUILDDIR}" +export KERNELDIR = "${STAGING_KERNEL_DIR}" export LDFLAGS = "" export CP = "cp" |