summaryrefslogtreecommitdiff
path: root/tap-mac/tuntap/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'tap-mac/tuntap/INSTALL')
-rw-r--r--tap-mac/tuntap/INSTALL37
1 files changed, 0 insertions, 37 deletions
diff --git a/tap-mac/tuntap/INSTALL b/tap-mac/tuntap/INSTALL
deleted file mode 100644
index ec7107ef..00000000
--- a/tap-mac/tuntap/INSTALL
+++ /dev/null
@@ -1,37 +0,0 @@
-
-Building
-========
-
-If you want to build the tun/tap drivers, make sure you have Apple's Developer
-Tools installed. Then from the top of the tun/tap source tree issue
-
- # make
-
-This will build the driver kexts and place them as tap.kext and tun.kext in the
-top tun/tap directory. You can install these two kexts directly in
-/Library/Extensions. As root, you can simply say
-
- # make install_kext
-
-Otherwise OS X will refuse to load the extensions. After that, they can be
-loaded using kextload:
-
- # kextload /Library/Extensions/tap.kext/
- kextload: /Library/Extensions/tap.kext/ loaded successfully
- # kextload /Library/Extensions/tun.kext/
- kextload: /Library/Extensions/tun.kext/ loaded successfully
-
-If you want to have the extensions loaded at boot time, use the startup items
-provided in the directory startup_items. This can be done using the Makefile (as
-root):
-
- # make install_scripts
-
-I have also included the files used to build the installer packages in the
-directory pkg. They can be made by
-
- # make pkg
-
-This is all I have to say at the moment, feel free to mail me any bug reports,
-problems and suggestions you have at <mattias.nissler@gmx.de>.
-