mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 20:06:14 +02:00
6db7ad74f6
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8694 3c298f89-4303-0410-b956-a3cf2f4a3e73
68 lines
1.7 KiB
Makefile
68 lines
1.7 KiB
Makefile
#
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
# $Id$
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=sangam_atm
|
|
PKG_VERSION:=07.02.01.00
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=http://downloads.openwrt.org/sources
|
|
PKG_MD5SUM:=dc4d5c36532503a2f234f3303a0bf563
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define KernelPackage/sangam-atm/Default
|
|
SUBMENU:=Network Devices
|
|
DEPENDS:=@TARGET_ar7 +kmod-atm
|
|
TITLE:=AR7 ADSL driver
|
|
FILES:=$(PKG_BUILD_DIR)/tiatm.$(LINUX_KMOD_SUFFIX)
|
|
AUTOLOAD:=$(call AutoLoad,50,tiatm)
|
|
endef
|
|
|
|
define KernelPackage/sangam-atm-annex-a
|
|
$(call KernelPackage/sangam-atm/Default)
|
|
TITLE+= (Annex A, ADSL over POTS)
|
|
endef
|
|
|
|
define KernelPackage/sangam-atm-annex-a/description
|
|
The AR7 ADSL driver for Annex A (ADSL over POTS).
|
|
endef
|
|
|
|
define KernelPackage/sangam-atm-annex-b
|
|
$(call KernelPackage/sangam-atm/Default)
|
|
TITLE+= (Annex B, ADSL over ISDN)
|
|
endef
|
|
|
|
define KernelPackage/sangam-atm-annex-b/description
|
|
The AR7 ADSL driver for Annex B (ADSL over ISDN).
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C "$(LINUX_DIR)" \
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
ARCH="$(LINUX_KARCH)" \
|
|
SUBDIRS="$(PKG_BUILD_DIR)" \
|
|
modules
|
|
endef
|
|
|
|
define KernelPackage/sangam-atm-annex-a/install
|
|
mkdir -p $(1)/lib/firmware
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/ar0700mp.bin $(1)/lib/firmware/ar0700xx.bin
|
|
endef
|
|
|
|
define KernelPackage/sangam-atm-annex-b/install
|
|
mkdir -p $(1)/lib/firmware
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/ar0700db.bin $(1)/lib/firmware/ar0700xx.bin
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,sangam-atm-annex-a))
|
|
$(eval $(call KernelPackage,sangam-atm-annex-b))
|