29 lines
792 B
BlitzBasic
29 lines
792 B
BlitzBasic
HOMEPAGE = "http://www.netmodule.com"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
SRC_URI = "git://gitea@git.netmodule.intranet/NRSW/kernel-module-hydra.git;protocol=ssh;branch=master \
|
|
"
|
|
|
|
PV = "1.0+git${SRCPV}"
|
|
SRCREV = "9ca888acd2492c3f5cf3cbce9c68f6cfea63b911"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
DEPENDS = "virtual/kernel kernel-module-board-descriptor"
|
|
export EXTRA_INCLUDES = "-I${STAGING_INCDIR}/board-descriptor/"
|
|
|
|
inherit module
|
|
|
|
KERNEL_CC:append = " -I${STAGING_DIR_TARGET}/usr/include/board-descriptor"
|
|
|
|
do_install:append() {
|
|
install -d ${D}${includedir}
|
|
install -m 0644 ${B}/hydra_if.h ${D}${includedir}
|
|
}
|
|
|
|
EXTRA_OEMAKE:append:task-install = " -C ${STAGING_KERNEL_DIR} M=${S}"
|
|
|
|
KERNEL_MODULE_AUTOLOAD += " hydra "
|
|
|