xref: /OK3568_Linux_fs/yocto/poky/meta-skeleton/recipes-kernel/hello-mod/hello-mod_0.1.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1SUMMARY = "Example of how to build an external Linux kernel module"
2DESCRIPTION = "${SUMMARY}"
3LICENSE = "GPL-2.0-only"
4LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e"
5
6inherit module
7
8SRC_URI = "file://Makefile \
9           file://hello.c \
10           file://COPYING \
11          "
12
13S = "${WORKDIR}"
14
15# The inherit of module.bbclass will automatically name module packages with
16# "kernel-module-" prefix as required by the oe-core build environment.
17
18RPROVIDES:${PN} += "kernel-module-hello"
19