summaryrefslogtreecommitdiff
path: root/git-dahdi-linux-howto
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir@cohens.org.il>2009-06-11 16:39:49 +0300
committerTzafrir Cohen <tzafrir@cohens.org.il>2009-06-11 16:39:49 +0300
commit1fc59b7dcceb3dbcb77d491f78dbaf361a9094f2 (patch)
tree3feac15c19e441c7c445c8fd5875a5c99ebf05c9 /git-dahdi-linux-howto
parent7548f24eafc57a02f5f4e585bd065aa539f85f3a (diff)
explain how to work with dahdi-linux
Diffstat (limited to 'git-dahdi-linux-howto')
-rw-r--r--git-dahdi-linux-howto25
1 files changed, 25 insertions, 0 deletions
diff --git a/git-dahdi-linux-howto b/git-dahdi-linux-howto
new file mode 100644
index 0000000..1dbd3bf
--- /dev/null
+++ b/git-dahdi-linux-howto
@@ -0,0 +1,25 @@
+Basically the same as the asterisk HOWTO.
+
+Changes:
+
+Initial clone is:
+
+ git svn clone -s http://svn.digium.com/svn/dahdi/linux dahdi-linux
+
+The .gitignore file is:
+
+ cp ../asterisk-tools/dahdi-linux_gitignore .gitignore
+
+However, you need the Octasic interface files (at drivers/dahdi/oct612x).
+This can probably be done in some clever way using git submodule, but for
+now I chose the plain old symlink way:
+
+
+I chose the plain old symlink way:
+
+ cd ..
+ git svn clone -s http://svn.digium.com/svn/octasic_api/oct612x octapi
+ cd dahdi-linux
+ ln -s ../../../octapi/software driver/dahdi/oct612x
+
+(Patches are welcomed)