[Pkg-voip-commits] r6498 - in /dahdi-linux/trunk/debian: changelog patches/fix_readme_astribank patches/series

tzafrir-guest at alioth.debian.org tzafrir-guest at alioth.debian.org
Thu Nov 20 10:17:36 UTC 2008


Author: tzafrir-guest
Date: Thu Nov 20 10:17:36 2008
New Revision: 6498

URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=6498
Log:
Patch fix_readme_astribank: Fix an asciidoc formatting issue. 

Added:
    dahdi-linux/trunk/debian/patches/fix_readme_astribank
Modified:
    dahdi-linux/trunk/debian/changelog
    dahdi-linux/trunk/debian/patches/series

Modified: dahdi-linux/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-voip/dahdi-linux/trunk/debian/changelog?rev=6498&op=diff
==============================================================================
--- dahdi-linux/trunk/debian/changelog (original)
+++ dahdi-linux/trunk/debian/changelog Thu Nov 20 10:17:36 2008
@@ -9,8 +9,9 @@
   * Dropping some aparantly unused external Zaptel drivers.
   * Extra drivers moved from kernel/ to drivers/dahdi/ to fit the kernel tree.
   * Patch udev: Fix udev rules generation.
-
- -- Tzafrir Cohen <tzafrir.cohen at xorcom.com>  Thu, 20 Nov 2008 02:03:48 +0200
+  * Patch fix_readme_astribank: Fix an asciidoc formatting issue. 
+
+ -- Tzafrir Cohen <tzafrir.cohen at xorcom.com>  Thu, 20 Nov 2008 12:01:53 +0200
 
 zaptel (1:1.4.11~dfsg-3) unstable; urgency=low
 

