Version bump
[tuntaposx.git] / tuntap / INSTALL
blobec7107ef278f913d90847d005a72042503f3b669
2 Building
3 ========
5 If you want to build the tun/tap drivers, make sure you have Apple's Developer
6 Tools installed. Then from the top of the tun/tap source tree issue
8         # make
10 This will build the driver kexts and place them as tap.kext and tun.kext in the
11 top tun/tap directory. You can install these two kexts directly in
12 /Library/Extensions. As root, you can simply say
14         # make install_kext
16 Otherwise OS X will refuse to load the extensions. After that, they can be
17 loaded using kextload:
19         # kextload /Library/Extensions/tap.kext/
20         kextload: /Library/Extensions/tap.kext/ loaded successfully
21         # kextload /Library/Extensions/tun.kext/
22         kextload: /Library/Extensions/tun.kext/ loaded successfully
24 If you want to have the extensions loaded at boot time, use the startup items
25 provided in the directory startup_items. This can be done using the Makefile (as
26 root):
28         # make install_scripts
30 I have also included the files used to build the installer packages in the
31 directory pkg. They can be made by
33         # make pkg
35 This is all I have to say at the moment, feel free to mail me any bug reports,
36 problems and suggestions you have at <mattias.nissler@gmx.de>.