diff options
author | John Crispin <john@openwrt.org> | 2009-10-02 09:41:22 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2009-10-02 09:41:22 +0000 |
commit | c1378fe9f1592c0dba0459f6aecd7931dc07ad6b (patch) | |
tree | e8d56926ced5d3578c2e4a6e6a8e2b576bf2e3b6 /package/ifxmips-atm/Makefile | |
parent | 7f3ed114f2c84012013ffecd3afe88e94d8580e4 (diff) | |
download | upstream-c1378fe9f1592c0dba0459f6aecd7931dc07ad6b.tar.gz upstream-c1378fe9f1592c0dba0459f6aecd7931dc07ad6b.tar.bz2 upstream-c1378fe9f1592c0dba0459f6aecd7931dc07ad6b.zip |
adds atm driver for ifxmips, code ported from wippies 2.6.16 gpl release. it compiles but throws ioctl -EINVAL during bring up of atm device, hence marked as broken
SVN-Revision: 17819
Diffstat (limited to 'package/ifxmips-atm/Makefile')
-rw-r--r-- | package/ifxmips-atm/Makefile | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/package/ifxmips-atm/Makefile b/package/ifxmips-atm/Makefile new file mode 100644 index 0000000000..68b77b6c75 --- /dev/null +++ b/package/ifxmips-atm/Makefile @@ -0,0 +1,49 @@ +# Copyright (C) 2009 OpenWrt.org +# All rights reserved. +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# +# blogic@openwrt.org +# + +include $(TOPDIR)/rules.mk +include $(INCLUDE_DIR)/kernel.mk + +PKG_NAME:=ifxmips-atm +PKG_RELEASE:=1 + +include $(INCLUDE_DIR)/package.mk + +define KernelPackage/ifxmips-atm + SUBMENU:=Network Devices + DEPENDS:=@BROKEN @TARGET_ifxmips +kmod-atm + TITLE:=ifxmips atm driver + FILES:=$(PKG_BUILD_DIR)/ifx-atm.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,50,ifx-atm) +endef + +define Kernel/Package/ifxmips-atm/description + This package provides the atm driver needed to make dsl work on ifxmips based boards +endef + +define Build/Prepare + mkdir -p $(PKG_BUILD_DIR) + $(CP) ./src/* $(PKG_BUILD_DIR)/ +endef + +define Build/Compile + $(MAKE) -C "$(LINUX_DIR)" \ + CROSS_COMPILE="$(TARGET_CROSS)" \ + ARCH="$(LINUX_KARCH)" \ + SUBDIRS="$(PKG_BUILD_DIR)" \ + modules +endef + +define KernelPackage/ifxmips-atm/install + $(INSTALL_DIR) $(1)/lib/modules/$(LINUX_VERSION) + $(CP) $(PKG_BUILD_DIR)/ifx-atm.ko $(1)/lib/modules/$(LINUX_VERSION) +endef + +$(eval $(call KernelPackage,ifxmips-atm)) + |