mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-14 06:16:04 +01:00
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
39 lines
1.2 KiB
BlitzBasic
39 lines
1.2 KiB
BlitzBasic
DESCRIPTION = "Different utilities from Android - corressponding configuration files for using ConfigFS"
|
|
SECTION = "console/utils"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
|
|
|
|
S = "${UNPACKDIR}"
|
|
|
|
SRC_URI = " \
|
|
file://android-gadget-setup \
|
|
file://android-gadget-start \
|
|
file://android-gadget-cleanup \
|
|
file://10-adbd-configfs.conf \
|
|
"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 ${UNPACKDIR}/android-gadget-setup ${D}${bindir}
|
|
install -m 0755 ${UNPACKDIR}/android-gadget-start ${D}${bindir}
|
|
install -m 0755 ${UNPACKDIR}/android-gadget-cleanup ${D}${bindir}
|
|
|
|
if [ -r ${UNPACKDIR}/android-gadget-setup.machine ] ; then
|
|
install -d ${D}${sysconfdir}
|
|
install -m 0644 ${UNPACKDIR}/android-gadget-setup.machine ${D}${sysconfdir}
|
|
fi
|
|
|
|
install -d ${D}${systemd_unitdir}/system/android-tools-adbd.service.d
|
|
install -m 0644 ${UNPACKDIR}/10-adbd-configfs.conf ${D}${systemd_unitdir}/system/android-tools-adbd.service.d
|
|
}
|
|
|
|
FILES:${PN} += " \
|
|
${systemd_unitdir}/system/ \
|
|
"
|
|
|
|
PROVIDES += "android-tools-conf"
|
|
RPROVIDES:${PN} = "android-tools-conf"
|
|
BBCLASSEXTEND = "native"
|