| 1 | # |
| 2 | # Copyright (C) 2011-2012 OpenWrt.org |
| 3 | # |
| 4 | # This is free software, licensed under the GNU General Public License v2. |
| 5 | # See /LICENSE for more information. |
| 6 | # |
| 7 | |
| 8 | include $(TOPDIR)/rules.mk |
| 9 | |
| 10 | PKG_NAME:=usbreset |
| 11 | PKG_RELEASE:=2 |
| 12 | |
| 13 | include $(INCLUDE_DIR)/package.mk |
| 14 | |
| 15 | define Package/usbreset |
| 16 | SECTION:=utils |
| 17 | CATEGORY:=Utilities |
| 18 | TITLE:=Utility to send a USB port reset to a USB device |
| 19 | MAINTAINER:=Jo-Philipp Wich <xm@subsignal.org> |
| 20 | endef |
| 21 | |
| 22 | define Package/usbreset/description |
| 23 | This package contains the small usbreset utility which |
| 24 | can be used to send a USB port reset to a USB device - |
| 25 | useful for debugging or to force re-detection of particular |
| 26 | devices. |
| 27 | endef |
| 28 | |
| 29 | define Build/Prepare |
| 30 | $(INSTALL_DIR) $(PKG_BUILD_DIR) |
| 31 | $(INSTALL_DATA) ./src/usbreset.c $(PKG_BUILD_DIR)/ |
| 32 | endef |
| 33 | |
| 34 | define Build/Compile |
| 35 | $(TARGET_CC) $(TARGET_CFLAGS) -Wall \ |
| 36 | -o $(PKG_BUILD_DIR)/usbreset $(PKG_BUILD_DIR)/usbreset.c |
| 37 | endef |
| 38 | |
| 39 | define Package/usbreset/install |
| 40 | $(INSTALL_DIR) $(1)/usr/bin |
| 41 | $(INSTALL_BIN) $(PKG_BUILD_DIR)/usbreset $(1)/usr/bin/ |
| 42 | endef |
| 43 | |
| 44 | $(eval $(call BuildPackage,usbreset)) |
| 45 | |