blob: c55902332976c663061b55f73b9786da5e1f5e0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
DESCRIPTION = "mLinux Conduit Access Point image"
require mlinux-minimal-image.bb
FILESYSTEM_FEATURES = "dosfstools \
cifs-utils \
lsof \
"
NETWORKING_FEATURES += "bridge-utils \
inetutils-ftp \
openssl \
rsync \
iperf \
mii-diag \
tcpdump \
netcat \
wget \
strongswan \
"
TIME_FEATURES = "tzdata tzdata-africa tzdata-americas tzdata-antarctica tzdata-arctic \
tzdata-asia tzdata-atlantic tzdata-australia tzdata-europe tzdata-pacific \
tzdata-misc \
cronie \
ntpdate \
"
WIFI_FEATURES = "libnl \
wpa-supplicant \
wireless-tools \
iw \
hostap-daemon hostap-utils \
wilc1000 \
"
MULTITECH_FEATURES += " \
u-boot-linux-utils \
mlinux-scripts \
reset-handler \
radio-cmd radio-query \
jsparser \
protobuf \
annex-client \
"
IMAGE_INSTALL += "lora-network-server \
lora-gateway-utils \
lora-query \
mosquitto mosquitto-clients \
"
MISC_FEATURES = "minicom lrzsz nano"
# Extra stuff to install
# Someday add wifi features
# ${WIFI_FEATURES}
#
IMAGE_INSTALL += " \
${FILESYSTEM_FEATURES} \
${TIME_FEATURES} \
${MISC_FEATURES} \
"
# Multi-Tech SMS Utility (see http://git.multitech.net)
IMAGE_INSTALL += "sms-utils"
|