diff options
author | André Draszik <adraszik@tycoint.com> | 2016-11-21 09:37:13 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-05 13:54:06 +0000 |
commit | 8f12a03dda3568b70a7f22db764381bedb745b92 (patch) | |
tree | acf64e1cf7097e20c78a581d136a1d33baf85244 /meta/classes/module.bbclass | |
parent | bb7aecb2f9b1d0e03c798bcf308801976a59b98a (diff) | |
download | poky-8f12a03dda3568b70a7f22db764381bedb745b92.tar.gz |
module.bbclass: allow to override location of Module.symvers
Requiring all build systems for external kernel modules to
place Module.symvers directly into ${B}/. is quite an
artificial assumption/requirement. It doesn't have to end
up there, but could easily end up somewhere below ${B}.
Allow to override the location below ${B}
Note that we still don't make use of multiple
Module.symvers in case there are any generated by one
single kernel module build, but this is no change in
behaviour from before and could be added if there really
is a demand for that.
Reported-by: Denys Dmytriyenko <denis@denix.org>
(From OE-Core rev: caa0fa2ddf0c97255b38b1ec8579944ab4821ff1)
Signed-off-by: André Draszik <adraszik@tycoint.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 | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/meta/classes/module.bbclass b/meta/classes/module.bbclass index 95d42da9e7..58470474cc 100644 --- a/meta/classes/module.bbclass +++ b/meta/classes/module.bbclass | |||
@@ -7,6 +7,7 @@ do_make_scripts[depends] += "virtual/kernel:do_shared_workdir" | |||
7 | EXTRA_OEMAKE += "KERNEL_SRC=${STAGING_KERNEL_DIR}" | 7 | EXTRA_OEMAKE += "KERNEL_SRC=${STAGING_KERNEL_DIR}" |
8 | 8 | ||
9 | MODULES_INSTALL_TARGET ?= "modules_install" | 9 | MODULES_INSTALL_TARGET ?= "modules_install" |
10 | MODULES_MODULE_SYMVERS_LOCATION ?= "" | ||
10 | 11 | ||
11 | python __anonymous () { | 12 | python __anonymous () { |
12 | depends = d.getVar('DEPENDS') | 13 | depends = d.getVar('DEPENDS') |
@@ -35,10 +36,17 @@ module_do_install() { | |||
35 | O=${STAGING_KERNEL_BUILDDIR} \ | 36 | O=${STAGING_KERNEL_BUILDDIR} \ |
36 | ${MODULES_INSTALL_TARGET} | 37 | ${MODULES_INSTALL_TARGET} |
37 | 38 | ||
38 | install -d -m0755 ${D}${includedir}/${BPN} | 39 | if [ ! -e "${B}/${MODULES_MODULE_SYMVERS_LOCATION}/Module.symvers" ] ; then |
39 | cp -a --no-preserve=ownership ${B}/Module.symvers ${D}${includedir}/${BPN} | 40 | bbwarn "Module.symvers not found in ${B}/${MODULES_MODULE_SYMVERS_LOCATION}" |
40 | # it doesn't actually seem to matter which path is specified here | 41 | bbwarn "Please consider setting MODULES_MODULE_SYMVERS_LOCATION to a" |
41 | sed -e 's:${B}/::g' -i ${D}${includedir}/${BPN}/Module.symvers | 42 | bbwarn "directory below B to get correct inter-module dependencies" |
43 | else | ||
44 | install -Dm0644 "${B}/${MODULES_MODULE_SYMVERS_LOCATION}"/Module.symvers ${D}${includedir}/${BPN}/Module.symvers | ||
45 | # Module.symvers contains absolute path to the build directory. | ||
46 | # While it doesn't actually seem to matter which path is specified, | ||
47 | # clear them out to avoid confusion | ||
48 | sed -e 's:${B}/::g' -i ${D}${includedir}/${BPN}/Module.symvers | ||
49 | fi | ||
42 | } | 50 | } |
43 | 51 | ||
44 | EXPORT_FUNCTIONS do_compile do_install | 52 | EXPORT_FUNCTIONS do_compile do_install |