meta-digi-dey: Add batctl application

This is a user space tool to manage BATMAN advanced network interfaces.

https://jira.digi.com/browse/DEL-6466

Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com>
This commit is contained in:
Alex Gonzalez 2019-02-22 09:46:51 +01:00
parent 4d739d1d7e
commit b1d5d3e4ac
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# Copyright (C) 2019 Digi International.
DESCRIPTION = "Control application for B.A.T.M.A.N. routing protocol kernel module for multi-hop ad-hoc mesh networks."
HOMEPAGE = "http://www.open-mesh.net/"
SECTION = "console/network"
PRIORITY = "optional"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6"
SRC_URI = "http://downloads.open-mesh.net/batman/stable/sources/batctl/batctl-${PV}.tar.gz"
SRC_URI[md5sum] = "3eb6c6e11d293f48d4ecab6d182805c2"
SRC_URI[sha256sum] = "997721096ff396644e8d697ea7651e9d38243faf317bcea2661d4139ff58b531"
DEPENDS = "libnl"
inherit pkgconfig
do_install() {
install -d ${D}${bindir}
install -m 0755 batctl ${D}${bindir}
}

View File

@ -28,6 +28,7 @@ CELLULAR_PKGS = "\
RDEPENDS_${PN} = "\ RDEPENDS_${PN} = "\
iproute2 \ iproute2 \
batctl \
${@bb.utils.contains('DISTRO_FEATURES', 'cellular', '${CELLULAR_PKGS}', '', d)} \ ${@bb.utils.contains('DISTRO_FEATURES', 'cellular', '${CELLULAR_PKGS}', '', d)} \
${VIRTUAL-RUNTIME_ftp-server} \ ${VIRTUAL-RUNTIME_ftp-server} \
${VIRTUAL-RUNTIME_http-server} \ ${VIRTUAL-RUNTIME_http-server} \