orion: update kernel to version 4.14
[openwrt/openwrt.git] / package / kernel / ar7-atm / Makefile
1 #
2 # Copyright (C) 2006-2014 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9 include $(INCLUDE_DIR)/kernel.mk
10
11 PKG_NAME:=sangam_atm
12
13 ifeq ($(CONFIG_AR7_ATM_FW_VERSION_705),y)
14 PKG_VERSION:=D7.05.01.00
15 PKG_HASH:=874b5baff92159e99cef0dfb839d6fdc124a46aef7374653064d29d9eee9a3c9
16 PKG_RELEASE:=R1
17 PATCH_DIR:=patches-$(PKG_VERSION)
18 endif
19
20 ifeq ($(CONFIG_AR7_ATM_FW_VERSION_704),y)
21 PKG_VERSION:=D7.04.03.00
22 PKG_HASH:=af2e203e4c86f9a86cdd07d172897b07e66a25379376e8da4c1b14816f86b58f
23 PKG_RELEASE:=R1
24 PATCH_DIR:=patches-$(PKG_VERSION)
25 endif
26
27 ifeq ($(CONFIG_AR7_ATM_FW_VERSION_703),y)
28 PKG_VERSION:=D7.03.01.00
29 PKG_HASH:=2d156164ef5abbe10ffb2400ada4cef2035df3ba2b3f866f00bdede489861c4d
30 PKG_RELEASE:=R2
31 PATCH_DIR:=patches-D7.04.03.00
32 endif
33
34 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_RELEASE).tar.bz2
35 PKG_SOURCE_URL:=http://mirror2.openwrt.org/sources
36
37 PKG_FLAGS:=nonshared
38
39 include $(INCLUDE_DIR)/package.mk
40
41 define KernelPackage/sangam-atm/Default
42 SUBMENU:=Network Devices
43 DEPENDS:=@TARGET_ar7_generic +kmod-atm
44 TITLE:=AR7 ADSL driver
45 FILES:=$(PKG_BUILD_DIR)/tiatm.ko
46 AUTOLOAD:=$(call AutoLoad,50,tiatm)
47 MENU:=1
48 endef
49
50 define KernelPackage/sangam-atm/config
51 source "$(SOURCE)/Config.in"
52 endef
53
54 define KernelPackage/sangam-atm-annex-a
55 $(call KernelPackage/sangam-atm/Default)
56 TITLE+= (Annex A, ADSL over POTS)
57 endef
58
59 define KernelPackage/sangam-atm-annex-a/description
60 The AR7 ADSL driver for Annex A (ADSL over POTS).
61 endef
62
63 define KernelPackage/sangam-atm-annex-a/config
64 $(call KernelPackage/sangam-atm/config)
65 endef
66
67 define KernelPackage/sangam-atm-annex-b
68 $(call KernelPackage/sangam-atm/Default)
69 TITLE+= (Annex B, ADSL over ISDN)
70 endef
71
72 define KernelPackage/sangam-atm-annex-b/description
73 The AR7 ADSL driver for Annex B (ADSL over ISDN).
74 endef
75
76 define KernelPackage/sangam-atm-annex-a/config
77 $(call KernelPackage/sangam-atm/config)
78 endef
79
80 define Build/Compile
81 $(MAKE) -C "$(LINUX_DIR)" \
82 $(KERNEL_MAKE_FLAGS) \
83 SUBDIRS="$(PKG_BUILD_DIR)" \
84 modules
85 endef
86
87 define KernelPackage/sangam-atm-annex-a/install
88 mkdir -p $(1)/lib/firmware
89 $(INSTALL_DATA) $(PKG_BUILD_DIR)/ar0700mp.bin $(1)/lib/firmware/
90 $(LN) ar0700mp.bin $(1)/lib/firmware/ar0700xx.bin
91 endef
92
93 define KernelPackage/sangam-atm-annex-b/install
94 mkdir -p $(1)/lib/firmware
95 $(INSTALL_DATA) $(PKG_BUILD_DIR)/ar0700db.bin $(1)/lib/firmware/
96 $(LN) ar0700db.bin $(1)/lib/firmware/ar0700xx.bin
97 endef
98
99 $(eval $(call KernelPackage,sangam-atm-annex-a))
100 $(eval $(call KernelPackage,sangam-atm-annex-b))