27 lines
730 B
BlitzBasic
27 lines
730 B
BlitzBasic
HOMEPAGE = "http://www.netmodule.com"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
SRC_URI = "git://git.netmodule.intranet/NRSW/board-descriptor.git;branch=fb81851;protocol=ssh;user=gitea \
|
|
"
|
|
|
|
PV = "1.0+git${SRCPV}"
|
|
SRCREV="${AUTOREV}"
|
|
|
|
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 "
|
|
|