diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2013-04-12 14:42:13 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-13 23:51:02 +0100 |
commit | 87bae4b17a9447f70544ca624f964cbde1880f9e (patch) | |
tree | 9491d9a50038d3ca85129562c2f4802045191b15 /meta-skeleton | |
parent | 35ffb696c6305e79a61207ddc7f0452ca8331ccc (diff) | |
download | poky-87bae4b17a9447f70544ca624f964cbde1880f9e.tar.gz |
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-.
(From OE-Core rev: b847f87f4213db917d6760cd399c0afae996cf23)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-skeleton')
-rw-r--r-- | meta-skeleton/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 64a6ddad4c..621f700d4c 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 \ | |||
13 | " | 13 | " |
14 | 14 | ||
15 | S = "${WORKDIR}" | 15 | S = "${WORKDIR}" |
16 | |||
17 | # Kernel module packages MUST begin with 'kernel-module-', otherwise | ||
18 | # multilib image generation can fail. | ||
19 | # | ||
20 | # The following line is only necessary if the recipe name does not begin | ||
21 | # with kernel-module-. | ||
22 | # | ||
23 | PKG_${PN} = "kernel-module-${PN}" | ||