diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2021-02-05 20:40:58 +0100 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2021-02-10 07:53:40 -0800 |
commit | 38836bb67436336b9e504769c30f8cf84082da6f (patch) | |
tree | ce66dc9714e05a8b847e8c1b5b9872a255e2f152 | |
parent | 55f71e0a18f3fcea14b4ee6ac526cf391632a7f6 (diff) | |
download | meta-openembedded-38836bb67436336b9e504769c30f8cf84082da6f.tar.gz |
wireguard-module: remove PKG assignment
* it's not clear why it was added in first place and it's causing issues since:
"package: get_package_mapping: avoid dependency mapping if renamed package provides original name"
commit in oe-core as discussed in:
https://lists.openembedded.org/g/openembedded-core/message/143672
https://github.com/openembedded/meta-openembedded/issues/285
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit 304f660f880bdf7dd5c51695875ab0a73aaed8b2)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
(cherry picked from commit f9502868169715ee4945f5d8bef7c845dbb7b9e0)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20200401.bb | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20200401.bb b/meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20200401.bb index 45324c02a1..e8891c4428 100644 --- a/meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20200401.bb +++ b/meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20200401.bb | |||
@@ -22,13 +22,6 @@ MAKE_TARGETS = "module" | |||
22 | RRECOMMENDS_${PN} = "kernel-module-xt-hashlimit" | 22 | RRECOMMENDS_${PN} = "kernel-module-xt-hashlimit" |
23 | MODULE_NAME = "wireguard" | 23 | MODULE_NAME = "wireguard" |
24 | 24 | ||
25 | # Kernel module packages MUST begin with 'kernel-module-', otherwise | ||
26 | # multilib image generation can fail. | ||
27 | # | ||
28 | # The following line is only necessary if the recipe name does not begin | ||
29 | # with kernel-module-. | ||
30 | PKG_${PN} = "kernel-module-${MODULE_NAME}" | ||
31 | |||
32 | module_do_install() { | 25 | module_do_install() { |
33 | install -d ${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION}/kernel/${MODULE_NAME} | 26 | install -d ${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION}/kernel/${MODULE_NAME} |
34 | install -m 0644 ${MODULE_NAME}.ko \ | 27 | install -m 0644 ${MODULE_NAME}.ko \ |