26 lines
634 B
BlitzBasic
26 lines
634 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/rdp.git;protocol=ssh;user=gitea;branch=master \
|
|
"
|
|
|
|
PV = "1.0+git${SRCPV}"
|
|
SRCREV="b0978cccd77aa20b44da414dc152daaeb68c09ce"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
DEPENDS = "virtual/kernel kernel-module-system-info"
|
|
|
|
inherit module
|
|
|
|
do_install:append() {
|
|
install -d ${D}${includedir}
|
|
install -m 0644 ${B}/rdp_common.h ${D}${includedir}
|
|
}
|
|
|
|
EXTRA_OEMAKE:append:task-install = " -C ${STAGING_KERNEL_DIR} M=${S}"
|
|
|
|
KERNEL_MODULE_AUTOLOAD += " rdp "
|
|
|