You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Remove patches merged in 22.1.0.
* Slipstream merged but not yet released patches.
* Enable EMPULSE in DAHDI builds, since it is typically needed/desired
for E&M signaling, and there is little downside in it being enabled.
PHREAKSCRIPT-59 #close
Copy file name to clipboardExpand all lines: phreaknet.sh
+9-6Lines changed: 9 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -242,6 +242,7 @@ SIP_CISCO=0
242
242
CHAN_SCCP=0
243
243
CHAN_DAHDI=0
244
244
DAHDI_OLD_DRIVERS=0
245
+
EMPULSE=1 # Automatically enable EMPULSE, cause why not?
245
246
DAHDI_WANPIPE=0 # wanpipe only needed for Sangoma cards
246
247
DEVMODE=0
247
248
TEST_SUITE=0
@@ -1907,6 +1908,10 @@ install_dahdi() {
1907
1908
if [ "$HEARPULSING"="1" ];then
1908
1909
git_patch "hearpulsing-dahlin.diff"
1909
1910
fi
1911
+
if [ "$EMPULSE"="1" ];then
1912
+
printf"Enabling EMPULSE for this build\n"
1913
+
sed -i 's|/\* #define EMPULSE \*/|#define EMPULSE|g' include/dahdi/dahdi_config.h # Enable EMPULSE by default. Note that the * must be escaped for sed.
0 commit comments