Root/package/usbreset/Makefile

1#
2# Copyright (C) 2011 OpenWrt.org
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8include $(TOPDIR)/rules.mk
9
10PKG_NAME:=usbreset
11PKG_RELEASE:=1
12
13include $(INCLUDE_DIR)/package.mk
14
15define 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>
20endef
21
22define 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.
27endef
28
29define Build/Prepare
30    $(INSTALL_DIR) $(PKG_BUILD_DIR)
31    $(INSTALL_DATA) ./src/usbreset.c $(PKG_BUILD_DIR)/
32endef
33
34define Build/Compile
35    $(TARGET_CC) $(TARGET_CFLAGS) -Wall \
36        -o $(PKG_BUILD_DIR)/usbreset $(PKG_BUILD_DIR)/usbreset.c
37endef
38
39define Package/usbreset/install
40    $(INSTALL_DIR) $(1)/usr/bin
41    $(INSTALL_BIN) $(PKG_BUILD_DIR)/usbreset $(1)/usr/bin/
42endef
43
44$(eval $(call BuildPackage,usbreset))
45

Archive Download this file



interactive