blob: a017f911ad1f28f62856ea5694450dbd49c7d756 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
HOMEPAGE = "www.multitech.net"
PRIORITY = "optional"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
SRC_URI = "file://ocg-wifi-ap \
file://ocg-dhcpd \
file://ocg-set-apn \
file://ocg-cell-router"
do_install() {
install -d ${D}${sbindir} ${D}${sbindir}
install -m 755 ${WORKDIR}/ocg-wifi-ap ${D}${sbindir}
install -m 755 ${WORKDIR}/ocg-dhcpd ${D}${sbindir}
install -m 755 ${WORKDIR}/ocg-set-apn ${D}${sbindir}
install -m 755 ${WORKDIR}/ocg-cell-router ${D}${sbindir}
}
|