hello-mod_0.1.bb 510 B

123456789101112131415161718
  1. SUMMARY = "Example of how to build an external Linux kernel module"
  2. DESCRIPTION = "${SUMMARY}"
  3. LICENSE = "GPLv2"
  4. LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e"
  5. inherit module
  6. SRC_URI = "file://Makefile \
  7. file://hello.c \
  8. file://COPYING \
  9. "
  10. S = "${WORKDIR}"
  11. # The inherit of module.bbclass will automatically name module packages with
  12. # "kernel-module-" prefix as required by the oe-core build environment.
  13. RPROVIDES_${PN} += "kernel-module-hello"