blob: b6867627ef7175a49976dac53c38dde06e628c4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
HOMEPAGE = "www.multitech.net"
SECTION = "kernel/userland"
PRIORITY = "optional"
LICENSE = "GPL"
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}
}
|