diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2021-02-05 20:40:58 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-02-05 12:38:59 -0800 |
commit | 304f660f880bdf7dd5c51695875ab0a73aaed8b2 (patch) | |
tree | 4bca7177e8974ed0c2c2b76db9d70295729cefc3 | |
parent | bf527522e019346fcd92bb5d9d5c1906147e24f3 (diff) | |
download | meta-openembedded-304f660f880bdf7dd5c51695875ab0a73aaed8b2.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>
-rw-r--r-- | meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20201112.bb | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20201112.bb b/meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20201112.bb index c540445d7..64958a75b 100644 --- a/meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20201112.bb +++ b/meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20201112.bb | |||
@@ -21,13 +21,6 @@ MAKE_TARGETS = "module" | |||
21 | RRECOMMENDS_${PN} = "kernel-module-xt-hashlimit" | 21 | RRECOMMENDS_${PN} = "kernel-module-xt-hashlimit" |
22 | MODULE_NAME = "wireguard" | 22 | MODULE_NAME = "wireguard" |
23 | 23 | ||
24 | # Kernel module packages MUST begin with 'kernel-module-', otherwise | ||
25 | # multilib image generation can fail. | ||
26 | # | ||
27 | # The following line is only necessary if the recipe name does not begin | ||
28 | # with kernel-module-. | ||
29 | PKG_${PN} = "kernel-module-${MODULE_NAME}" | ||
30 | |||
31 | module_do_install() { | 24 | module_do_install() { |
32 | install -d ${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION}/kernel/${MODULE_NAME} | 25 | install -d ${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION}/kernel/${MODULE_NAME} |
33 | install -m 0644 ${MODULE_NAME}.ko \ | 26 | install -m 0644 ${MODULE_NAME}.ko \ |