blob: 86ce0e6136a44b7a9303edd719c0019ff9299193 (
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
|
DESCRIPTION = "Quectel utility for upgrading CAT4 radio firmware"
HOMEPAGE = "https://www.quectel.com/"
LICENSE = "Proprietary"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Proprietary;md5=0557f9d92cf58f2ccdd50f62f8ac0b28"
PR = "r0"
SRCREV = "${PV}"
SRC_URI = " \
file://LTE%265G_QFirehose_Linux%26Android_V1.2.zip \
"
# TODO: When ZIP archieve is unpacked, the source directory is named "LTE&5G_QFirehose_Linux&Android_V1.2"
# As bitbake does not support escaping for the "$S" variable and falls into parsing error -
# a custom do_unpack_extra step was added.
do_unpack_extra() {
mv "${WORKDIR}/LTE&5G_QFirehose_Linux&Android_V1.2/"* "${S}/"
}
addtask unpack_extra after do_unpack before do_patch
do_compile() {
oe_runmake
}
do_install() {
install -d ${D}${sbindir}
install -m 0755 QFirehose ${D}${sbindir}
}
|