mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-16 23:02:33 +00:00
Changelog: 2.6.2: - Bug in C code (with gcc 1.5) fixed 2.6.1: - Wrapper now handles devices with non-continuous interface numbering: www.draisberghof.de/usb_modeswitch/bb/viewtopic.php?f=2&t=2915&p=19605 - catch error with retrieving the active configuration, exit gracefully: https://bugs.launchpad.net/bugs/1880191 Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
27 lines
993 B
BlitzBasic
27 lines
993 B
BlitzBasic
SUMMARY = "A mode switching tool for controlling 'flip flop' (multiple device) USB gear"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=091556bd6d0154cd4c2d17a1bfc7380a"
|
|
|
|
DEPENDS = "libusb1"
|
|
|
|
SRC_URI = "http://www.draisberghof.de/usb_modeswitch/${BP}.tar.bz2"
|
|
SRC_URI[sha256sum] = "f7abd337784a9d1bd39cb8a587518aff6f2a43d916145eafd80b1b8b7146db66"
|
|
|
|
inherit pkgconfig systemd
|
|
|
|
SYSTEMD_SERVICE:${PN} = "usb_modeswitch@.service"
|
|
|
|
EXTRA_OEMAKE = "TCL=${bindir}/tclsh"
|
|
|
|
FILES:${PN} = "${bindir} ${sysconfdir} ${nonarch_base_libdir}/udev/usb_modeswitch ${sbindir} ${localstatedir}/lib/usb_modeswitch"
|
|
RDEPENDS:${PN} = "tcl"
|
|
RRECOMMENDS:${PN} = "usb-modeswitch-data"
|
|
|
|
do_install() {
|
|
oe_runmake DESTDIR=${D} UDEVDIR=${D}/${nonarch_base_libdir}/udev install
|
|
if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
|
|
install -d ${D}/${systemd_unitdir}/system
|
|
install -m 644 ${S}/usb_modeswitch@.service ${D}/${systemd_unitdir}/system
|
|
fi
|
|
}
|