Added: dahdi-linux/trunk/debian/patches/fix_readme_astribank
URL: http://svn.debian.org/wsvn/pkg-voip/dahdi-linux/trunk/debian/patches/fix_readme_astribank?rev=6498&op=file
==============================================================================
--- dahdi-linux/trunk/debian/patches/fix_readme_astribank (added)
+++ dahdi-linux/trunk/debian/patches/fix_readme_astribank Thu Nov 20 10:17:36 2008
@@ -1,0 +1,154 @@
+Fix asciidoc formatting issues that caused errors with asciidoc on Etch.
+
+Source: svn diff -c5340 http://svn.digium.com/svn/dahdi/linux/trunk
+(To be included on next release)
+
+Index: drivers/dahdi/xpp/README.Astribank
+===================================================================
+--- a/drivers/dahdi/xpp/README.Astribank	(revision 5339)
++++ b/drivers/dahdi/xpp/README.Astribank	(revision 5340)
+@@ -33,7 +33,7 @@
+ 
+ 
+ Dahdi Init Configuration File
+-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
++~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ The dahdi init.d script, genzaptelconf and the XPD init scripts uses the 
+ parameters located in file /etc/default/zaptel (on Debian) or 
+ /etc/sysconfig/zaptel (on RedHats). There is a number of useful parameters 
+@@ -80,7 +80,7 @@
+ -----------------------------------------------------------
+ 
+ /etc/dahdi/system.conf
+-~~~~~~~~~~~~~~~~
++~~~~~~~~~~~~~~~~~~~~~~
+ 
+ Astribank 8
+ ^^^^^^^^^^^
+@@ -133,8 +133,8 @@
+     dchan=24,48,72,96
+   
+ 
+-/etc/asterisk/zapata.conf
+-~~~~~~~~~~~~~~~~~~~~~~~~~
++/etc/asterisk/chan_dahdi.conf
++~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ Astribank 8
+ ^^^^^^^^^^^   
+     [channels]
+@@ -298,22 +298,25 @@
+ Sample dialplan (extensions.conf) for all the above:
+ 
+ -----------------------------------------------------------
+-[phones-zap]
++[phones-dahdi]
++; With Asterisk 1.4 you will may need to use here 'Zap' instead of
++; DAHDI. See Zaptel-to-DAHDI.txt .
++;
+ ; 6001 will dial to channel 1, 6020, to Dahdi channel 20, etc.
+-exten => _6XXX,1,Dial(ZAP/${EXTEN:1})
++exten => _6XXX,1,Dial(DAHDI/${EXTEN:1})
+ ; Useful for debugging trunks. Will potentially allow users to
+ ; bypass context limitations.
+-;exten => _6XXX.,1,Dial(ZAP/${EXTEN:1:3}/${EXTEN:4})
++;exten => _6XXX.,1,Dial(DAHDI/${EXTEN:1:3}/${EXTEN:4})
+ 
+ [trunk]
+ ; A number that begins with 9: dial it through a trunk
+ ; (we put FXO channels and TE channels in group 0).
+ ; The leading 9 is stripped.
+-exten => _9.,1,Dial(Zap/g0/${EXTEN:1})
++exten => _9.,1,Dial(DAHDI/g0/${EXTEN:1})
+ ; dialing a number that begins with 83 will dial it through
+ ; span 3, and so forth. The two leading digits are stripped.
+ ; (Each digital span is also added to group 10+span number).
+-exten => _8X.,1,Dial(Zap/g1${EXTEN:1:1}/${EXTEN:2})
++exten => _8X.,1,Dial(DAHDI/g1${EXTEN:1:1}/${EXTEN:2})
+ 
+ [from-internal] 
+ ; The context of FXS ports: analog phones.
+@@ -328,7 +331,7 @@
+ ; Calls from the PSTN enter here. Redirect calls to an IVR 
+ ; or a default extension in the s context here. In this case we  
+ ; redirect calls to Dahdi channel 1: 
+-exten => s,1,Dial(Zap/1) 
++exten => s,1,Dial(DAHDI/1) 
+ 
+ ; Alternatively, the following will redirect you to the demo IVR 
+ ; from the sample extensions.conf of Asterisk:
+@@ -350,13 +353,13 @@
+ exten => 203,n,Hangup
+ 
+ [astbank-input] 
+-exten => s,1,Set(ZAP_CHAN=${CUT(CHANNEL,-,1)}) 
+-exten => s,n,Set(ZAP_CHAN=${CUT(ZAP_CHAN,/,2)}) 
++exten => s,1,Set(DAHDI_CHAN=${CUT(CHANNEL,-,1)}) 
++exten => s,n,Set(DAHDI_CHAN=${CUT(DAHDI_CHAN,/,2)}) 
+ ; 11 is the number of the first input port. At least in the sample 
+ ; configuration below. 
+-;exten => s,n,Set(INPUT_NUM=$[${ZAP_CHAN}-11)]) 
++;exten => s,n,Set(INPUT_NUM=$[${DAHDI_CHAN}-11)]) 
+ ; The sample below just logs the signal.  
+-exten => s,n,NoOp(Got signal from Dahdi Channel ${ZAP_CHAN}) 
++exten => s,n,NoOp(Got signal from Dahdi Channel ${DAHDI_CHAN}) 
+ ; Alternatively: 
+ ;exten => s,n,System(run something) 
+ 
+@@ -400,9 +403,9 @@
+   loading) - Check that the Astribank is connected indeed.
+ 
+ 
+-Dahdi Registration
+-~~~~~~~~~~~~~~~~~~~
+-Check if the Astribank spans are registered in Dahdi
++DAHDI Registration
++~~~~~~~~~~~~~~~~~~
++Check if the Astribank spans are registered in DAHDI:
+ 
+   dahdi_registration
+ 
+@@ -420,8 +423,8 @@
+   **zap_autoreg** for the further details.
+ 
+ 
+-Dahdi Level Information
+-~~~~~~~~~~~~~~~~~~~~~~~~
++DAHDI Level Information
++~~~~~~~~~~~~~~~~~~~~~~~
+ You can get some information regarding Dahdi channels by running one of the
+ following commands:
+ 
+@@ -454,7 +457,7 @@
+ 
+ Asterisk Level Information
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~
+-  asterisk -rx 'zap show channels'
++  asterisk -rx 'dahdi show channels'
+ 
+ - If you get error "Unable to connect to remote asterisk" then it
+   means that the Asterisk is not running. It is possible that Asterisk
+@@ -464,11 +467,11 @@
+   chan_zap.so is not loaded. There are two reasons for such problem:
+   * chan_zap.so is not even built. Check if the file exists:
+ 
+-       ls -l /usr/lib/asterisk/modules/chan_zap.so
++       ls -l /usr/lib/asterisk/modules/chan_dahdi.so
+ 
+   * the chan_zap.so file exists but it is not loaded. Try to load it manually:
+ 
+-       asterisk -rx 'load module chan_zap.so'
++       asterisk -rx 'load module chan_dahdi.so'
+ 
+ - You see "pseudo" channel only. It means that you have not configured any
+   channels. If you have configured channels in zapata.conf, you may
+@@ -1044,8 +1047,8 @@
+   options xpp zap_autoreg=1
+ 
+ 
+-Dahdi And Above
+-^^^^^^^^^^^^^^^^
++DAHDI And Above
++^^^^^^^^^^^^^^^
+ From here you get a standard Dahdi span. It still needs to be
+ configured by dahdi_cfg and used by a program such as Asterisk like any
+ other Dahdi device. In order for you to get a dial-tone in a phone

Modified: dahdi-linux/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-voip/dahdi-linux/trunk/debian/patches/series?rev=6498&op=diff
==============================================================================
--- dahdi-linux/trunk/debian/patches/series (original)
+++ dahdi-linux/trunk/debian/patches/series Thu Nov 20 10:17:36 2008
@@ -9,3 +9,4 @@
 oslec_kernelorg
 
 udev
+fix_readme_astribank




More information about the Pkg-voip-commits mailing list