96797378ccfdec2eaf8739e3f41ee97b479e42e1
[openwrt-10.03/.git] / package / admswconfig / Makefile
1
2 # Copyright (C) 2007 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=admswconfig
12 PKG_VERSION:=0.1
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://downloads.openwrt.org/sources
17 PKG_MD5SUM:=faafd4618f970119a665b11b21ac6a26
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/admswconfig
22   SECTION:=utils
23   CATEGORY:=Utilities
24   TITLE:=ADM5120 Switch configuration tool
25   DEPENDS:=@TARGET_adm5120
26   URL:=http://sharon.esrac.ele.tue.nl/users/pe1rxq/linux-adm/admswconfig/
27 endef
28
29 define Package/admswconfig/description
30  A program to configure the internal ethernet switch of an ADM5120 processor.
31  You need the corresponding driver for the switch in the kernel. 
32  With this program you can configure which ports of the switch belong 
33  to the different ethernet devices.
34 endef
35
36 define Build/Configure
37 endef
38
39 define Build/Compile
40         $(TARGET_CC) $(TARGET_CFLAGS) -Os $(PKG_BUILD_DIR)/admswconfig.c -o $(PKG_BUILD_DIR)/$(PKG_NAME)
41 endef
42
43 define Package/admswconfig/install
44         $(INSTALL_DIR) $(1)/sbin
45         $(INSTALL_BIN) $(PKG_BUILD_DIR)/admswconfig $(1)/sbin/
46         $(INSTALL_DIR) $(1)/lib/network/
47         $(INSTALL_DATA) ./files/admswswitch.sh $(1)/lib/network/admswswitch.sh
48         $(INSTALL_DIR) $(1)/etc/init.d
49         $(INSTALL_BIN) ./files/admswconfig $(1)/etc/init.d/admswconfig
50 endef
51
52 $(eval $(call BuildPackage,admswconfig))