summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)