Added support for Eagle 8051 based USB ADSL modems (such as the Sagem F@st800)
SVN-Revision: 2841
This commit is contained in:
parent
2e3cea7330
commit
59611c9674
6 changed files with 66 additions and 0 deletions
|
@ -10,4 +10,5 @@ source "target/linux/package/openswan/Config.in"
|
|||
source "target/linux/package/shfs/Config.in"
|
||||
source "target/linux/package/spca5xx/Config.in"
|
||||
source "target/linux/package/switch/Config.in"
|
||||
source "target/linux/package/ueagle-atm/Config.in"
|
||||
source "target/linux/package/wlcompat/Config.in"
|
||||
|
|
|
@ -14,6 +14,7 @@ package-$(BR2_PACKAGE_KMOD_OPENSWAN) += openswan
|
|||
package-$(BR2_PACKAGE_KMOD_SHFS) += shfs
|
||||
package-$(BR2_PACKAGE_KMOD_SPCA5XX) += spca5xx
|
||||
package-$(BR2_PACKAGE_KMOD_SWITCH) += switch
|
||||
package-$(BR2_PACKAGE_KMOD_UEAGLE_ATM) += ueagle-atm
|
||||
package-y += base-files
|
||||
bcm43xx-dscape-compile: ieee80211-dscape-compile
|
||||
|
||||
|
|
10
openwrt/target/linux/package/ueagle-atm/Config.in
Normal file
10
openwrt/target/linux/package/ueagle-atm/Config.in
Normal file
|
@ -0,0 +1,10 @@
|
|||
config BR2_PACKAGE_KMOD_UEAGLE_ATM
|
||||
prompt "kmod-ueagle-atm.................... Kernel driver for Eagle 8051 based USB ADSL modems"
|
||||
tristate
|
||||
depends BR2_LINUX_2_6_BRCM
|
||||
default m if CONFIG_DEVEL
|
||||
help
|
||||
Kernel driver for Eagle 8051 USB ADSL modems
|
||||
|
||||
http://www.eagle-usb.org
|
||||
|
47
openwrt/target/linux/package/ueagle-atm/Makefile
Normal file
47
openwrt/target/linux/package/ueagle-atm/Makefile
Normal file
|
@ -0,0 +1,47 @@
|
|||
# $Id: Makefile 2767 2005-12-25 02:10:14Z wbx $
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
include ../../rules.mk
|
||||
|
||||
PKG_NAME:=ueagle-atm
|
||||
PKG_VERSION:=1.0d1
|
||||
PKG_RELEASE:=1
|
||||
PKG_MD5SUM:=5da1fceb15168f4c7ad407a3e38ddecb
|
||||
|
||||
PKG_SOURCE_URL:=http://castet.matthieu.free.fr/eagle/release/
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_CAT:=zcat
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||
|
||||
ifeq ($(KERNEL_DIR),)
|
||||
KERNEL_DIR:=$(LINUX_DIR)
|
||||
endif
|
||||
KERNEL_VERSION=$(shell echo "$(LINUX_VERSION)" | cut -d. -f1,2)
|
||||
|
||||
include $(TOPDIR)/package/rules.mk
|
||||
|
||||
$(eval $(call PKG_template,KMOD_UEAGLE_ATM,kmod-ueagle-atm,$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE),$(ARCH),kernel ($(LINUX_VERSION)-$(BOARD)-$(KERNEL_RELEASE))))
|
||||
|
||||
$(PKG_BUILD_DIR)/.configured:
|
||||
touch $@
|
||||
|
||||
$(PKG_BUILD_DIR)/.built:
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
ARCH="$(LINUX_KARCH)" \
|
||||
CROSS_COMPILE="$(TARGET_CROSS)" \
|
||||
TARGET="$(HAL_TARGET)" \
|
||||
KERNELDIR="$(KERNEL_DIR)" \
|
||||
all
|
||||
touch $@
|
||||
|
||||
$(IPKG_KMOD_UEAGLE_ATM):
|
||||
install -m0755 -d $(IDIR_KMOD_UEAGLE_ATM)/lib/modules/$(LINUX_VERSION) $(IDIR_KMOD_MADWIFI)/etc/modules.d
|
||||
install -m0644 ./files/$(PKG_NAME).modules $(IDIR_KMOD_UEAGLE_ATM)/etc/modules.d/10-$(PKG_NAME)
|
||||
cp -fpR $(PKG_BUILD_DIR)/driver/ueagle-atm.$(LINUX_KMOD_SUFFIX) \
|
||||
$(PKG_BUILD_DIR)/usbatm_iso/usbatm.$(LINUX_KMOD_SUFFIX) \
|
||||
$(IDIR_KMOD_UEAGLE_ATM)/lib/modules/$(LINUX_VERSION)/
|
||||
$(RSTRIP_KMOD) $(IDIR_KMOD_UEAGLE_ATM)
|
||||
$(IPKG_BUILD) $(IDIR_KMOD_UEAGLE_ATM) $(PACKAGE_DIR)
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
usbatm
|
||||
ueagle-atm
|
|
@ -0,0 +1,5 @@
|
|||
Package: kmod-ueagle-atm
|
||||
Priority: optional
|
||||
Section: sys
|
||||
Depends: kmod-usb-core
|
||||
Description: Kernel driver for Eagle 8051 based USB ADSL modems
|
Loading…
Reference in a new issue