############################################################################# ## ## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ## ## This file is part of the Qt Enterprise Embedded Scripts of the Qt ## framework. ## ## $QT_BEGIN_LICENSE$ ## Commercial License Usage Only ## Licensees holding valid commercial Qt license agreements with Digia ## with an appropriate addendum covering the Qt Enterprise Embedded Scripts, ## may use this file in accordance with the terms contained in said license ## agreement. ## ## For further information use the contact form at ## http://qt.digia.com/contact-us. ## ## ## $QT_END_LICENSE$ ## ############################################################################# DESCRIPTION = "Android Debug Bridge Daemon" HOMEPAGE = "http://developer.android.com/tools/help/adb.html" SECTION = "devel" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://NOTICE;md5=2ddb23e63b1f9c3c46aaa4195f819a6d" PV = "android-4.2.2_r1.2" PR = "r0" SRCREV = "${PV}" RRECOMMENDS_${PN} += "kernel-module-g-ffs" SRC_URI = "git://android.googlesource.com/platform/system/core;protocol=https \ file://adbd.patch;striplevel=2 \ file://Makefile.adbd \ file://adb-init \ " S = "${WORKDIR}/git/adb" FILES_${PN} += "${bindir}/adbd" do_configure() { if [ -n "${ADB_PRODUCTID}" ]; then sed -i -e 's/PRODUCT=.*/PRODUCT=${ADB_PRODUCTID}/' ${WORKDIR}/adb-init fi } do_compile() { make -f ${WORKDIR}/Makefile.adbd } do_install() { install -m 0755 -d ${D}${bindir}/ install -m 0755 ${WORKDIR}/git/adb/adbd ${D}${bindir}/ install -m 0755 -d ${D}${sysconfdir}/init.d install -m 0755 ${WORKDIR}/adb-init ${D}${sysconfdir}/init.d/ } INITSCRIPT_NAME = "adb-init" INITSCRIPT_PARAMS = "defaults 96" inherit update-rc.d