[oe-commits] Mark Hatle : hello-mod: Ensure the produced package name begins with kernel-module-

git at git.openembedded.org git at git.openembedded.org
Sat Apr 13 22:50:10 UTC 2013


Module: openembedded-core.git
Branch: master
Commit: b847f87f4213db917d6760cd399c0afae996cf23
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=b847f87f4213db917d6760cd399c0afae996cf23

Author: Mark Hatle <mark.hatle at windriver.com>
Date:   Fri Apr 12 14:42:13 2013 -0500

hello-mod: Ensure the produced package name begins with kernel-module-

The special key kernel-module- is necessary for the system to avoid a package
rename when installing a multilib image.  For example:

local.conf: IMAGE_INSTALL_append = " hello-mod"

bitbake lib32-core-image-minimal

The system will translate names and prepend 'lib32-', unless the package
begins with kernel-module-.

Signed-off-by: Mark Hatle <mark.hatle at windriver.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 .../recipes-kernel/hello-mod/hello-mod_0.1.bb      |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/meta-skeleton/recipes-kernel/hello-mod/hello-mod_0.1.bb b/meta-skeleton/recipes-kernel/hello-mod/hello-mod_0.1.bb
index 64a6dda..621f700 100644
--- a/meta-skeleton/recipes-kernel/hello-mod/hello-mod_0.1.bb
+++ b/meta-skeleton/recipes-kernel/hello-mod/hello-mod_0.1.bb
@@ -13,3 +13,11 @@ SRC_URI = "file://Makefile \
           "
 
 S = "${WORKDIR}"
+
+# Kernel module packages MUST begin with 'kernel-module-', otherwise
+# multilib image generation can fail.
+#
+# The following line is only necessary if the recipe name does not begin
+# with kernel-module-.
+#
+PKG_${PN} = "kernel-module-${PN}"





More information about the Openembedded-commits mailing list