Add binary-only package for sbts2050-util

sbts2050-util is a small binary-only userspace program used to
interface with the sysmoBTS 2050 board management controller,
i.e. to enable/disable PA power, read power consumption/temperature
and the like.

This tool is going to disappear once the respective features have been
included in the (open source) sysmobts-util / sysmobts-mgr.  Please be
patient meanwhile.
This commit is contained in:
Harald Welte 2013-10-04 22:22:53 +02:00
parent 3c99769de2
commit 5cf873f499
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,15 @@
DESCRIPTION = "sysmocom sysmoBTS 2050 board management utility"
SECTION = "kernel"
LICENSE = "CLOSED"
SRC_URI = "file://sbts2050-util-${FIRMWARE-VERSION}.tar.bz2"
S = "${WORKDIR}/sbts2050-util-${FIRMWARE-VERSION}"
INC_PR = "1"
do_compile() {
:
}
COMPATIBLE_MACHINE = "sysmobts-2050"
PACKAGE_ARCH = "${MACHINE_ARCH}"

View File

@ -0,0 +1,12 @@
FIRMWARE-VERSION = "${PV}"
PR = "r1.${INC_PR}"
require ${PN}.inc
do_install() {
install -d ${D}/usr/bin
install -m 0666 ${S}/sbts2050-util ${D}/usr/bin/sbts2050-util
}
FILES_${PN} = "/usr/bin/sbts2050-util"