mirror of
https://git.yoctoproject.org/poky
synced 2026-03-29 05:02:22 +02:00
Added HOMEPAGE and DESCRIPTION for recipes with missing decriptions or homepage [YOCTO #13471] (From OE-Core rev: 90e24da5fbfafc4c5b31093a5fc9ec65fabd31f5) Signed-off-by: Dorinda Bassey <dorindabassey@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 89d8f20353bacb089bc18833d3ff032b525613ee) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
510 B
BlitzBasic
19 lines
510 B
BlitzBasic
SUMMARY = "Example of how to build an external Linux kernel module"
|
|
DESCRIPTION = "${SUMMARY}"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e"
|
|
|
|
inherit module
|
|
|
|
SRC_URI = "file://Makefile \
|
|
file://hello.c \
|
|
file://COPYING \
|
|
"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
# The inherit of module.bbclass will automatically name module packages with
|
|
# "kernel-module-" prefix as required by the oe-core build environment.
|
|
|
|
RPROVIDES_${PN} += "kernel-module-hello"
|