diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2015-01-15 11:54:15 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-01-16 23:08:18 +0000 |
commit | 46cdaf1c7bc597735d926af6a46f9483f7e57ce5 (patch) | |
tree | e3e9a582d734bc1c6b09dbc3d9af6f5cdd364dbd /meta/classes/module.bbclass | |
parent | 92725ad46f4d331bea6a2fa65964158d78a7add8 (diff) | |
download | poky-46cdaf1c7bc597735d926af6a46f9483f7e57ce5.tar.gz |
kernel: move source and build output to work-shared
commit 3b3f7e785e279 [kernel: Rearrange for 1.8] began the process of
moving the kernel source and build artefacts out of sstate control and
into a shared location.
This changed triggered some workflow issues, as well as bugs related
to the kernel source containing build output, and hence being dirty and
breaking kernel rebuilds.
To solve these issues, and to make it clear that the kernel is not under
sstate control, we move the source and build outputs to:
work-shared/MACHINE/kernel-source
work-shared/MACHINE/kernel-build-artifacts
Where kernel-build-artifacts is the kernel build output and
kernel-source is kept "pristine". The build-artifacts contain everything
that is required to build external modules against the kernel source,
and includes the defconfig, the kernel-abiversion, System.map files and
output from "make scripts".
External module builds should either pass O= on the command line, or
set KBUILD_OUTPUT to point to the build-artifacts. module-base.bbclass
takes care of setting KBUILD_OUTPUT, so most existing external module
recipes are transparently adapted to the new source/build layout.
recipes that depend on the kernel source must have a depedency on the
do_shared_workdir task:
do_configure[depends] += "virtual/kernel:do_shared_workdir"
With this dependency added, the STAGING_KERNEL_DIR will be populated and
available to the rest of the build.
(From OE-Core rev: 6a1ff0e7eacef595738f2fed086986fd622ec32a)
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/module.bbclass')
-rw-r--r-- | meta/classes/module.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/module.bbclass b/meta/classes/module.bbclass index 5cb8623a66..a03cc74de4 100644 --- a/meta/classes/module.bbclass +++ b/meta/classes/module.bbclass | |||
@@ -14,6 +14,7 @@ module_do_compile() { | |||
14 | KERNEL_VERSION=${KERNEL_VERSION} \ | 14 | KERNEL_VERSION=${KERNEL_VERSION} \ |
15 | CC="${KERNEL_CC}" LD="${KERNEL_LD}" \ | 15 | CC="${KERNEL_CC}" LD="${KERNEL_LD}" \ |
16 | AR="${KERNEL_AR}" \ | 16 | AR="${KERNEL_AR}" \ |
17 | O=${STAGING_KERNEL_BUILDDIR} \ | ||
17 | ${MAKE_TARGETS} | 18 | ${MAKE_TARGETS} |
18 | } | 19 | } |
19 | 20 | ||
@@ -21,6 +22,7 @@ module_do_install() { | |||
21 | unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS | 22 | unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS |
22 | oe_runmake DEPMOD=echo INSTALL_MOD_PATH="${D}" \ | 23 | oe_runmake DEPMOD=echo INSTALL_MOD_PATH="${D}" \ |
23 | CC="${KERNEL_CC}" LD="${KERNEL_LD}" \ | 24 | CC="${KERNEL_CC}" LD="${KERNEL_LD}" \ |
25 | O=${STAGING_KERNEL_BUILDDIR} \ | ||
24 | modules_install | 26 | modules_install |
25 | } | 27 | } |
26 | 28 | ||