diff options
author | Joe Slater <jslater@windriver.com> | 2018-02-20 11:25:16 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-02-24 10:31:44 +0000 |
commit | bb5a8acd65f98c37365bb03dcb898f2da23f17c2 (patch) | |
tree | a56515d1bb1d7c8922db2ca994c4edb3a4dd0a28 /meta/recipes-kernel/make-mod-scripts | |
parent | 2f030dfc082d6d8143c712cd9e18a0da13ec66e1 (diff) | |
download | poky-bb5a8acd65f98c37365bb03dcb898f2da23f17c2.tar.gz |
make-mod-scripts: change how some kernel module tools are built
Remove do_make_scripts() from module-base.bbclass and put
functionality in a recipe. This will build the scripts only
once instead of each time an external module is built.
[YOCTO #12228]
(From OE-Core rev: ea12c46fe8748fb6606c603d463075a8624e6563)
Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/make-mod-scripts')
-rw-r--r-- | meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb b/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb new file mode 100644 index 0000000000..6e47d09f79 --- /dev/null +++ b/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb | |||
@@ -0,0 +1,28 @@ | |||
1 | SUMMARY = "Build tools needed by external modules" | ||
2 | LICENSE = "GPLv2" | ||
3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" | ||
4 | |||
5 | inherit kernel-arch | ||
6 | inherit pkgconfig | ||
7 | |||
8 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
9 | |||
10 | S = "${WORKDIR}" | ||
11 | |||
12 | do_configure[depends] += "virtual/kernel:do_shared_workdir" | ||
13 | do_compile[depends] += "virtual/kernel:do_compile_kernelmodules" | ||
14 | |||
15 | # Build some host tools under work-shared. CC, LD, and AR are probably | ||
16 | # not used, but this is the historical way of invoking "make scripts". | ||
17 | # | ||
18 | do_configure() { | ||
19 | unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS | ||
20 | make CC="${KERNEL_CC}" LD="${KERNEL_LD}" AR="${KERNEL_AR}" \ | ||
21 | -C ${STAGING_KERNEL_DIR} O=${STAGING_KERNEL_BUILDDIR} scripts | ||
22 | } | ||
23 | |||
24 | |||
25 | # There is no reason to build this on its own. | ||
26 | # | ||
27 | EXCLUDE_FROM_WORLD = "1" | ||
28 | |||