22 lines
542 B
BlitzBasic
22 lines
542 B
BlitzBasic
|
DESCRIPTION = "MTK boots"
|
||
|
LICENSE = "MediaTekProprietary"
|
||
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=23ecd380102e45504ca038dc56f6bdf5"
|
||
|
|
||
|
inherit workonsrc
|
||
|
WORKONSRC = "${TOPDIR}/../src/connectivity/boots"
|
||
|
|
||
|
INSANE_SKIP_${PN} += "already-stripped"
|
||
|
|
||
|
FILES_${PN} += "${bindir}/boots"
|
||
|
FILES_${PN} += "${bindir}/boots_srv"
|
||
|
|
||
|
do_compile() {
|
||
|
oe_runmake PREFIX="${prefix}" DESTDIR="${D}" BT_VCOM_RELAYER="-DVCOM_OPENED"
|
||
|
}
|
||
|
|
||
|
do_install() {
|
||
|
install -d ${D}${bindir}
|
||
|
install -m 0755 boots ${D}${bindir}
|
||
|
install -m 0755 boots_srv ${D}${bindir}
|
||
|
}
|