2006-12-28 18:15:39 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=fxload
|
|
|
|
PKG_VERSION:=2002_04_11
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=@SF/linux-hotplug
|
|
|
|
PKG_MD5SUM:=cafd71a5bff0c57bcd248273b2541c05
|
|
|
|
PKG_CAT:=zcat
|
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/fxload
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
DEPENDS:=@USB_SUPPORT +udev
|
|
|
|
TITLE:=Downloading firmware into EZ-USB microcontrollers
|
|
|
|
URL:=http://linux-hotplug.sourceforge.net/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
2007-02-01 23:22:50 +00:00
|
|
|
$(call Build/Compile/Default, \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
2006-12-28 18:15:39 +00:00
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/fxload/install
|
|
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/sbin/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/share/usb
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/a3load.hex $(1)/usr/share/usb
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,fxload))
|