[oe-commits] [openembedded-core] 13/14: module.bbclass: allow to override location of Module.symvers

git at git.openembedded.org git at git.openembedded.org
Thu Dec 22 13:41:26 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 1b5d6ea8b0680eacbd54cf1273d41cfc6592c617
Author: André Draszik <adraszik at tycoint.com>
AuthorDate: Mon Nov 21 09:37:13 2016 +0000

    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 at denix.org>
    Signed-off-by: André Draszik <adraszik at tycoint.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/classes/module.bbclass | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

diff --git a/meta/classes/module.bbclass b/meta/classes/module.bbclass
index 95d42da..5847047 100644
--- a/meta/classes/module.bbclass
+++ b/meta/classes/module.bbclass
@@ -7,6 +7,7 @@ do_make_scripts[depends] += "virtual/kernel:do_shared_workdir"
 EXTRA_OEMAKE += "KERNEL_SRC=${STAGING_KERNEL_DIR}"
 
 MODULES_INSTALL_TARGET ?= "modules_install"
+MODULES_MODULE_SYMVERS_LOCATION ?= ""
 
 python __anonymous () {
     depends = d.getVar('DEPENDS')
@@ -35,10 +36,17 @@ module_do_install() {
 	           O=${STAGING_KERNEL_BUILDDIR} \
 	           ${MODULES_INSTALL_TARGET}
 
-	install -d -m0755 ${D}${includedir}/${BPN}
-	cp -a --no-preserve=ownership ${B}/Module.symvers ${D}${includedir}/${BPN}
-	# it doesn't actually seem to matter which path is specified here
-	sed -e 's:${B}/::g' -i ${D}${includedir}/${BPN}/Module.symvers
+	if [ ! -e "${B}/${MODULES_MODULE_SYMVERS_LOCATION}/Module.symvers" ] ; then
+		bbwarn "Module.symvers not found in ${B}/${MODULES_MODULE_SYMVERS_LOCATION}"
+		bbwarn "Please consider setting MODULES_MODULE_SYMVERS_LOCATION to a"
+		bbwarn "directory below B to get correct inter-module dependencies"
+	else
+		install -Dm0644 "${B}/${MODULES_MODULE_SYMVERS_LOCATION}"/Module.symvers ${D}${includedir}/${BPN}/Module.symvers
+		# Module.symvers contains absolute path to the build directory.
+		# While it doesn't actually seem to matter which path is specified,
+		# clear them out to avoid confusion
+		sed -e 's:${B}/::g' -i ${D}${includedir}/${BPN}/Module.symvers
+	fi
 }
 
 EXPORT_FUNCTIONS do_compile do_install

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list