diff options
author | Denys Dmytriyenko <denys@ti.com> | 2016-11-19 03:48:18 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2016-11-23 13:09:37 -0500 |
commit | 9acb9cde60b50ca39f5d27cfa4b6e47909763142 (patch) | |
tree | ca667520e023619c5e4d424040af48f0864ef9d8 /recipes-bsp/cmem | |
parent | f2ce07dc7ac38dfe3c079c1317303b083ba44334 (diff) | |
download | meta-ti-9acb9cde60b50ca39f5d27cfa4b6e47909763142.tar.gz |
cmem-mod: workaround the new Module.symvers requirement
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-bsp/cmem')
-rw-r--r-- | recipes-bsp/cmem/cmem-mod_git.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/recipes-bsp/cmem/cmem-mod_git.bb b/recipes-bsp/cmem/cmem-mod_git.bb index d36816b5..bf6a4770 100644 --- a/recipes-bsp/cmem/cmem-mod_git.bb +++ b/recipes-bsp/cmem/cmem-mod_git.bb | |||
@@ -3,7 +3,7 @@ DESCRIPTION = "Kernel module for contiguous memory allocation from userspace" | |||
3 | include cmem.inc | 3 | include cmem.inc |
4 | 4 | ||
5 | # This package builds a kernel module, use kernel PR as base and append a local | 5 | # This package builds a kernel module, use kernel PR as base and append a local |
6 | MACHINE_KERNEL_PR_append = "b" | 6 | MACHINE_KERNEL_PR_append = "c" |
7 | PR = "${MACHINE_KERNEL_PR}" | 7 | PR = "${MACHINE_KERNEL_PR}" |
8 | 8 | ||
9 | inherit module | 9 | inherit module |
@@ -12,3 +12,7 @@ EXTRA_OEMAKE += '-f lu.mak KERNEL_INSTALL_DIR="${STAGING_KERNEL_DIR}" TOOLCHAIN_ | |||
12 | MAKE_TARGETS = "module" | 12 | MAKE_TARGETS = "module" |
13 | 13 | ||
14 | KERNEL_MODULE_AUTOLOAD += "cmemk" | 14 | KERNEL_MODULE_AUTOLOAD += "cmemk" |
15 | |||
16 | do_install_prepend() { | ||
17 | cp ${B}/src/cmem/module/Module.symvers ${B}/ || true | ||
18 | } | ||