This repository has been archived by the owner on Oct 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathChangeLog
4249 lines (3204 loc) · 187 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2008-09-09 Russell Bryant <[email protected]>
* Zaptel 1.4.12.1 released
2008-09-09 18:24 +0000 [r4523-4534] Tzafrir Cohen <[email protected]>
* /, kernel/xpp/utils/zconf/Zaptel.pm: Zaptel.pm: Fix sample
program (perldoc-only fix). Merged revisions 4533 via svnmerge
from http://svn.digium.com/svn/zaptel/branches/1.2
* /, kernel/xpp/card_global.c, kernel/xpp/init_card_1_30,
kernel/xpp/init_card_2_30, kernel/xpp/init_card_3_30: xpp-zaptel:
Bugfix: Display data_high in /proc/xpp/*/chipregs: * This byte
wasn't shown even if do_datah bit was set. * Also converged all
terminology to "sub-register" and not "indirect" * Changed
accordingly '[WR]I' to [WR]S' in code. * Still allow usage of
'[WR]I' but with deprecation NOTICE() * Convert init_card_*
scripts * Adapt show_regs and write_regs script accordingly. *
Leave FXS internal macros with ...INDIRECT... because that's the
terminology of the SLIC. * You should use both the newer driver
and init script. Specifically: newer init script will fail to
work with older BRI and FXS xpp driver loaded. From xpp rev.
6117. Merged revisions 4520 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
* kernel/xpp/card_fxo.c, /: xpp-zaptel: FXO: Add caller-id
workaround for ESTI-DTMF (for #9096) * Also rename the
CID_STYLE_* constants to formal names. From Xorcom Rev. 6115.
Merged revisions 4519 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
* /, kernel/xpp/init_card_2_30: xpp-zaptel: FXO: fix init_card_2_30
opermode verification * In case of any diff, exit with non-zero
status so the build fails. * Print filename:lineno of missing or
changed lines. * Fix two countries (typos fixed in COLOMBIA and
CYPRUS). * xpp-zaptel: FXO: cleanup opermode verification code
(from DAHDI): - Add proper '-v' option to init_card_2_30 and use
it in xortel/Makefile - Use $mismatches as in DAHDI (minimize
diffs). From xpp rev. 6107,6108 Merged revisions 4517-4518 via
svnmerge from https://origsvn.digium.com/svn/zaptel/branches/1.2
* /, kernel/xpp/utils/fpga_load.c: Fix another path to an
uninitialized SUB config provided to us from the controller. From
xpp rev. 6071. Merged revisions 4516 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
2008-09-08 23:32 +0000 [r4515] Jason Parker <[email protected]>
* Makefile: Disable building some modules on kernels 2.6.8 and
older. (closes issue #11523) Reported by: tzafrir Tested by:
tzafrir, qwell Initial patch by: kpfleming
2008-09-08 20:40 +0000 [r4514] Tzafrir Cohen <[email protected]>
* kernel/xpp/utils/zconf/Zaptel/Chans.pm, /: Minor FXS/FXO type
fixes in case probe was not done. Merged revisions 4512 via
svnmerge from http://svn.digium.com/svn/zaptel/branches/1.2
2008-09-08 20:34 +0000 [r4513] Jason Parker <[email protected]>
* firmware/Makefile: Fix hotplug-install when firmware is disabled
from menuselect. Closes issue #13399
2008-09-03 18:52 +0000 [r4511] Tzafrir Cohen <[email protected]>
* /, kernel/zaptel-base.c: Before creating a device, register the
major number. Otherwise we need to clean-up those devices in case
of failure, and we don't. This fixes the case of accidentally
loading zaptel after loading dahdi (Already fixed in DAHDI).
Merged revisions 4509 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
2008-08-25 14:53 +0000 [r4506] Shaun Ruffell <[email protected]>
* kernel/wctc4xxp/base.c: Remove this warning, which could occur if
the driver is loaded on a system without a wctc4xxp, and then
subsequently unloaded.
2008-08-22 13:48 +0000 [r4504] Tzafrir Cohen <[email protected]>
* live_zap, README: Fix init scripts loading in xpp from live_zap
and update README * Set initdir to the directory on the live
system for xpp. * set FIRMWARE_DIR to allow running xpp_fxloader
from 'live_zap exec'. * Update README.
2008-08-21 07:53 +0000 [r4503] Tzafrir Cohen <[email protected]>
* build_tools/test_kernel_git: Fix reporting of the zaptel version
number in test_kernel_git.
2008-08-20 21:30 +0000 [r4497] Kevin P. Fleming <[email protected]>
* kernel/wctdm.c, kernel/wctdm24xxp/base.c, kernel/ztdynamic.c:
resolve some compile warnings (closes issue #13278) Reported by:
smurfix Patches: zap-string.patch uploaded by smurfix (license
547)
2008-08-20 Kevin P. Fleming <[email protected]>
* Zaptel 1.4.12 released
2008-08-20 21:30 +0000 [r4496-4497] Kevin P. Fleming <[email protected]>
* kernel/wctdm.c, kernel/wctdm24xxp/base.c, kernel/ztdynamic.c:
resolve some compile warnings (closes issue #13278) Reported by:
smurfix Patches: zap-string.patch uploaded by smurfix (license
547)
* kernel/wctdm24xxp/wctdm24xxp.h, kernel/wcte12xp/vpmadt032.c,
kernel/wctdm24xxp/base.c, kernel/wctdm24xxp/GpakApi.c,
kernel/wctdm24xxp/GpakCust.c, kernel/xpp/xpd.h,
kernel/zaptel-base.c: improve compatibility with 2.6.26 and
2.6.27 kernels (closes issue #13277) Reported by: smurfix
Patches: zap-dev.patch uploaded by smurfix (license 547)
zap-sema.patch uploaded by smurfix (license 547)
2008-08-20 19:31 +0000 [r4495] Shaun Ruffell <[email protected]>
* kernel/wctc4xxp/base.c: Change to support both 5.3kbps and
6.3kbps bit rates when using the G723.1 codec.
2008-08-20 16:58 +0000 [r4494] Tzafrir Cohen <[email protected]>
* kernel/xpp/utils/xpp_fxloader: Mark xpp_fxloader as executable.
2008-08-19 20:45 +0000 [r4493] Kevin P. Fleming <[email protected]>
* firmware/Makefile: even more improvements in firmware Makefile
2008-08-19 20:24 +0000 [r4491-4492] Shaun Ruffell <[email protected]>
* kernel/wctc4xxp/base.c: Fix bug where all transcoders are named
tc400b0.
* kernel/zttranscode.c, kernel/zaptel.h: Couple of fixes for the
transcoder: - In dahdi_transcode.c, Embed the identifiation
number, assigned sequentially when the transcoders are
registered, in the transcoder structure. This allows
DAHDI_TC_GETINFO to work as expected even though the transcoders
are rotated on the list in order to spread the load. - In
wctc4xxp, fix bug where all transcoders are named tc400b0.
2008-08-19 20:11 +0000 [r4490] Kevin P. Fleming <[email protected]>
* firmware/Makefile: simplify this Makefile a bit by always
creating /usr/lib/hotplug/firmware and /lib/firmware in
$(DESTDIR) if hotplug firmware is being installed work around a
GNU make buglet that caused some target rules not to match
2008-08-17 17:08 +0000 [r4489] Tzafrir Cohen <[email protected]>
* kernel/xpp/utils/zconf/Zaptel/Chans.pm, /: Zaptel-perl: fix
leftovers from r4475 (handling of spaces) While r4476 solved some
parsing problems of channels with "strange" encoding names, it
introduced a new problem (e.g.: "RED" after "(In use)" which is
fixed here. Merged revisions 4488 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
2008-08-14 21:00 +0000 [r4485-4487] Tzafrir Cohen <[email protected]>
* kernel/xpp/.version, /, kernel/xpp/Changelog_xpp: Update
changelog for xpp rev. 6055. Merged revisions 4486 via svnmerge
from http://svn.digium.com/svn/zaptel/branches/1.2
* kernel/xpp/card_fxo.c, /: xpp: FXO: display signed voltage values
(from xpp r6055) This is only an issue with the displayed value.
In case you wondered why you have battery voltage of more than
220V. Merged revisions 4484 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
2008-08-14 01:57 +0000 [r4481-4483] Kevin P. Fleming <[email protected]>
* kernel/wctc4xxp/Kbuild, kernel/wctc4xxp/base.c,
kernel/wctc4xxp/codec_test.c (removed), kernel/wctc4xxp/Makefile,
kernel/zttranscode.c, kernel/zaptel.h, kernel/zaptel-base.c:
backport new transcoder interface and driver from DAHDI
* kernel/ztdummy.c, ztcfg-dude.c, kernel/wct1xxp.c, ppp/zaptel.c,
kernel/ztd-eth.c, hdlcverify.c, fxstest.c, tonezone.c,
kernel/wcusb.c, kernel/wcte12xp/base.c, kernel/wct4xxp/vpm450m.c,
hdlctest.c, kernel/pciradio.c, kernel/wct4xxp/base.c,
kernel/wcte12xp/vpmadt032.c, sethdlc-new.c,
kernel/wctc4xxp/base.c, kernel/wctdm24xxp/base.c, hdlcstress.c,
kernel/wctdm24xxp/GpakApi.c, kernel/wctc4xxp/codec_test.c,
timertest.c, kernel/torisa.c, kernel/ztdynamic.c, pattest.c,
sethdlc.c, fxotune.c, kernel/makefw.c, zttool.c,
kernel/ztd-loc.c, kernel/wcte11xp.c, zttest.c, kernel/wctdm.c,
kernel/voicebus.c, torisatool.c, ztscan.c, hdlcgen.c, zonedata.c,
ztmonitor.c, kernel/tor2.c, kernel/wcfxo.c,
kernel/wcte12xp/GpakApi.c, usbfxstest.c, kernel/adt_lec.c,
ztcfg.c, patgen.c, patlooptest.c, ztspeed.c,
kernel/zttranscode.c, ztdiag.c, kernel/wct4xxp/wct4xxp-diag.c,
kernel/wctdm24xxp/GpakCust.c, kernel/zaptel-base.c: more license
header updates
* kernel/wctdm24xxp/GpakCust.h, kernel/arith.h,
kernel/wctdm24xxp/wctdm24xxp.h, kernel/ztdummy.h,
kernel/hpec/hpec_zaptel.h, tonezone.h, kernel/digits.h,
kernel/fxo_modes.h, kernel/wcusb.h, kernel/kb1ec.h, complex.h,
kernel/fasthdlc.h, kernel/wct4xxp/vpm450m.h,
kernel/wcte12xp/wcte12xp.h, kernel/wcte12xp/GpakErrs.h,
kernel/hpec/hpec_user.h, kernel/wcte12xp/vpmadt032.h,
kernel/hpec/hpec.h, bittest.h, kernel/zaptel.h, kernel/zconfig.h,
kernel/wctdm24xxp/GpakApi.h, kernel/tor2-hw.h,
kernel/mg2ec_const.h, kernel/wctdm24xxp/GpakHpi.h, fxotune.h,
LICENSE.LGPL (added), kernel/proslic.h, kernel/wctdm.h,
kernel/voicebus.h, kernel/jpah.h, kernel/wcte12xp/gpakenum.h,
README, kernel/wcte12xp/GpakApi.h, kernel/wctdm24xxp/gpakenum.h,
kernel/adt_lec.h, kernel/kb1ec_const.h, kernel/mg2ec.h,
mkfilter.h, kernel/wcte12xp/GpakHpi.h,
kernel/wctdm24xxp/gpakErrs.h, kernel/wct4xxp/wct4xxp.h: README
updates and license updates for header files
2008-08-13 20:51 +0000 [r4479-4480] Doug Bailey <[email protected]>
* kernel/wctdm24xxp/wctdm24xxp.h, kernel/wctdm24xxp/base.c: clean
up a timing issue on debounce of neon mwi detect
* kernel/wctdm24xxp/wctdm24xxp.h, kernel/wctdm24xxp/base.c: Port in
the NEON MWI detection from the AA50 into the wctdm24xxp driver
2008-08-13 18:05 +0000 [r4478] Jason Parker <[email protected]>
* Makefile: Make sure we've run configure menuselect before trying
(and failing) to install firmware.
2008-08-12 20:50 +0000 [r4477] Kevin P. Fleming <[email protected]>
* live_zap, Makefile, kernel/wctc4xxp/Kbuild,
kernel/wctc4xxp/Makefile, build_tools/genudevrules,
firmware/firmware.xml, firmware/Makefile, README, zaptel.xml,
kernel/wctc4xxp/base.c, kernel/wctc4xxp/codec_test.c,
kernel/zttranscode.c (added), kernel/xpp/utils/zaptel-helper,
kernel/wctc4xxp (added), kernel/zaptel.h, kernel/zaptel-base.c:
bring back the transcoder interface... it will be upgraded to the
new improved version here too
2008-08-12 13:11 +0000 [r4472-4476] Tzafrir Cohen <[email protected]>
* kernel/xpp/utils/zconf/Zaptel/Chans.pm, /: Zaptel-perl: more
robust parsing of channel signalling types. Parse them from a
list rather thna fusing a regex of a "word". Merged revisions
4475 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
* kernel/xpp/card_pri.c, kernel/xpp/card_bri.c,
kernel/xpp/xbus-core.c, /, kernel/xpp/xbus-pcm.c: * pcmtx_chan
debugging parameter now refers to a zaptel channel number. * Do
initialize xsp. Closes issue #13276 . * xbus_core_shutdown can't
be __exit as it is used in initilization as well. Merged
revisions 4473 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
* kernel/xpp/card_fxo.c, /: xpp: fxo: fix caller-id
CID_STYLE_PASS_ALWAYS. Merged revisions 4468 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
2008-08-07 18:58 +0000 [r4469] Kevin P. Fleming <[email protected]>
* firmware/Makefile, live_zap, Makefile, README, zaptel.xml,
kernel/zttranscode.c (removed), kernel/xpp/utils/zaptel-helper,
kernel/wctc4xxp (removed), kernel/zaptel.h,
build_tools/genudevrules, firmware/firmware.xml,
kernel/zaptel-base.c: remove support for the Digium TC400
transcoder card; the interace to this card has been completely
redesigned, and the new interface will only be present in DAHDI;
TC400 users will need to upgrade to DAHDI 2.0.0 to continue using
their transcoder cards
2008-08-07 10:15 +0000 [r4461-4463] Tzafrir Cohen <[email protected]>
* kernel/xpp/card_pri.c, kernel/xpp/firmwares/FPGA_1151.hex,
kernel/xpp/xbus-core.c: xpp: preliminary CAS support. Uses newer
firmware (5975) for the 1151 alone.
* kernel/xpp/card_global.c: xpp: reset a reserved protocol field.
* kernel/xpp/card_fxs.c, kernel/xpp/xbus-pcm.c: xpp: debuggging
parameter pcmtx_chan now refers to a zap channel number. Also fix
a typo in card_fxs.
2008-08-04 18:12 +0000 [r4456-4459] Tzafrir Cohen <[email protected]>
* kernel/xpp/calibrate_slics (removed), /,
kernel/xpp/utils/Makefile: Remove obsolete calibrate_slics. Clean
more in utils Makefile. Merged revisions 4458 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
* kernel/xpp/xpp_zap.c, kernel/xpp/firmwares/FPGA_1141.hex,
kernel/xpp/utils/zconf/Zaptel/Chans.pm,
kernel/xpp/firmwares/FPGA_1151.hex, kernel/xpp/xframe_queue.c, /,
kernel/xpp/Kbuild, kernel/xpp/card_fxs.c,
kernel/xpp/utils/xpp_fxloader, kernel/xpp/utils/lszaptel,
kernel/xpp/firmwares/FPGA_FXS.hex, kernel/xpp/init_card_3_30,
kernel/xpp/utils/zconf/Zaptel/Hardware/PCI.pm: Merged revisions
4451-4455 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2 ........ r4451 |
tzafrir | 2008-08-04 18:11:01 +0300 (Mon, 04 Aug 2008) | 9 lines
Firmware update: 5959 (DTMF and BRI ID) (From DAHDI rev. 4695) *
Fix some cases of double digits. * Fix some rare cases of a BRI
unit providing incorrect directionality. * Extra debugging code
in card_fxs.c to trace future DTMF issues. * Properly note DAHDI
(as opposed to Zaptel) ioctls. ........ r4452 | tzafrir |
2008-08-04 18:36:19 +0300 (Mon, 04 Aug 2008) | 2 lines Make it
formally bashism. ........ r4453 | tzafrir | 2008-08-04 18:38:10
+0300 (Mon, 04 Aug 2008) | 2 lines Kbuild: A more robust check
for the bri_dchan patch. ........ r4454 | tzafrir | 2008-08-04
18:39:01 +0300 (Mon, 04 Aug 2008) | 2 lines Minor BRI
initlization improvements. ........ r4455 | tzafrir | 2008-08-04
18:43:32 +0300 (Mon, 04 Aug 2008) | 7 lines Add channel alarms in
Zaptel-perl and lszaptel specifically. * Zaptel::Chans now
provides a method alarms() for a list (or number of) alarms. *
lszaptel uses it for a more correct display of channel status. *
Also update PCI hardware list. ........
2008-08-03 15:03 +0000 [r4449] Tzafrir Cohen <[email protected]>
* /, kernel/zaptel-base.c: Fix build on kernels 2.6.2-2.6.13:
class_simple_device_remove This function only needs the device as
its parameter. (Note that r4448 has already been fixed in 1.4)
Merged revisions 4447 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
2008-08-01 13:52 +0000 [r4443] Russell Bryant <[email protected]>
* /: Blocked revisions 4442 via svnmerge ........ r4442 | russell |
2008-08-01 08:50:24 -0500 (Fri, 01 Aug 2008) | 12 lines Fix
detection of ringing on FXO ports. This change was made to wctdm
in 1.4 in revision 4096, but when that code got backported to 1.2
in rev 4132, the change was not made. I found it just by
comparing the differences in the drivers between 1.2 and 1.4.
(closes issue #13188) Reported by: pyves Patches:
20080731__issue13188_revert4123z12.diff uploaded by bbryant
(license 36) issue13188.patch1.txt uploaded by russell (license
2) Tested by: russell, bbryant ........
2008-07-30 15:24 +0000 [r4438-4440] Kevin P. Fleming <[email protected]>
* Makefile: use proper method for updating version.h
* Makefile: version.h is *NOT* a phony target, it's a real file
2008-07-22 20:33 +0000 [r4429-4432] Kevin P. Fleming <[email protected]>
* Makefile: install tonezone.h during 'install-include' and remove
any DAHDI header files during 'install-include' as well
* kernel/wctdm.c, kernel/wctdm24xxp/base.c: make battery loss to
red alarm translation actually work for these drivers
2008-07-21 10:04 +0000 [r4425-4426] Tzafrir Cohen <[email protected]>
* /, kernel/zaptel-base.c: Fix building zaptel with kernel 2.6.26.
Taken from DAHDI-linux rev. 4522. For issue #12944 . Merged
revisions 4424 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
* README: Fix URL in README.
2008-07-18 13:16 +0000 [r4421] Kevin P. Fleming <[email protected]>
* Makefile: ensure that the PWD variable we set during the toplevel
'make' process actually gets carried down to the subprocesses...
don't know why this ever worked, it shouldn't have :-) (closes
issue #12750) Reported by: atis Tested by: tzafrir, atis
2008-07-10 08:03 +0000 [r4404-4408] Tzafrir Cohen <[email protected]>
* /, kernel/xpp/xbus-pcm.c: PCM: A bugfix that was reintroduced in
r4353: After this change, the echo-canceler buffers were not
cleared in some cases. As a result when one FXS is put ONHOOK,
the other side could hear noise for a second or two until full
disconnect is done. Merged revisions 4407 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
* Makefile, README: A referencable label (cfg_<name>) for each
configuration directive.
2008-07-08 20:20 +0000 [r4398-4401] Kevin P. Fleming <[email protected]>
* Makefile, build_tools/uninstall-modules: minor improvements to
uninstall-modules: add the PID to the temporary file name to make
it less easy to accidentally duplicate, only search directories
where we expect that DAHDI or Zaptel modules might be found
(known installation locations, even old ones), and always
uninstall old Zaptel modules before installing new ones, in case
a module is no longer in the tree and shouldn't be left installed
* Makefile, build_tools/uninstall-modules: add the new-and-improved
uninstall-modules script here, and teach the Makefile hw to
uninstall DAHDI kernel modules if they are installed
2008-07-08 11:14 +0000 [r4395] Tzafrir Cohen <[email protected]>
* /, kernel/xpp/card_fxs.c: A case where we didn't switch to low
power at the end of a ring. Issue may prevents ONHOOK detection.
Merged revisions 4394 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
2008-07-07 17:33 +0000 [r4391] Matthew Fredrickson <[email protected]>
* kernel/wctdm24xxp/wctdm24xxp.h: Default ring debounce timer
should be higher to properly catch callerid
2008-07-06 10:44 +0000 [r4387] Tzafrir Cohen <[email protected]>
* zaptel.conf.sample: A typo you find when looking for "zaptel" or
"zap".
2008-07-01 20:37 +0000 [r4381-4384] Kevin P. Fleming <[email protected]>
* kernel/wcte12xp/voicebus.c (added), kernel/wctdm24xxp/Kbuild,
kernel/wctdm24xxp/voicebus.c (added), ztmonitor.c,
kernel/wcte12xp/Kbuild: use symlinks to make multiple builds of
voicebus.o, so it doesn't get rebuilt twice every time 'make' is
run to build modules
* ztmonitor.c: fix up option parsing so that it actually works and
doesn't go into an infinite loop; in passing, do some validation
of the passed options to keep users from requesting incompatible
modes and getting useless output files
2008-06-28 22:05 +0000 [r4368-4377] Tzafrir Cohen <[email protected]>
* build_tools/test_kernel_git, build_tools/builder: Integrate
changes from Zaptel. builder is now indeed independent of
dahdi/zaptel .
* build_tools, build_tools/test_kernel_git, build_tools/builder
(added): build_tools/builder - a script that uses
build_tools/test_kernel_git to test-build various kernels.
test_kernel_git: small fixes. Mainly using 'make distclean' in
setver. Closes issue #12135 .
* build_tools/test_kernel_git: * Generate the modpost program to be
able to complete a build. * Clean, in order to guarantee
everything belongs to this version/build . * "test" is now
"build".
* /, kernel/xpp/xdefs.h: Fixes building with the kernel of RHEL
5.2. Closes issue #12889 . Merged revisions 4367 via svnmerge
from http://svn.digium.com/svn/zaptel/branches/1.2
2008-06-24 15:05 +0000 [r4363] Kevin P. Fleming <[email protected]>
* ppp/Makefile: minor Makefile fix to properly find zaptel.h
(DAHDI-3)
2008-06-20 21:10 +0000 [r4360] Matthew Fredrickson <[email protected]>
* kernel/wct4xxp/base.c: Remove unnecessary udelay from read/write
PCI routines
2008-06-17 21:41 +0000 [r4356] Kevin P. Fleming <[email protected]>
* firmware/Makefile: fix various problems: - don't actually install
hotplug firmware just because it has been downloaded... wait
until hotplug-install is requested - ensure that tag files aren't
removed and recreated unless the firmware file was successfully
installed
2008-06-15 17:10 +0000 [r4353] Tzafrir Cohen <[email protected]>
* /, kernel/xpp/xbus-pcm.c: Muted DTMF PCM (from FXS modules) could
"leak" to the next channel. (From xpp r5796). Merged revisions
4352 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
2008-06-05 20:06 +0000 [r4348] Tzafrir Cohen <[email protected]>
* kernel/zaptel-base.c: Fixes a potential panic in Xorcom
Astribanks devices if disconnected when a userspace program still
holds a channel open. Regression from changeset 4250 .
2008-06-05 16:39 +0000 [r4345] Shaun Ruffell <[email protected]>
* kernel/wcte12xp/base.c: Fixed type of flags parameter to
spin_lock_irqsave functions. Fixes compilation issues on
platforms where int and long do not have the same size. Closes
issue #12787
2008-06-03 19:34 +0000 [r4339-4342] Tzafrir Cohen <[email protected]>
* live_zap: live_zap: Also use the BRI module if it's there.
* ztmonitor.c: Remove an unused variable from ztmonitor.c .
2008-05-29 19:55 +0000 [r4333] Brett Bryant <[email protected]>
* ztmonitor.c: Change argument parsing for ztmonitor to use getopt.
This adds more compatibility for loosely formatted arguments.
(closes issue #12732)
2008-05-28 14:33 +0000 [r4321] Shaun Ruffell <[email protected]>
* doc/module-parameters.txt: Small documentation fix with regards
to the latency module parameter identified by user ZX81. This
closes issue #12721.
2008-05-22 15:02 +0000 [r4315] Tzafrir Cohen <[email protected]>
* kernel/xpp/xpp_zap.c, /, kernel/xpp/xpd.h: blink_mode was a
boolean and changed to a channels bitmask. Now actually changing
the type from bool to unsigned long. (xpp r5756). Merged
revisions 4314 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
2008-05-20 14:54 +0000 [r4309] Tzafrir Cohen <[email protected]>
* /, kernel/xpp/utils/zconf/Zaptel/Span.pm,
kernel/xpp/utils/zconf/Zaptel/Xpp.pm: * Document Zaptel::Span *
Minor changes to Zaptel::Xpp as well. (Documentation-only
changes. xpp r5746,r5747) Merged revisions 4308 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
2008-05-19 12:42 +0000 [r4305] Tzafrir Cohen <[email protected]>
* kernel/xpp/.version, kernel/xpp/card_fxo.c, /,
kernel/xpp/card_global.c, kernel/xpp/Changelog_xpp,
kernel/xpp/init_card_4_30: * Zaptel-1.2.x does not have
zt_alarm_channel(). Move up the backward compatibility kludge so
it actually affect code (failed compilation on zaptel-1.2 from
Digium without (Closes issue #12654 ). * Cleanup a compile
warning in xpp/card_global.c . * Fix regression in PRI init
script (case of less than 4 modules). * Update changelog and bump
version. Merged revisions 4304 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
2008-05-15 15:09 +0000 [r4296] Matthew Fredrickson <[email protected]>
* ztmonitor.c: Add support for stereo output of receive and
transmit streams in ztmonitor (from Switchvox)
2008-05-14 19:27 +0000 [r4290] Jason Parker <[email protected]>
* kernel/Kbuild: Allow hpec to build on older(?) 2.6 kernels.
(closes issue #12623) Reported by: ricvil Patches: hpec_src.diff
uploaded by tzafrir (license 46) Tested by: qwell, ricvil
2008-05-28 Matthew Fredrickson <[email protected]>
* Zaptel 1.4.11 released
2008-05-28 Matthew Fredrickson <[email protected]>
* Merge revisions 4305, 4309, 4315, and 4321 in due to bug fixes in
DVT process.
Rev 4305:
* Zaptel-1.2.x does not have zt_alarm_channel(). Move up the backward
compatibility kludge so it actually affect code (failed compilation on
zaptel-1.2 from Digium without (Closes issue #12654 ).
* Cleanup a compile warning in xpp/card_global.c .
* Fix regression in PRI init script (case of less than 4 modules).
* Update changelog and bump version.
Rev 4309:
* Document Zaptel::Span
* Minor changes to Zaptel::Xpp as well.
Rev 4315:
* blink_mode was a boolean and changed to a channels bitmask. Now actually
changing the type from bool to unsigned long. (xpp r5756).
Rev 4321:
* Small documentation fix with regards to the latency module parameter
identified by user ZX81.
This closes issue #12721.
2008-05-14 19:27 +0000 [r4290] Jason Parker <[email protected]>
* kernel/Kbuild: Allow hpec to build on older(?) 2.6 kernels.
(closes issue #12623) Reported by: ricvil Patches: hpec_src.diff
uploaded by tzafrir (license 46) Tested by: qwell, ricvil
2008-05-14 19:18 +0000 [r4289] Tzafrir Cohen <[email protected]>
* README, /: Wrong version number. Merged revisions 4286 via
svnmerge from http://svn.digium.com/svn/zaptel/branches/1.2
2008-05-14 18:42 +0000 [r4285] Jason Parker <[email protected]>
* ztscan.c: Temporarily revert revisions 4006 and 4009, until a
better decision can be made about channels on spans. Closes issue
#12635
2008-05-14 16:57 +0000 [r4279] Matthew Fredrickson <[email protected]>
* kernel/wcte11xp.c, kernel/wcte12xp/base.c: Add MTP2 Signalling
support to single span cards
2008-05-14 15:53 +0000 [r4265-4272] Tzafrir Cohen <[email protected]>
* kernel/xpp/utils/xpp_blink, kernel/xpp/zap_debug.h, /,
kernel/xpp/README.Astribank: XPP documentation fixes. Merged
revisions 4271 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
* README, /: The parameter print_dbg of xpp has chnaged to "debug".
Merged revisions 4269 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
* kernel/xpp/utils/fpga_load.8, kernel/xpp/zap_debug.h,
kernel/xpp/utils/zconf/Zaptel/Xpp/Line.pm,
kernel/xpp/init_card_3_29 (removed), kernel/xpp/init_card_7_29
(removed), kernel/xpp/init_card_9_29 (removed),
kernel/xpp/utils/xpp_modprobe, kernel/xpp/utils/genzaptelconf,
kernel/xpp/xpp_usb.c, kernel/xpp/xpp_zap.c,
kernel/xpp/utils/print_modes.c,
kernel/xpp/firmwares/FPGA_1151.hex, kernel/xpp/xpp_zap.h,
kernel/xpp/xproto.c, kernel/xpp/Changelog_xpp,
kernel/xpp/init_card_1_30 (added),
kernel/xpp/firmwares/FPGA_FXS.hex, kernel/xpp/init_card_3_30
(added), kernel/xpp/xpd.h, kernel/xpp/xproto.h,
kernel/xpp/utils/zconf/Zaptel/Chans.pm,
kernel/xpp/utils/xpp_blink, kernel/xpp/card_bri.c,
kernel/xpp/xbus-core.c, kernel/xpp/init_card_4_29 (removed),
kernel/xpp/init_card_6_29 (removed),
kernel/xpp/utils/zconf/Zaptel/Xpp/Xpd.pm,
kernel/xpp/utils/xpp_fxloader, kernel/xpp/xbus-core.h,
kernel/xpp/utils/fpga_load.c, kernel/xpp/xdefs.h,
kernel/xpp/.version, kernel/xpp/card_pri.c,
kernel/xpp/firmwares/FPGA_1141.hex, kernel/xpp/card_fxo.c,
kernel/xpp/xframe_queue.c, kernel/xpp/xbus-sysfs.c, /,
kernel/xpp/README.Astribank, kernel/xpp/card_fxs.c,
kernel/xpp/card_global.c, kernel/xpp/card_fxo.h,
kernel/xpp/utils/Makefile, kernel/xpp/init_card_2_30 (added),
kernel/xpp/xbus-pcm.c, kernel/xpp/card_fxs.h,
kernel/xpp/card_global.h, kernel/xpp/init_card_4_30 (added),
kernel/xpp/utils/zconf/Zaptel/Xpp/Xbus.pm,
kernel/xpp/zap_debug.c: xpp r5723: Includes, among others: * New
firmware protocol version: 3.0 . * New numbers for the device
types: (e.g. in card_init* scripts) - FXS: 1 (was: 3) - FXO: 2
(was: 4) - BRI: 3 (was: 6 for TE, 7 for NT) - PRI: 4 (was: 9) *
Init scripts of FXS and FXO modules are now written in Perl as
well (be sure to have File::Basename, e.g: perl-modules in
Debian). * calibrate_slics merged into init_card_1_30 . * Module
parameter print_dbg replaced with debug . Same meaning. *
init_fxo_modes removed: content moved into init_card_2_30,
verified at build time. * Code tested with sparse. Most warnings
were fixed. * Set ZT_SIG_DACS for the bchans in the PRI and BRI
modules to not get ignored by ztscan. * Handle null config_desc
we get from some crazy USB controllers. * genzaptelconf: Fix
reporting of empty slots in list mode. * xpp_blink can now blink
a single analog port. * "slics" has been renamed "chipregs". *
Fixed a small typo in fpga_load(8). * Fixed bashism in
xpp_fxloader. Merged revisions 4264 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
* /: Ignore files generated when making README.html .
2008-05-13 18:01 +0000 [r4261] sruffell <sruffell@localhost>:
* Makefile, build_tools/uninstall-modules: Remove old zaptel
modules from the kernel modules directory before installing the
new ones. (Related to issue #12262)
2008-05-12 22:19 +0000 [r4257] Tzafrir Cohen <[email protected]>
* live_zap: * Write to zaptel.conf under our live/ directory . *
Fix reading variables from live/live.conf .
2008-05-12 17:28 +0000 [r4253] Matthew Fredrickson <[email protected]>
* kernel/zaptel.h: Apparently this API changed in 2.6.18, not in
2.6.22
2008-05-11 01:57 +0000 [r4250] Matthew Fredrickson <[email protected]>
* kernel/wct4xxp/base.c, ztcfg.c, kernel/zaptel.h,
kernel/zaptel-base.c: Merge in kernel level MTP2 branch.
2008-05-04 09:56 +0000 [r4232-4235] Tzafrir Cohen <[email protected]>
* kernel/xpp/card_pri.c, /: * Allow initialization of T1-s (r5665)
. * Remove some false alarms on T1-s (r5669) . Merged revisions
4234 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
* Makefile, README: Docuemnt the tonezones we currently have.
2008-05-02 19:46 +0000 [r4221-4231] Matthew Fredrickson <[email protected]>
* kernel/wct4xxp/base.c: Remove some useless code that was merged
from the stackcleanup branch
* kernel/wct4xxp/base.c: Remove old schedule_timout code and
replace with an msleep
* kernel/wct4xxp/base.c, kernel/wct4xxp/wct4xxp.h: Move the
checktiming parameter to a flag in checkflag as well
* kernel/wct4xxp/base.c, kernel/wct4xxp/wct4xxp.h: Switch to using
bitflags instead of variables for stopdma field
* kernel/wct4xxp/base.c: Fix for #12387. Cannot unload wct4xxp
module on FC8
* kernel/wct4xxp/base.c, kernel/wct4xxp/wct4xxp.h,
kernel/zaptel-base.c: Merge stack cleanup branch into 1.4. Also
merge firmware load time fix for wct4xxp driver. The stack
cleanup branch reduces the amound of stack used by zaptel, nice
for systems with 4K stacks enabled and where potential stack
overflow is found
2008-05-01 19:37 +0000 [r4217] Jason Parker <[email protected]>
* zaptel.init: Clarify a message. Some hardware doesn't provide
timing, so this could be confusing. (closes issue #12459)
Reported by: panderson Patches: zaptel.init.patch uploaded by
panderson (license 469)
2008-05-01 16:46 +0000 [r4213] Terry Wilson <[email protected]>
* Makefile: Allow $(ARCH) to be overridden and pass on through
$(KMAKE)
2008-05-01 Matthew Fredrickson <[email protected]>
* Zaptel 1.4.10.1 released
2008-04-23 19:20 +0000 [r4192-4193] Tzafrir Cohen <[email protected]>
* kernel/xpp/Kbuild: A test for a specific #define in zconfig.h was
done by invoking cpp . Sadly the change of CFLAGS handling in
kernel 2.6.24 meant that it is no longer as easy to invoke cpp on
our own. Impact: On kernel >= 2.6.24, xpd_bri never got built,
even if the bri_dchan patch was applied. Fix: use a simpler grep
instead. Hopefully noone passes it through other means. This
should hopfully fix issue #12426 .
* README: Bumped into yet another incompatibility.
2008-04-21 21:27 +0000 [r4187] Tzafrir Cohen <[email protected]>
* kernel/xpp/utils/zconf/Zaptel/Config/Defaults.pm:
Zaptel::Config::Default - don't die if no config file.
(Accidentally left out of the merge from 1.2)
2008-04-10 21:01 +0000 [r4167] sruffell <sruffell@localhost>:
* Makefile: Fixed typo in makefile which was preventing make from
installing the udev rules.
2008-04-10 18:11 +0000 [r4165-4166] Tzafrir Cohen <[email protected]>
* build_tools/zaptel_svn_tarball (added): zaptel_svn_tarball - get
a tarball fron an SVN snapshot.
* kernel/xpp/.version, /: Officially bumping xpp version
(xpp/.version) to 5566 . Merged revisions 4164 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
2008-04-08 Matthew Fredrickson <[email protected]>
* Zaptel 1.4.10 released
2008-04-04 17:47 +0000 [r4137] Matthew Fredrickson <[email protected]>
* kernel/wctdm24xxp/base.c: Add support for AEX410
2008-04-03 23:27 +0000 [r4130] Mark Spencer <[email protected]>
* kernel/zaptel-base.c: Have to use 'O' since 'F' is reserved (MFR2
fOrward)
2008-04-01 16:39 +0000 [r4122] sruffell <sruffell@localhost>:
* kernel/wct4xxp/base.c: Work around for host bridges that generate
fast back to back transactions which the current version of the
quad span cards do not advertise support for.
2008-04-01 00:45 +0000 [r4119] Tzafrir Cohen <[email protected]>
* Makefile, /: Do clean some modules when there's no kernel tree
available. (and block the backport of r4082). Merged revisions
4118 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
2008-03-31 17:39 +0000 [r4113-4114] Russell Bryant <[email protected]>
* Makefile: revert a portion of rev 4113 that was committed by
accident
* Makefile, README, kernel/ztd-ethmf.c (removed),
zaptel.conf.sample: Remove the ztd-ethmf driver for now. It was
not ready to be committed. (issue #12241)
2008-03-31 08:30 +0000 [r4110] Tzafrir Cohen <[email protected]>
* /, kernel/xpp/README.Astribank: Document when "D-Chan RX Bad
checksum" is not a problem. Merged revisions 4109 via svnmerge
from http://svn.digium.com/svn/zaptel/branches/1.2
2008-03-29 06:57 +0000 [r4106-4107] Tzafrir Cohen <[email protected]>
* README: Minor asciidoc fix.
* README: Document some ABI changes.
2008-03-27 22:08 +0000 [r4096-4101] sruffell <sruffell@localhost>:
* kernel/xpp/utils/print_modes.c, kernel/xpp/utils/Makefile: No
need to make the wctdm_fxomodes.h file anymore, since it would be
the same as the fxo_modes.h file.
* kernel/xpp/utils/Makefile: The location of the fxo_modes
structure changed.
* kernel/fxo_modes.h (added), doc/module-parameters.txt,
kernel/wctdm24xxp/Kbuild, kernel/wctdm24xxp/wctdm24xxp.h,
kernel/wcte12xp/vpmadt032.c, kernel/wctdm.c,
kernel/wctdm24xxp/base.c, kernel/voicebus.c (added),
kernel/wcte12xp/wcte12xp.h, kernel/voicebus.h (added),
kernel/wcte12xp/Kbuild, kernel/wcte12xp/base.c,
kernel/zaptel-base.c: - Updated wctdm24xxp and wcte12xp driver
which are now more tolerant of systems which do not exhibit good
real-time characteristics. - Bringing in improvements to battery
alarm generation that was on kpflemings battery_alarms branch.
(Issue #12099)
2008-03-27 20:37 +0000 [r4095] Tzafrir Cohen <[email protected]>
* Makefile: Also install wct4xxp/wct4xxp.o in 2.4 kernels...
2008-03-26 08:45 +0000 [r4078-4086] Tzafrir Cohen <[email protected]>
* /, build_tools/genudevrules: Don't easily fail for missing
udevinfo. Nobody has that older udev version (or otherwise we
might have recieved a bug report about a bogus == rule). TODO:
fix the UDEVRULES test in Makefile. Merged revisions 4085 via
svnmerge from http://svn.digium.com/svn/zaptel/branches/1.2
* Makefile: * Include the .config file. That adds some useful
information. * If we have devfs support, assume we have dynamic
file system, but not UDEV rules.
* Makefile: Allow overriding DYNFS and UDEVRULES to both ways from
the make command-line.
* kernel/zaptel.h: Remove yet another "static" inside a struct and
allow building 1.4 in devfs 2.4 systems.
2008-03-24 21:09 +0000 [r4073] Matthew Fredrickson <[email protected]>
* kernel/wcte12xp/vpmadt032.c: Merged revisions 4072 via svnmerge
from https://origsvn.digium.com/svn/zaptel/branches/1.2 ........
r4072 | mattf | 2008-03-24 16:06:00 -0500 (Mon, 24 Mar 2008) | 1
line Add in new parameters added for 1.16 version of the firmware
for the TE120 which should have already been merged in. ........
2008-03-23 22:29 +0000 [r4069] Tzafrir Cohen <[email protected]>
* README, kernel/ztd-ethmf.c (added), zaptel.conf.sample:
ztd-ethmf.c: Ztdynamic driver for Redfone Communications
foneBRIDGE 2. This driver uses a network protocol that is
different from the existing ztd-eth driver. This commit adds the
driver though does not yet build it by default. For the moment
use make MODULES_EXTRA="ztd-ethmf" . Patch
multiframe-032108.patch from #12241 by brettcar.
2008-03-21 23:30 +0000 [r4050-4063] Kevin P. Fleming <[email protected]>
* kernel/digits.h, tonezone.c, kernel/wcusb.c, kernel/zaptel.h,
zonedata.c, tonezone.h, kernel/zaptel-base.c: add MF R2 tone
generation, and along the way do a lot of cleanup of the tone
building and playback code
* firmware/Makefile, Makefile: minor fixes... some missing
dependencies and extraneous output when downloading firmware
* Makefile: the hotplug firmware detection logic got broken in
r3969... this fixes it
* kernel/wcte12xp/GpakApi.c, kernel/wctdm24xxp/GpakApi.c: silence
some compiler warnings about unused variables
2008-03-21 11:29 +0000 [r4039-4042] Tzafrir Cohen <[email protected]>
* doc/ztscan.8: Bugs? ztscan has no bugs.
* kernel/xpp/card_pri.c, kernel/xpp/utils/zconf/Zaptel/Hardware.pm,
kernel/xpp/utils/zconf/Zaptel/Xpp/Line.pm, /,
kernel/xpp/README.Astribank, kernel/xpp/Changelog_xpp: * Earleier
initialization of PRI module's register. * Fix zaptel-perl
reporting of battery after procfs changes. * Documentation
updates. * Block hdlcstress/test fixes that followed: already
merged. Merged revisions 4036 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
2008-03-19 20:05 +0000 [r4031] Matthew Fredrickson <[email protected]>
* kernel/wcte12xp/GpakApi.c, kernel/wcte12xp/gpakenum.h,
kernel/wctdm24xxp/base.c, kernel/wcte12xp/GpakApi.h,
kernel/wcte12xp/GpakErrs.h, kernel/wcte12xp/GpakHpi.h: Merging in
1.16 software for VPMADT032 on wcte12xp driver
2008-03-19 16:02 +0000 [r4022] Doug Bailey <[email protected]>
* kernel/wctdm24xxp/base.c: Properly handle return value before
testing parameter (Parameter may be uninitialized)
2008-03-19 02:24 +0000 [r4006-4019] Tzafrir Cohen <[email protected]>
* Makefile: * Generate html pages from the xpp utils dir as well. *
Clean generated HTML-ized man pages on clean.
* doc/ztscan.8 (added): A man page for ztscan.
* /, kernel/xpp/card_fxs.c, kernel/xpp/xbus-pcm.c: * We need to
silence the echo-canceller buffers as well. * But no need to
cancel echo on channels without PCM. * Switch to FXS hardware
DTMF detection again. Merged revisions 4012 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
* ztscan.c: ztscan can now accept optional list of span numbers and
print output for those spans only. Default remains (when there
are no parameters) to print output for all spans.
* ztscan.c: ztscan.c: Moving some code, renaming some variables, no
change in functionality.
2008-03-16 18:30 +0000 [r3996-3997] Tzafrir Cohen <[email protected]>
* kernel/wcfxo.c: cleanup wcfxo module parameters: * Make them all
world-readable. * If value only used at initialization, make them
read-only.
* ztscan.c: ztscan: detect xpp (pri/bri), tor2 and torisa as
digital as well as they currently claim to support CAS but not
DACS.
2008-03-14 16:39 +0000 [r3983-3990] Matthew Fredrickson <[email protected]>
* firmware/Makefile, kernel/wctdm24xxp/base.c,
kernel/wctdm24xxp/GpakApi.c, kernel/wctdm24xxp/GpakApi.h: Update
wctdm24xxp's VPMADT032 firmware to version 1.16
* kernel/wct4xxp/base.c: When doing the ISR rewrite, forgot to
include the vpmdtmfcheck when doing DTMF polling causing it to
check for DTMF events even when it was told not to
* Makefile: Update linked mISDN version to latest (1.1.7.2)
2008-03-09 18:18 +0000 [r3969-3979] Tzafrir Cohen <[email protected]>
* Makefile: Hush grep's output once again and allow building with
firmware support.
* Makefile: The main Makefile now knows if we don't have kernel
source. * Nicer handling of situations where we don't have kernel
source and don't really need it ('make clean', mainly). * The
test for hotplug firmware is now from the same .config file. No
more strange message about autoconf.h .
* /, zaptel.conf.sample: More asciidoc polishes and small sample
file fixes. Merged revisions 3972 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
* Makefile, README, /, zaptel.conf.sample: Integrating sample /
reference configuration file into the reference documentation.
Merged revisions 3968 via svnmerge from
http://svn.digium.com/svn/zaptel/branches/1.2
2008-03-07 16:18 +0000 [r3964] Jason Parker <[email protected]>
* kernel/zaptel-base.c: Fix compilation when using devfs (closes
issue #12156) Reported by: zandbelt Patches:
zaptel-1.4.9.2-devfs-mode.patch uploaded by zandbelt (license 33)
2008-03-07 01:01 +0000 [r3953-3958] Tzafrir Cohen <[email protected]>
* kernel/zaptel-base.c: Also print channel alarms in /proc/zaptel
files.
* kernel/xpp/xbus-pcm.h, kernel/xpp/init_card_3_29,
kernel/xpp/utils/zconf/Zaptel/Span.pm,
kernel/xpp/utils/astribank_hook, kernel/xpp/xpp_usb.c,
kernel/xpp/xpp_zap.c, kernel/xpp/firmwares/FPGA_1151.hex,
kernel/xpp/xproto.c, kernel/xpp/Changelog_xpp,
kernel/xpp/firmwares/FPGA_FXS.hex, kernel/xpp/calibrate_slics,
kernel/xpp/card_bri.c, kernel/xpp/xbus-core.c,
kernel/xpp/utils/xpp_fxloader, kernel/xpp/xbus-core.h,
kernel/xpp/xdefs.h, kernel/xpp/utils/zapconf,
kernel/xpp/utils/xpp.rules,
kernel/xpp/utils/zconf/Zaptel/Hardware/PCI.pm,
kernel/xpp/.version, kernel/xpp/card_pri.c,
kernel/xpp/firmwares/FPGA_1141.hex, kernel/xpp/card_fxo.c,
kernel/xpp/xbus-sysfs.c, kernel/xpp/xframe_queue.c, /,
kernel/xpp/card_global.c, kernel/xpp/card_fxs.c,
kernel/xpp/README.Astribank, kernel/xpp/Kbuild,
kernel/xpp/utils/Makefile, kernel/xpp/utils/xpp_timing (added),
kernel/xpp/xbus-pcm.c: xpp.r5512: * Build: - Zaptel >= 1.4.9 is
migrating to storing kernel stuff in zaptel/kernel/* - We
conditionally use old/new directory scheme: In xpp/Kbuild and
xpp/utils/Makefile use ZAP_KERNEL variable, so it's not confused
with ZAPTEL_DIR (which appears in zaptel/Makefile as well). - Fix
compile warnings on 64 bit systems. - Compile fixes for
kernel-2.6.24 * UDEV: - /etc/udev/rules.d/xpp.rules now uses
XPP_INIT_DIR to find astribank_hook. - astribank_hook: Modify to
do nothing. Add some documentation. * Autoconfiguration --