allow different ar7-atm versions to be selected (#6345)
SVN-Revision: 18887
This commit is contained in:
parent
30d69f1970
commit
e63dfd411e
2 changed files with 38 additions and 2 deletions
15
package/ar7-atm/Config.in
Normal file
15
package/ar7-atm/Config.in
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
choice
|
||||||
|
prompt "Firmware version"
|
||||||
|
depends on (PACKAGE_kmod-sangam-atm-annex-a || PACKAGE_kmod-sangam-atm-annex-b)
|
||||||
|
default AR7_ATM_FW_VERSION_704
|
||||||
|
help
|
||||||
|
This option allows you to switch between firmware/driver versions which
|
||||||
|
might improve the DSL line speed.
|
||||||
|
|
||||||
|
config AR7_ATM_FW_VERSION_704
|
||||||
|
bool "D7.04.03.00"
|
||||||
|
|
||||||
|
config AR7_ATM_FW_VERSION_703
|
||||||
|
bool "D7.03.01.00"
|
||||||
|
|
||||||
|
endchoice
|
|
@ -9,23 +9,36 @@ include $(TOPDIR)/rules.mk
|
||||||
include $(INCLUDE_DIR)/kernel.mk
|
include $(INCLUDE_DIR)/kernel.mk
|
||||||
|
|
||||||
PKG_NAME:=sangam_atm
|
PKG_NAME:=sangam_atm
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_AR7_ATM_FW_VERSION_704),y)
|
||||||
PKG_VERSION:=D7.04.03.00
|
PKG_VERSION:=D7.04.03.00
|
||||||
|
PKG_MD5SUM:=3d76004e46f09e88931f91670cb420ad
|
||||||
PKG_RELEASE:=R1
|
PKG_RELEASE:=R1
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_AR7_ATM_FW_VERSION_703),y)
|
||||||
|
PKG_VERSION:=D7.03.01.00
|
||||||
|
PKG_MD5SUM:=bc6e9c6adb1be25820c7ee661de8ca7d
|
||||||
|
PKG_RELEASE:=R2
|
||||||
|
endif
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_RELEASE).tar.bz2
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_RELEASE).tar.bz2
|
||||||
PKG_SOURCE_URL:=http://mirror2.openwrt.org/sources
|
PKG_SOURCE_URL:=http://mirror2.openwrt.org/sources
|
||||||
PKG_MD5SUM:=3d76004e46f09e88931f91670cb420ad
|
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
define KernelPackage/sangam-atm/Default
|
define KernelPackage/sangam-atm/Default
|
||||||
SUBMENU:=Network Devices
|
SUBMENU:=Network Devices
|
||||||
DEPENDS:=@TARGET_ar7 +kmod-atm
|
DEPENDS:=@TARGET_ar7 +kmod-atm
|
||||||
TITLE:=AR7 ADSL driver
|
TITLE:=AR7 ADSL driver
|
||||||
FILES:=$(PKG_BUILD_DIR)/tiatm.$(LINUX_KMOD_SUFFIX)
|
FILES:=$(PKG_BUILD_DIR)/tiatm.$(LINUX_KMOD_SUFFIX)
|
||||||
AUTOLOAD:=$(call AutoLoad,50,tiatm)
|
AUTOLOAD:=$(call AutoLoad,50,tiatm)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/sangam-atm/config
|
||||||
|
source "$(SOURCE)/Config.in"
|
||||||
|
endef
|
||||||
|
|
||||||
define KernelPackage/sangam-atm-annex-a
|
define KernelPackage/sangam-atm-annex-a
|
||||||
$(call KernelPackage/sangam-atm/Default)
|
$(call KernelPackage/sangam-atm/Default)
|
||||||
TITLE+= (Annex A, ADSL over POTS)
|
TITLE+= (Annex A, ADSL over POTS)
|
||||||
|
@ -35,6 +48,10 @@ define KernelPackage/sangam-atm-annex-a/description
|
||||||
The AR7 ADSL driver for Annex A (ADSL over POTS).
|
The AR7 ADSL driver for Annex A (ADSL over POTS).
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/sangam-atm-annex-a/config
|
||||||
|
$(call KernelPackage/sangam-atm/config)
|
||||||
|
endef
|
||||||
|
|
||||||
define KernelPackage/sangam-atm-annex-b
|
define KernelPackage/sangam-atm-annex-b
|
||||||
$(call KernelPackage/sangam-atm/Default)
|
$(call KernelPackage/sangam-atm/Default)
|
||||||
TITLE+= (Annex B, ADSL over ISDN)
|
TITLE+= (Annex B, ADSL over ISDN)
|
||||||
|
@ -44,6 +61,10 @@ define KernelPackage/sangam-atm-annex-b/description
|
||||||
The AR7 ADSL driver for Annex B (ADSL over ISDN).
|
The AR7 ADSL driver for Annex B (ADSL over ISDN).
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/sangam-atm-annex-a/config
|
||||||
|
$(call KernelPackage/sangam-atm/config)
|
||||||
|
endef
|
||||||
|
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
$(MAKE) -C "$(LINUX_DIR)" \
|
$(MAKE) -C "$(LINUX_DIR)" \
|
||||||
CROSS_COMPILE="$(TARGET_CROSS)" \
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
||||||
|
|
Loading…
Reference in a new issue