add file type autodetection for the unpack command and nuke PKG_CAT:= in lots of...
[openwrt.git] / package / ar7-atm / Makefile
1
2 # Copyright (C) 2006 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 include $(INCLUDE_DIR)/kernel.mk
11
12 PKG_NAME:=sangam-atm
13 PKG_VERSION:=0.1
14 PKG_RELEASE:=1
15
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
17 PKG_SOURCE_URL:=http://downloads.openwrt.org/sources
18 PKG_MD5SUM:=90c10702c9c3129e2ad1c01ce3975bf5
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define KernelPackage/sangam-atm-annex-a
23   SUBMENU:=Network Devices
24   DEPENDS:=@LINUX_2_4_AR7 +kmod-atm
25   TITLE:=AR7 ADSL driver (Annex A)
26   DESCRIPTION:=The AR7 ADSL driver for Annex A
27   VERSION:=$(PKG_VERSION)+$(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE)
28   FILES:=$(PKG_BUILD_DIR)/tiatm.$(LINUX_KMOD_SUFFIX)
29   AUTOLOAD:=$(call AutoLoad,50,tiatm)
30 endef
31
32 define KernelPackage/sangam-atm-annex-b
33   $(call KernelPackage/sangam-atm-annex-a)
34   TITLE:=AR7 ADSL driver (Annex B)
35   DESCRIPTION:=The AR7 ADSL driver for Annex B
36 endef
37
38 define Build/Compile
39         $(MAKE) -C "$(LINUX_DIR)" \
40                 CROSS_COMPILE="$(TARGET_CROSS)" \
41                 ARCH="$(LINUX_KARCH)" \
42                 SUBDIRS="$(PKG_BUILD_DIR)" \
43                 modules
44 endef
45
46 define KernelPackage/sangam-atm-annex-a/install
47         $(INSTALL_DATA) $(PKG_BUILD_DIR)/ar0700xx_a.bin $(1)/lib/modules/ar0700xx.bin
48 endef
49
50 define KernelPackage/sangam-atm-annex-b/install
51         $(INSTALL_DATA) $(PKG_BUILD_DIR)/ar0700xx_b.bin $(1)/lib/modules/ar0700xx.bin
52 endef
53
54 $(eval $(call KernelPackage,sangam-atm-annex-a))
55 $(eval $(call KernelPackage,sangam-atm-annex-b))