blob: aea0c5c83512252a63fd0cb9f0a83575dc98ba6c (
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
|
# Example configuration files for wifi
LICENSE = "PD"
LIC_FILES_CHKSUM = "file://LICENSE;md5=7bf87fc37976e93ec66ad84fac58c098"
PR = "r1"
inherit allarch
SRCREV = "v${PV}"
SRC_URI = " \
https://www.multitech.net/mlinux/sources/${BPN}-${PV}.tar.gz \
file://PD.patch \
"
SRC_URI[sha256sum] = "bfe3ca64b50a5f0426b2e11980543cfea5e4ddca30dfd9d8599d00770745014b"
FILES_${PN} = "/opt"
PACKAGES = "${BPN}"
do_install() {
cd ${WORKDIR}
pwd
install -m 0755 -d ${D}/opt/rs9113
install ${S}/*.conf ${D}/opt/rs9113
}
|