28 lines
809 B
BlitzBasic
28 lines
809 B
BlitzBasic
HOMEPAGE = "http://www.netmodule.com"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
SRC_URI = "git://git.netmodule.intranet/NRSW/board-descriptor.git;protocol=ssh;user=gitea;branch=master \
|
|
file://0001-license-key.patch \
|
|
"
|
|
|
|
PV = "1.0+git${SRCPV}"
|
|
SRCREV="75b608d47b1c98cb66caf9a5d5a82b27990d8bbf"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
DEPENDS = "virtual/kernel"
|
|
|
|
inherit module
|
|
|
|
do_install:append() {
|
|
install -d ${D}/usr/include/board-descriptor/linux/
|
|
install -m 0755 ${S}/board_descriptor.h ${D}/usr/include/board-descriptor/linux/
|
|
install -m 0755 ${S}/bdparser.h ${D}/usr/include/board-descriptor/linux/
|
|
}
|
|
|
|
EXTRA_OEMAKE:append:task-install = " -C ${STAGING_KERNEL_DIR} M=${S}"
|
|
|
|
KERNEL_MODULE_AUTOLOAD += " board-descriptor "
|
|
|