diff options
Diffstat (limited to 'obsolete-buildroot/sources/openwrt/ipkg/kmod-tun')
-rw-r--r-- | obsolete-buildroot/sources/openwrt/ipkg/kmod-tun/CONTROL/control | 8 | ||||
-rwxr-xr-x | obsolete-buildroot/sources/openwrt/ipkg/kmod-tun/CONTROL/rules | 31 |
2 files changed, 0 insertions, 39 deletions
diff --git a/obsolete-buildroot/sources/openwrt/ipkg/kmod-tun/CONTROL/control b/obsolete-buildroot/sources/openwrt/ipkg/kmod-tun/CONTROL/control deleted file mode 100644 index 3c9ab9887..000000000 --- a/obsolete-buildroot/sources/openwrt/ipkg/kmod-tun/CONTROL/control +++ /dev/null @@ -1,8 +0,0 @@ -Package: kmod-tun -Priority: optional -Section: kernel -Version: 2.4.20-1 -Architecture: mipsel -Maintainer: Nico <nthill@free.fr> -Source: http://openwrt.org/cgi-bin/viewcvs.cgi/buildroot/ -Description: Universal TUN/TAP device driver kernel module diff --git a/obsolete-buildroot/sources/openwrt/ipkg/kmod-tun/CONTROL/rules b/obsolete-buildroot/sources/openwrt/ipkg/kmod-tun/CONTROL/rules deleted file mode 100755 index 58e95f741..000000000 --- a/obsolete-buildroot/sources/openwrt/ipkg/kmod-tun/CONTROL/rules +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/make -f - -ifeq ($(strip $(TOPDIR)),) -TOPDIR := $(shell pwd)/../../../.. -endif - - -PACKAGE := kmod-tun - -MY_INSTALL_DIR := /tmp/$(PACKAGE) - - -build: - - -install: - rm -rf $(MY_INSTALL_DIR) - install -m0755 -d $(MY_INSTALL_DIR)/lib/ - bzcat $(TOPDIR)/openwrt-kmodules.tar.bz2 | tar -C $(MY_INSTALL_DIR)/lib/ -xvf - \ - modules/2.4.20/kernel/drivers/net/tun.o \ - - mv -f \ - $(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel/drivers/net/tun.o \ - $(MY_INSTALL_DIR)/lib/modules/2.4.20/ - - rm -rf \ - $(MY_INSTALL_DIR)/lib/modules/2.4.20/kernel - - -clean: - |