162b7ed745
The newer ap51-flash version and updated scripts will fix a problem on big-endian machines and uses a lot less memory (libpcap is not required anymore, no more image-buffering). A loop-script per ap51-flash instance will take care of restarting the app if selected in uci-config file. git-svn-id: svn://svn.openwrt.org/openwrt/packages@20374 3c298f89-4303-0410-b956-a3cf2f4a3e73
54 lines
1.5 KiB
Makefile
54 lines
1.5 KiB
Makefile
#
|
|
# Copyright (C) 2010 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:=ap51-flash
|
|
PKG_REV:=232
|
|
PKG_VERSION:=r$(PKG_REV)
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=svn
|
|
PKG_SOURCE_VERSION:=$(PKG_REV)
|
|
PKG_SOURCE_SUBDIR:=ap51-flash-$(PKG_VERSION)
|
|
PKG_SOURCE_URL:=http://dev.open-mesh.com/downloads/svn/ap51-flash/trunk
|
|
PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.gz
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
ifeq ($(CONFIG_BIG_ENDIAN),y)
|
|
STAMP_BUILT:=$(STAMP_BUILT)_big
|
|
endif
|
|
|
|
define Package/ap51-flash
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=A tool for flashing (nearly) all ap51/ap61 based routers
|
|
URL:=http://dev.open-mesh.com/wiki/ap51-flash-station
|
|
endef
|
|
|
|
TARGET_EXTRA_CFLAGS:=-DFLASH_FROM_FILE -DNO_LIBPCAP
|
|
ifeq ($(CONFIG_BIG_ENDIAN),y)
|
|
TARGET_EXTRA_CFLAGS:=$(TARGET_EXTRA_CFLAGS) -DUIP_CONF_BYTE_ORDER=1234
|
|
endif
|
|
|
|
# pass optimization flags
|
|
MAKE_FLAGS += \
|
|
OFLAGS="$(TARGET_CFLAGS)" \
|
|
EXTRA_CFLAGS="$(TARGET_EXTRA_CFLAGS)" \
|
|
REVISION="$(PKG_VERSION)" \
|
|
|
|
define Package/ap51-flash/install
|
|
$(INSTALL_DIR) $(1)/etc/config $(1)/etc/init.d $(1)/usr/sbin \
|
|
$(1)/usr/lib/ap51-flash
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ap51-flash $(1)/usr/sbin/
|
|
$(INSTALL_BIN) ./files/ap51-flash.init $(1)/etc/init.d/ap51-flash
|
|
$(INSTALL_BIN) ./files/ap51-flash.sh $(1)/usr/lib/ap51-flash/ap51-flash.sh
|
|
$(INSTALL_DATA) ./files/ap51-flash.conf $(1)/etc/config/ap51-flash
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ap51-flash))
|