Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vesta
meta-volansys-gw
Commits
509976a6
Commit
509976a6
authored
Aug 14, 2017
by
Pete Tucker
Browse files
Initial commit of volansys gateway layer
parents
Changes
15
Hide whitespace changes
Inline
Side-by-side
.gitignore
0 → 100644
View file @
509976a6
conf/layer.conf
0 → 100644
View file @
509976a6
# We have a conf and classes directory, add to BBPATH
BBPATH
.=
":${LAYERDIR}"
# We have a recipes-* directories, add to BBFILES
BBFILES
+=
"
${
LAYERDIR
}/
recipes
-*/*/*.
bb
\
${
LAYERDIR
}/
recipes
-*/*/*.
bbappend
"
BBFILE_COLLECTIONS
+=
"volansys-gw"
BBFILE_PATTERN_volansys
-
gw
=
"^${LAYERDIR}/"
BBFILE_PRIORITY_volansys
-
gw
=
"8"
recipes-connectivity/pytun/python-pytun_2.2.bb
0 → 100644
View file @
509976a6
SUMMARY = "Python TUN/TAP tunnul module"
SECTION = "devel/python"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=13f7629e8e4989b66b4a913ab05a91de"
SRC_URI = "https://pypi.python.org/packages/source/p/${PN}/${PN}-${PV}.tar.gz"
inherit setuptools
SRC_URI[md5sum] = "e2d080f236879e27fc1a43603aaabb5d"
SRC_URI[sha256sum] = "60de9001a568a5667a8b754461e165820e2256a3bf5907d1d474e22a4d94899a"
recipes-connectivity/smcroute/smcroute_2.1.0.bb
0 → 100644
View file @
509976a6
SUMMARY = "Static Multicast Routing Daemon"
DESCRIPTION = "SMCRoute is a daemon and command line tool to manipulate the multicast routing table in the UNIX kernel."
HOMEPAGE = "http://troglobit.github.io/smcroute.html"
SECTION = "net"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=4325afd396febcb659c36b49533135d4"
SRCREV = "9324e3ed6d49e0d14a84de3957abec2d8835ad3d"
SRC_URI = "git://github.com/troglobit/smcroute.git;branch=master;protocol=git"
S = "${WORKDIR}/git"
inherit autotools
EXTRA_OECONF = "--enable-ipv6"
recipes-connectivity/txthings/txthings/COPYING.MIT
0 → 100644
View file @
509976a6
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
recipes-connectivity/txthings/txthings_0.1.4.bb
0 → 100644
View file @
509976a6
SUMMARY = "Python CoAP library for Twisted framework"
SECTION = "devel/python"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://../COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
SRC_URI = "git://github.com/mwasilak/${PN}.git \
file://COPYING.MIT"
SRCREV = "${AUTOREV}"
S = "${WORKDIR}/git"
inherit setuptools
RDEPENDS_${PN} = "\
python-twisted \
py2-ipaddress \
"
recipes-connectivity/wvdial/wvdial/control3GModem-init
0 → 100644
View file @
509976a6
#!/bin/sh
NAME
=
Control3GModem
DESC
=
"Control 3G modem "
WVDIAL
=
/usr/bin/wvdial
WVDIALPIDFILE
=
/var/run/wvdial.pid
set
-e
# source function library
.
/etc/init.d/functions
case
"
$1
"
in
start
)
echo
-n
"Starting
$DESC
: "
start-stop-daemon
-S
-p
$WVDIALPIDFILE
-m
-b
-x
$WVDIAL
--
$ARGS
echo
"
$NAME
."
;;
stop
)
echo
-n
"Stopping
$DESC
: "
start-stop-daemon
-K
--oknodo
-x
$WVDIAL
echo
"
$NAME
."
;;
restart
)
$0
stop
sleep
3
$0
start
;;
reload
)
echo
-n
"Reloading
$DESC
: "
killall
-HUP
$(
basename
${
DAEMON
}
)
echo
"
$NAME
."
;;
status
)
status
$DAEMON
exit
$?
;;
*
)
echo
"Usage:
$0
{start|stop|restart|reload|status}"
exit
1
;;
esac
exit
0
recipes-connectivity/wvdial/wvdial/wvdial.conf
0 → 100644
View file @
509976a6
[
Dialer
Defaults
]
Init1
=
ATZ
Init2
=
ATQ0
V1
E1
S0
=
0
&
C1
&
D2
+
FCLASS
=
0
Init3
=
AT
+
CGDCONT
=
1
,
"IP"
,
"airtelgprs.com"
,,
0
,
0
Modem
Type
=
USB
Modem
ISDN
=
0
New
PPPD
=
yes
Phone
= *
99
#
Modem
= /
dev
/
ttyACM0
Username
=
Prompt
Password
=
NO
Baud
=
460800
recipes-connectivity/wvdial/wvdial_1.61.bbappend
0 → 100644
View file @
509976a6
SUMMARY = "Copies wvdial.conf file to home directory"
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
SRC_URI += " \
file://wvdial.conf \
file://control3GModem-init \
"
inherit update-rc.d
INITSCRIPT_NAME = "control3GModem"
INITSCRIPT_PARAMS = "defaults 89"
do_install_append() {
install -d ${D}${sysconfdir}/
install -m 0644 ${WORKDIR}/wvdial.conf ${D}${sysconfdir}/wvdial.conf
install -d ${D}${sysconfdir} ${D}${sysconfdir}/init.d
install -m 0755 ${WORKDIR}/control3GModem-init ${D}${sysconfdir}/init.d/control3GModem
}
FILES_${PN} += " \
/home/root/* \
"
recipes-connectivity/wvdial/wvstreams_4.6.1.bbappend
0 → 100644
View file @
509976a6
TARGET_CFLAGS_append = " -O0"
TARGET_CXXFLAGS_append = " -O0"
recipes-core/libnfc-nci/libnfc-nci_2.1.bb
0 → 100644
View file @
509976a6
SUMMARY = "LIB NFC-NCI "
SECTION = "libs"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
TARGET_CC_ARCH += "${LDFLAGS}"
SRCREV = "${AUTOREV}"
SRC_URI = "https://github.com/NXPNFCLinux/linux_${BPN}/archive/R${PV}.tar.gz"
SRC_URI[md5sum] = "49310b0727fc52a872407a89e7509310"
SRC_URI[sha256sum] = "6bcb0ac143f6c07e160468594ca92f3084b18e5f02c0efb235493f0c05bd9c5d"
S = "${WORKDIR}/linux_${BPN}-R${PV}"
inherit autotools pkgconfig
EXTRA_OECONF += "i2c_available=yes --prefix=${WORKDIR}"
#INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
#INHIBIT_PACKAGE_STRIP = "1"
#PACKAGES = "${PN}"
#FILES_${PN} += "${libdir}/lib*.so"
FILES_${PN} += "${libdir}"
FILES_${PN}-dev = "${includedir} ${libdir}/libnfc_nci_linux.so"
#SECTION_${PN}-dev = "devel"
#ALLOW_EMPTY_${PN}-dev = "1"
#RDEPENDS_${PN}-dev = "${PN} (= ${EXTENDPKGV})"
#RDEPENDS_${PN} = "${PN}-dev (= ${EXTENDPKGV})"
recipes-devtools/python/py2-ipaddress_3.4.1.bb
0 → 100644
View file @
509976a6
SUMMARY = "Python 2.6 backport of the Python 3.4 ipaddress module."
HOMEPAGE = "https://bitbucket.org/kwi/py2-ipaddress/"
LICENSE = "Python-2.0"
LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=b8f6b0182a64c5078ee13bbfb653b85e"
DEPENDS += "python-pip"
SRC_URI = "https://pypi.python.org/packages/06/f2/ff20f2d2fd4757be329c8ecb81e9e7fa3bec0b65445821e3a575410cf194/${PN}-${PV}.tar.gz"
SRC_URI[md5sum] = "47734313c841068e3d5386d048d01c3d"
SRC_URI[sha256sum] = "6d7bf02ac2590764691bf50ac213e966bc885ed37c02606513dcac484190564b"
inherit pypi setuptools
recipes-devtools/python/python-sysv-ipc_0.6.8.bb
0 → 100644
View file @
509976a6
DESCRIPTION = "System V IPC primitives (semaphores, shared memory and message queues) for Python"
HOMEPAGE = "http://semanchuk.com/philip/sysv_ipc/"
SECTION = "devel/python"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://PKG-INFO;md5=9d6e34e7b47096d7c19c1e3be707374e"
PR = "r0"
SRCNAME = "sysv_ipc"
SRC_URI = "http://pypi.python.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
SRC_URI[md5sum] = "c6cf5b4aa7cd3e07fd4b5661530eca8c"
SRC_URI[sha256sum] = "0af73375a85c5d9d487c2f14f208812600bd81e4046437ebaf55746b3aade00e"
S = "${WORKDIR}/${SRCNAME}-${PV}"
inherit setuptools
# DEPENDS_default: python-pip
DEPENDS += " \
python-pip \
"
# RDEPENDS_default:
RDEPENDS_${PN} += " \
"
recipes-devtools/python/python-twisted_15.5.0.bb
0 → 100644
View file @
509976a6
DESCRIPTION = "Twisted is an event-driven networking framework written in Python and licensed under the LGPL. \
Twisted supports TCP, UDP, SSL/TLS, multicast, Unix sockets, a large number of protocols \
(including HTTP, NNTP, IMAP, SSH, IRC, FTP, and others), and much more."
HOMEPAGE = "http://www.twistedmatrix.com"
SECTION = "console/network"
#twisted/topfiles/NEWS:655: - Relicensed: Now under the MIT license, rather than LGPL.
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=a7f7d40544f5a14331c7402d2464dd75"
SRC_URI = "https://pypi.python.org/packages/source/T/Twisted/Twisted-${PV}.tar.bz2"
SRC_URI[md5sum] = "0831d7c90d0020062de0f7287530a285"
SRC_URI[sha256sum] = "a8046804a0dfae090234bbb90fc560a6cc11a208b3d048b55244c79c1945c17f"
S = "${WORKDIR}/Twisted-${PV}"
inherit setuptools
do_install_append() {
# remove some useless files before packaging
find ${D} \( -name "*.bat" -o -name "*.c" -o -name "*.h" \) -exec rm -f {} \;
}
PACKAGES += "\
${PN}-zsh \
${PN}-test \
${PN}-protocols \
${PN}-conch \
${PN}-mail \
${PN}-names \
${PN}-news \
${PN}-runner \
${PN}-web \
${PN}-words \
${PN}-flow \
${PN}-pair \
${PN}-core \
"
PACKAGES =+ "\
${PN}-src \
${PN}-bin \
"
RDEPENDS_${PN} = "\
${PN}-bin \
${PN}-conch \
${PN}-mail \
${PN}-names \
${PN}-news \
${PN}-runner \
${PN}-web \
${PN}-words \
"
RDEPENDS_${PN}-core = "python-core python-zopeinterface python-contextlib"
RDEPENDS_${PN}-test = "${PN}"
RDEPENDS_${PN}-conch = "${PN}-core ${PN}-protocols"
RDEPENDS_${PN}-mail = "${PN}-core ${PN}-protocols"
RDEPENDS_${PN}-names = "${PN}-core"
RDEPENDS_${PN}-news = "${PN}-core ${PN}-protocols"
RDEPENDS_${PN}-runner = "${PN}-core ${PN}-protocols"
RDEPENDS_${PN}-web += "${PN}-core ${PN}-protocols"
RDEPENDS_${PN}-words += "${PN}-core"
RDEPENDS_${PN}-flow += "${PN}-core"
RDEPENDS_${PN}-pair += "${PN}-core"
RDEPENDS_${PN}-dbg = "${PN}"
ALLOW_EMPTY_${PN} = "1"
FILES_${PN} = ""
FILES_${PN}-test = " \
${libdir}/${PYTHON_DIR}/site-packages/twisted/test \
${libdir}/${PYTHON_DIR}/site-packages/twisted/*/test \
"
FILES_${PN}-protocols = " \
${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols/*.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols/gps/ \
${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols/mice/ \
"
FILES_${PN}-zsh = " \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zsh \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zshcomp.* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/twisted-completion.zsh \
"
FILES_${PN}-conch = " \
${bindir}/ckeygen \
${bindir}/tkconch \
${bindir}/conch \
${bindir}/conchftp \
${bindir}/cftp \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_conch.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/conch \
"
FILES_${PN}-core = " \
${bindir}/manhole \
${bindir}/mktap \
${bindir}/twistd \
${bindir}/tap2deb \
${bindir}/tap2rpm \
${bindir}/tapconvert \
${bindir}/tkmktap \
${bindir}/trial \
${bindir}/easy_install* \
${bindir}/pyhtmlizer \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/*.so \
${libdir}/${PYTHON_DIR}/site-packages/twisted/*.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__init__.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/notestplugin.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/testplugin.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_ftp.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_inet.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_manhole.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_portforward.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_socks.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_telnet.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_trial.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/dropin.cache \
${libdir}/${PYTHON_DIR}/site-packages/twisted/application \
${libdir}/${PYTHON_DIR}/site-packages/twisted/cred \
${libdir}/${PYTHON_DIR}/site-packages/twisted/enterprise \
${libdir}/${PYTHON_DIR}/site-packages/twisted/internet \
${libdir}/${PYTHON_DIR}/site-packages/twisted/manhole \
${libdir}/${PYTHON_DIR}/site-packages/twisted/manhole \
${libdir}/${PYTHON_DIR}/site-packages/twisted/persisted \
${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols\
${libdir}/${PYTHON_DIR}/site-packages/twisted/python\
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/timeoutqueue.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/filepath.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/dxprofile.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/plugin.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/htmlizer.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/__init__.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/dispatch.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/hook.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/threadpool.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/otp.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/usage.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/roots.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/versions.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/urlpath.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/util.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/components.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/logfile.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/runtime.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/reflect.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/context.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/threadable.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/rebuild.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/failure.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/lockfile.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/formmethod.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/finalize.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/win32.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/dist.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/shortcut.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zipstream.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/release.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/syslog.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/log.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/compat.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zshcomp.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/procutils.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/text.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/_twisted_zsh_stub \
${libdir}/${PYTHON_DIR}/site-packages/twisted/scripts/ \
${libdir}/${PYTHON_DIR}/site-packages/twisted/spread/ \
${libdir}/${PYTHON_DIR}/site-packages/twisted/tap/ \
${libdir}/${PYTHON_DIR}/site-packages/twisted/trial/ \
${libdir}/${PYTHON_DIR}/site-packages/twisted/__init__.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/_version.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/copyright.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/im.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/*.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/*.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/*.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/topfiles \
${libdir}/${PYTHON_DIR}/site-packages/Twisted*egg-info \
${libdir}/${PYTHON_DIR}/site-packages/twisted/_threads/*.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/logger/*.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/positioning/*.py* \
"
FILES_${PN}-mail = " \
${bindir}/mailmail \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_mail.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/mail \
"
FILES_${PN}-names = " \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_names.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/names \
"
FILES_${PN}-news = " \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_news.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/news \
"
FILES_${PN}-runner = " \
${libdir}/site-packages/twisted/runner/portmap.so \
${libdir}/${PYTHON_DIR}/site-packages/twisted/runner\
"
FILES_${PN}-web = " \
${bindir}/websetroot \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_web.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/web\
"
FILES_${PN}-words = " \
${bindir}/im \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_words.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/words\
"
FILES_${PN}-flow = " \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_flow.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/flow \"
FILES_${PN}-pair = " \
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_pair.py* \
${libdir}/${PYTHON_DIR}/site-packages/twisted/pair \
"
FILES_${PN}-dbg += " \
${libdir}/${PYTHON_DIR}/site-packages/twisted/*/.debug \
${libdir}/${PYTHON_DIR}/site-packages/twisted/*/*/.debug \
"
RDEPENDS_{PN}-src = "${PN}"
FILES_${PN}-src = " \
${libdir}/${PYTHON_DIR}/site-packages/twisted/*.py \
${libdir}/${PYTHON_DIR}/site-packages/twisted/*/*.py \
${libdir}/${PYTHON_DIR}/site-packages/twisted/*/*/*.py \
"
recipes-fsl/packagegroup/packagegroup-volansys-gw.bb
0 → 100644
View file @
509976a6
# Copyright (C) 2016 Volansys
# Released under the MIT license (see COPYING.MIT for the terms)
DESCRIPTION = "Volansys IoT Gateway BSP package group"
LICENSE = "MIT"
inherit packagegroup
RDEPENDS_${PN} += " \
bind \
bridge-utils \
dhcp-client \
dhcp-server \
connman \
connman-client \
hostapd \
HSDK \
iproute2 \
iw \
libpcap \
libusb-compat \
libusb1 \
lighttpd \
openssl \
py2-ipaddress \
python-core \
python-pytun \
python-sysv-ipc \
python-twisted \
radvd \
smcroute \
sqlite \
txthings \
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment