-
Notifications
You must be signed in to change notification settings - Fork 17
/
CHANGES
1270 lines (967 loc) · 38.9 KB
/
CHANGES
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
Sun May 09 2010 -
* Released hsfmodem-7.80.02.06.
Sun May 09 2010 -
* Improved compatibility with newer kernels and distributions.
Wed Oct 21 2009 -
* Released hsfmodem-7.80.02.05.
Wed Oct 21 2009 -
* Improved compatibility with newer kernels and distributions.
Thu Apr 23 2009 -
* Released hsfmodem-7.80.02.04.
Thu Apr 23 2009 -
* Improved compatibility with newer kernels and distributions.
Fri Feb 20 2009 -
* Released hsfmodem-7.80.02.03.
Fri Feb 20 2009 -
* Added buildlogs to dumpdiag.
* Added modular HDA support and distinct snd-hda-codec-hsfmodem module.
* Added message in hsfstop to indicate successful operation.
* Improved uninstallation.
Mon Jan 26 2009 -
* Released hsfmodem-7.80.02.02.
Mon Jan 26 2009 -
* Improved compatibility with newer kernels and distributions.
* Added support for alsa-driver 1.0.19.
* Fixed spurious timer issue affecting HDA, USB and Yukon modems.
Thu Dec 18 2008 -
* Released hsfmodem-7.80.02.01.
Mon Dec 15 2008 -
* Improved compatibility with newer kernels and distributions.
* Merged latest Conexant modem code. (7.80.02)
Wed Oct 01 2008 -
* Released hsfmodem-7.68.00.14.
Wed Oct 01 2008 -
* Improved compatibility with newer kernels and distributions.
* Added rpmprecomp/debprecomp targets to easily generate pre-compiled
RPM/DEB pre-compiled packages for the currently running kernel.
* Added proper INF configuration for Bryce (14f1:2f40) modems.
Tue Sep 09 2008 -
* Released hsfmodem-7.68.00.13.
Mon Sep 08 2008 -
* Improved compatibility with newer kernels and distributions.
* Fixed hsfstop script.
Fri Jul 18 2008 -
* Released hsfmodem-7.68.00.12.
Wed Jul 16 2008 -
* Improved compatibility with newer kernels and distributions.
* Added support for newer Rainier modems (OEM).
Fri Jun 20 2008 -
* Released hsfmodem-7.68.00.11.
Fri Jun 20 2008 -
* Improved compatibility with newer kernels and distributions.
Thu May 08 2008 -
* Released hsfmodem-7.68.00.10.
Thu May 08 2008 -
* Improved compatibility with newer kernels and distributions.
* Silenced "returning OSEVENT_WAIT_TIMEOUT" messages.
Mon Mar 24 2008 -
* Released hsfmodem-7.68.00.09.
Mon Mar 24 2008 -
* Improved compatibility with newer kernels and distributions.
Wed Feb 27 2008 -
* Released hsfmodem-7.68.00.08.
Wed Feb 27 2008 -
* Added workaround for HDA SMP issue.
Thu Feb 14 2008 -
* Released hsfmodem-7.68.00.07.
Thu Feb 14 2008 -
* Improved compatibility with newer kernels and distributions.
Fri Dec 07 2007 -
* Released hsfmodem-7.68.00.06.
Fri Nov 16 2007 -
* Improved HDA support.
* Improved compatibility with newer kernels and distributions.
Thu Oct 25 2007 -
* Released hsfmodem-7.68.00.05.
Thu Oct 25 2007 -
* Improved HDA support.
* Improved compatibility with newer kernels and distributions.
Fri Oct 19 2007 -
* Released hsfmodem-7.68.00.04.
Fri Oct 19 2007 -
* Improved compatibility with newer kernels and distributions.
Mon Oct 15 2007 -
* Released hsfmodem-7.68.00.03.
Mon Oct 15 2007 -
* Improved compatibility with newer kernels and distributions.
Thu Oct 11 2007 -
* Released hsfmodem-7.68.00.02.
Thu Oct 11 2007 -
* Added PCI IDs for additional Rainier modems (OEM).
* Improved compatibility with newer kernels and distributions.
Fri Oct 05 2007 -
* Released hsfmodem-7.68.00.01.
Fri Oct 05 2007 -
* Improved compatibility with newer kernels and distributions.
Tue Oct 02 2007 -
* Released hsfmodem-7.68.00.00.
Tue Oct 02 2007 -
* Merged latest Conexant modem code.
Tue Oct 02 2007 -
* Released hsfmodem-7.60.00.15.
Tue Sep 25 2007 -
* Added USB IDs for Creative Modem Blaster V.92 USB DE5671-1 and DE5673-1.
* Improved compatibility with newer kernels and distributions.
Tue Sep 25 2007 -
* Released hsfmodem-7.60.00.14.
Tue Sep 25 2007 -
* Improved HDA support.
Mon Sep 24 2007 -
* Released hsfmodem-7.60.00.13.
Mon Sep 24 2007 -
* Improved HDA support.
* Improved compatibility with newer kernels and distributions.
Thu Sep 13 2007 -
* Released hsfmodem-7.60.00.12.
Thu Sep 13 2007 -
* Configure HDA PortB as ExtMic instead of line input on Venice devices.
Wed Sep 12 2007 -
* Released hsfmodem-7.60.00.11.
Wed Sep 12 2007 -
* Improved compatibility with newer kernels and distributions.
Wed Sep 05 2007 -
* Released hsfmodem-7.60.00.10.
Wed Sep 05 2007 -
* Improved compatibility with newer kernels and distributions.
* Improved HDA support.
* Added support for Conexant CX20561 (Hermosa) chip.
Tue May 08 2007 -
* Released hsfmodem-7.60.00.09.
Tue May 08 2007 -
* Improved compatibility with newer kernels and distributions.
* Reverted CXT5045_LAPTOP_EAPDHIGHONLY workaround for HP laptop.
Thu Apr 19 2007 -
* Released hsfmodem-7.60.00.08.
Thu Apr 19 2007 -
* Temporarily reverted Sigmatel 9205 support to generic HDA codec.
Wed Apr 18 2007 -
* Released hsfmodem-7.60.00.07.
Wed Apr 18 2007 -
* Added 00- prefix to udev rules files to prevent short-circuiting
by "ttyS*" rule on some distributions.
Tue Apr 17 2007 -
* Released hsfmodem-7.60.00.06.
Tue Apr 17 2007 -
* Added workaround for suspend2 issue on Red Flag Linux.
Tue Apr 17 2007 -
* Released hsfmodem-7.60.00.05.
Tue Apr 17 2007 -
* Added HDA HP EAPD workaround.
Sun Apr 15 2007 -
* Released hsfmodem-7.60.00.04.
Sun Apr 15 2007 -
* Merged HDA drivers with latest ALSA hg code.
* Improved muting for HP/Compaq laptops.
* Improved compatibility with newer kernels and distributions.
* Improved HDA power-management.
Thu Mar 29 2007 -
* Added workaround for microphone issue on HP/Compaq laptops.
* Merged HDA drivers with ALSA 1.0.14rc3.
Thu Mar 22 2007 -
* Released hsfmodem-7.60.00.03.
Thu Mar 22 2007 -
* Fixed floating-point issue on x86_64.
Thu Mar 01 2007 -
* Released hsfmodem-7.60.00.02.
Wed Feb 28 2007 -
* Reduced stack consumption to accommodate smaller 4k kernel stacks.
* Improved compatibility with newer kernels and distributions.
Mon Jan 29 2007 -
* Released hsfmodem-7.60.00.01.
Mon Jan 29 2007 -
* Fixed intermittent stability issue.
* Improved compatibility with newer kernels and distributions.
Wed Jan 10 2007 -
* Released hsfmodem-7.60.00.00.
Fri Jan 05 2007 -
* Merged latest Conexant modem code.
Fri Jan 05 2007 -
* Released hsfmodem-7.47.00.09.
Fri Jan 05 2007 -
* Corrected EAPD merge issue.
Thu Jan 04 2007 -
* Released hsfmodem-7.47.00.08.
Thu Jan 04 2007 -
* Fixed EAPD / mute issue with Conexant HDA Audio.
Thu Dec 28 2006 -
* Released hsfmodem-7.47.00.07.
Thu Dec 28 2006 -
* Merged HDA drivers with ALSA 1.0.14rc1.
* Implemented support for Conexant HDA Audio/Modem Combo.
* Improved compatibility with newer kernels and distributions.
Fri Dec 15 2006 -
* Released hsfmodem-7.47.00.06.
Fri Dec 15 2006 -
* Improved compatibility with newer kernels and distributions.
* Improved software RING detection
Thu Nov 09 2006 -
* Released hsfmodem-7.47.00.05.
Thu Nov 09 2006 -
* Improved compatibility with newer kernels and distributions.
Tue Oct 03 2006 -
* Released hsfmodem-7.47.00.04.
Tue Oct 03 2006 -
* Improved compatibility with newer kernels and distributions.
Wed Aug 30 2006 -
* Released hsfmodem-7.47.00.03.
Wed Aug 30 2006 -
* Merged HDA drivers with ALSA 1.0.12-final.
Mon Aug 14 2006 -
* Released hsfmodem-7.47.00.02.
Mon Aug 14 2006 -
* Improved compatibility with newer kernels and distributions.
* Added USB ID 0803:1301 (Hayes USB V92 model 15355)
* DCP daemon now automatically restarted.
Tue May 02 2006 -
* Released hsfmodem-7.47.00.01.
Tue May 02 2006 -
* Merged HDA drivers with ALSA 1.0.11-final.
* Fixed HDA connection issues.
* Improved compatibility with newer kernels and distributions.
Mon Apr 10 2006 -
* Released hsfmodem-7.47.00.00.
Mon Apr 10 2006 -
* Fixed lockup on Core Duo processors.
* Merged HDA drivers with newer kernel code.
* Merged latest Conexant modem code.
* Improved HDA power-management.
* Improved compatibility with newer kernels and distributions.
Wed Mar 08 2006 -
* Released hsfmodem-7.43.00.02.
Wed Mar 08 2006 -
* Improved compatibility with newer kernels and distributions.
* Downgraded inoffensive error messages to warnings.
* Added mechanism to automatically configure region when hardware
is dynamically detected.
Tue Feb 07 2006 -
* Released hsfmodem-7.43.00.01.
Tue Feb 07 2006 -
* Fixed flow-control issue upon device open.
* Fixed HDA compatibility with 2.6.16-rc1 kernels.
* Added soft ring detection for HDA.
* Disable unpatched modules when replacing HDA drivers.
Sat Jan 28 2006 -
* Added support for Conexant HD Audio (HDA) modems.
Note: HDA support requires a recent 2.6 kernel.
* Merged latest Conexant modem code.
* Improved compatibility with newer kernels and distributions.
Wed Dec 07 2005 -
* Released hsfmodem-7.18.00.08.
Wed Dec 07 2005 -
* Fixed PAGE_OFFSET issue causing crashes during initialization
on some systems.
* Improved compatibility with newer kernels and distributions.
* Improved patching facility.
Fri Oct 21 2005 -
* Released hsfmodem-7.18.00.07.
Fri Oct 21 2005 -
* Improved compatibility with newer kernels and distributions.
Mon Sep 22 2005 -
* Released hsfmodem-7.18.00.06.
Mon Sep 19 2005 -
* Added --patch option to config script for easier installation of patches.
* Added ATI PCI ID 1002:4378.
* Added USB ID 0803:1300 (Zoom Telephonics USB V.92)
* Improved Debian and Gentoo compatibility.
* Improved compatibility with newer kernels.
Mon Jun 20 2005 -
* Released hsfmodem-7.18.00.05.
Mon Jun 20 2005 -
* Added support for Fedora Core 4.
* Added support for gcc 4.0.
* Added support for pre-built debian binary packages.
* Added checks to warn about kernel configuration options which are
known to be problematic on some systems.
* Added support for Freedows.
* Added detection of Ubuntu, Knoppix, Mepis and Freedows distributions.
* Improved kernel header checks.
Wed Mar 09 2005 -
* Fixed small bug in NVM uninstall.
* Added check to ensure install partition supports symbolic links.
Thu Mar 03 2005 -
* Released hsfmodem-7.18.00.03.
Thu Mar 03 2005 -
* Added support for 2.6.11 kernels.
* Fixed gcc-3.4 compilation issues.
Thu Dec 30 2004 -
* Released hsfmodem-7.18.00.02.
Thu Dec 30 2004 -
* Compatibility improvements.
* Fixed OsSleep() bug.
Wed Dec 15 2004 -
* Released hsfmodem-7.18.00.01.
Wed Dec 15 2004 -
* Removed -march=k8 from IMPORTED_COMPILATION_FLAGS on x86_64
as it is not accepted by some versions of gcc.
Tue Dec 14 2004 -
* Released hsfmodem-7.18.00.
Tue Dec 14 2004 -
* Added support for ATI and SIS MC97 controllers.
* Merged latest Conexant modem code (v7.18.00), including
support for soft-ring detection and MT extensions.
* Updated nvm/inf/hsf.cty (CTYGen.mst).
* Various compatibility improvements.
* Added support for x86_64 architecture.
* Added support for USB HSF devices with SmartDAA.
* Added --uninstall option to config script.
* Centralized .in file generation.
* Modified scripts to use /var/run/ for temp files.
* Fixed pppd connect / deadlock issue under 2.6.
* Fixed reading /proc/driver/hsf/*/lastcallstatus with non-zero offset.
* Changed module install location from /lib/modules/`uname -r`/misc
to /lib/modules/`uname -r`/extra.
Mon Nov 15 2004 -
* Released hsfmodem-6.03.00lnxt04111500.
Mon Nov 15 2004 -
* Fixed module building issues.
Fri Nov 12 2004 -
* Released hsfmodem-6.03.00lnxt04111200.
Fri Nov 12 2004 -
* Added pre-built binary packages for Sun JDS Release 2.
* Added udev rules for newer distributions.
* Fixed USB interface issues.
* Removed inline attribute for osusb.c:ChangeUrbListEntryState().
* Removed obsolete serial probeall line from modules.conf.
* Improved compatibility with kernel build environment.
* Clarified messages about conflicting modules.
Tue Aug 24 2004 -
* Released hsfmodem-6.03.00lnxt04082400.
Mon Aug 23 2004 -
* Added automatic detection and disabling of conflicting modules.
* Added rc startup script to automatically build kernel modules
if necessary (and feasible, only with generic packages) and load them.
* Added support for /etc/modprobe.d and workaround for udev (modules
remain loaded after installation).
* Fixed building without CONFIG_USB.
Fri Aug 06 2004 -
* Added USB device 08E3:111 (Olitec Speed'Com USB V92 Ready).
Fri Jul 30 2004 -
* Added ICH PCI ID 10DE:00D9 (NVIDIA nForce3).
Thu Jul 29 2004 -
* Released hsfmodem-6.03.00lnxt04072900.
Thu Jul 29 2004 -
* Fixed block size bug introduced with USB support.
* Fixed USB build compatibility with older kernels.
* Fixed build issues with SuSE 2.6.5-7.95 kernel upgrade.
* Added support for the latest SuSE 9.1 kernel update (2.6.5-7.75).
Mon Jun 28 2004 -
* Released hsfmodem-6.03.00lnxt04062800.
Mon Jun 28 2004 -
* Added support for HSF USB modems.
Fri Jun 18 2004 -
* Released hsfmodem-6.03.00lnxt04061800.
Fri Jun 18 2004 -
* Fixed compilation problem with gcc 3.3.3.
* Added support for the latest SuSE 9.1 kernel update (2.6.5-7.75).
Wed May 19 2004 -
* Added Fedora Core 2 support.
* Removed __devinitdata from pci_device_id table.
Thu May 13 2004 -
* Added ICH6 (8086:266D) support.
Thu May 13 2004 -
* Released hsfmodem-6.03.00lnxt04051300.
Thu May 13 2004 -
* Reduced stack consumption to accommodate smaller 4k kernel stacks.
(fixes crashes under recent Fedora test kernels)
* Added check to ensure config script is executed as root.
Sat May 08 2004 -
* Released hsfmodem-6.03.00lnxt04050800.
Sat May 08 2004 -
* Fixed regParm issue causing crashes on SuSE 9.1.
Sat May 01 2004 -
* Released hsfmodem-6.03.00lnxt04050100.
Fri Apr 30 2004 -
* Corrected MODULE_LICENSE() in mod_engine.c to ensure tainting.
Sun Apr 18 2004 -
* Added KBUILD_EXTMOD support.
Tue Apr 13 2004 -
* Released hsfmodem-6.03.00lnxt04041300.
Tue Apr 13 2004 -
* Adjusted serial_core init_termios for minicom.
Sun Mar 28 2004 -
* Released hsfmodem-6.03.00lnxt04032800.
Sat Mar 27 2004 -
* Implemented delayed writes in osnvm and eliminated use of pid file in
hsfdcpd to accomodate early module loads on SuSE when root filesystem is
still read-only.
Fri Mar 26 2004 -
* Fixed "hsfserial: falsely claims to have parameter calloutmajor" issue.
* Support pre-built binary packages for 2.6 kernels.
* Support SuSE's new-style kernel config and SetupKernelSource.sh on
TurboLinux.
Sat Mar 13 2004 -
* Released hsfmodem-6.03.00lnxt04031300.
Sat Mar 13 2004 -
* Fixed devfs_mk_cdev() issue under 2.6.
Wed Feb 11 2004 -
* Added ICH PCI ID 8086:7196.
Tue Jan 27 2004 -
* Added ICH5 (8086:24D6) support.
Mon Jan 19 2004 -
* Released hsfmodem-6.03.00lnxt04011900.
Mon Jan 19 2004 -
* Fixed crashes which occured under RedHat's experimental 2.6 kernels.
* modules/osservices.c: fixed recursive uniprocessor CriticalSection issue.
Sun Dec 28 2003 -
* Released hsfmodem-6.03.00lnxt03122800.
Sun Dec 28 2003 -
* Added support and pre-built binary packages for Fedora Core 1.
* Added pre-built binary packages for the latest RedHat, Mandrake,
and Turbolinux kernel updates.
* Fixed deprecated tail syntax in kernelcompiler.sh script.
* Fixed cnxthwpci_common.c compile issue under 2.6 with older gcc versions.
* Added check for CONFIG_SERIAL_CORE to serial_cnxt.c.
* Added check for disabled kernel.modprobe (set to /bin/true by 2.4
rc.sysinit script looking for /proc/ksyms instead of /proc/kallsyms).
* Integrated Conexant modem improvements.
Mon Nov 24 2003 -
* Released hsfmodem-6.03.00lnxt03112400.
Fri Nov 21 2003 -
* Added Turbolinux support.
Fri Nov 21 2003 -
* Released hsfmodem-6.03.00lnxt03112100.
Fri Nov 21 2003 -
* Fixed directory creation issue with NVM_Open() on SuSE 9.0.
* Added pre-built binary packages for SuSE 2.4.21-144 kernel update.
Tue Nov 11 2003 -
* Released hsfmodem-6.03.00lnxt03111100.
Tue Nov 11 2003 -
* Added pre-built binary packages for the following distributions:
- Mandrake 9.2
- SuSE 9.0
* modules/osservices.c: fixed more 2.6-test issues.
* scripts/cnxtconfig.in, modules/kernelcompiler.sh: unset LANG.
Sat Oct 11 2003 -
* Allow AT+FCLASS=0 in free version for compatibility reasons.
* Fixed incorrect documentation symlink on debian.
* modules/osstdio.c:OsFSeek() now returns proper value.
* scripts/cnxtconfig.in: use depmod -a instead of -A,
add char-major- module alias for DCP device and
update_module_dependencies after removing modules.
* scripts/cnxtstop.in: exit 0 at end.
* modules/osservices.c: fixed to build under latest 2.6-test7 kernels.
Thu Sep 18 2003 -
* Released hsfmodem-6.03.00lnxt03091800.
Thu Sep 18 2003 -
* Removed extraneous CID diagnostics messages.
* modules/mod_pcibasic2.c: use pcibasic2hsfi profile for 14f1:2f0x.
* nvm/cvtinf.pl,makefile: do not use generic relays for HSFi since they
interfere with RING detection.
Tue Sep 16 2003 -
* Released hsfmodem-6.03.00lnxt03091600.
Tue Sep 16 2003 -
* Corrected slight timing issue with key abort just after dial command.
(Thanks to Angus Auld for reporting it)
Fri Sep 12 2003 -
* Released hsfmodem-6.03.00lnxt03091200.
Fri Sep 12 2003 -
* modules/kernelcompiler.sh: improved to avoid building modules
with gcc 2.x for kernels compiled with gcc 3.x. This was the cause
of some oops, notably on Debian.
* INSTALL: removed reference to common.mak which no longer exists.
* scripts/cnxtdcpd.in: various improvements.
Wed Sep 10 2003 -
* Released hsfmodem-6.03.00lnxt03091001.
Wed Sep 10 2003 -
* dist/modules/osnvm.c: fixed bug in NVM_ReadCountryParm()
preventing referenced parameters from being read-in correctly.
This led to wrong RELAYS values causing the modem to go off hook
as soon as the driver modules were loaded.
* nvm/cvtinf.pl: use generic HSF RELAYS to fix possible issues with
older devices that previously worked.
* cnxtmodem.spec.in: put static nvm parameter files in nvm.tar.gz
instead of including them directly in RPMs, to avoid hard links
which are not supported by older RPM versions (fixes the
"rpmlib(PartialHardLinkSets)" dependency problem).
Tue Sep 09 2003 -
* Released hsfmodem-6.03.00lnxt03090900.
Tue Sep 09 2003 -
* Fixed issue with non-standard memory configurations.
Mon Sep 08 2003 -
* Released hsfmodem-6.03.00lnxt03090800.
Mon Sep 01 2003 -
* Fixed various issues with MC97 drivers (especially ICH)
that might have caused lockups.
Fri Aug 29 2003 -
* Added support for DIAGMGR (SDK2K) and BLAM.
* Incorporated DMP support in osdiag.
Thu Aug 28 2003 -
* Added support for DCP (Digital Call Progress) audio monitoring.
* Updated region parameters.
* Disabled dialtone detection (ATX3) by default.
Tue Aug 26 2003 -
* Added workaround for serial driver falsely claiming to handle
our devices.
* Added workaround to fix problems loading hsfmc97ali after
trident ac97 audio driver due to a bug in the latter.
Mon Aug 25 2003 -
* Improved Debian support, added .deb packaging (make debdist).
Sun Aug 24 2003 -
* Significant overhaul done during spring/summer 2003, greatly
improving modem stability, compatibility, and features!
* Added V.92, Caller ID and FAX (Class 1/1.0) support.
* Added support for 2.6 kernels (presently -test3 and -test4).
* Numerous bugs fixed.
* config script has been greatly improved.
* NVM/.inf handling completely redesigned. Parameters updated.
* Multiple device instances now supported, which means that
more than one modem can be handled by the driver.
* pci_register_driver() used instead of pci_find_device().
* Improved SMP support; also preemptible kernels should now work.
* Renamed HSF driver package to hsfmodem. Default etc and lib
directories are now /etc/hsfmodem/ and /usr/lib/hsfmodem/ respectively.
Sun Apr 27 2003 -
* Released hsflinmodem-5.03.27lnxtbeta03042700.
Sun Apr 27 2003 -
* makefile, hsflinmodem.spec.in: changes to build packages for newer
SuSE versions with i586 arch and athlon kernels.
* modules/kernelcompiler.sh: fixed SuSE 8.2 issue.
* scripts/hsfconfig.in: improved dump_diagnostics() and added --noprobe
option.
* scripts/hsfconfig.in: use ${AWK} (gawk if present) instead of awk.
* scripts/hsfconfig.in: fix link problem in create_temp_kernel_tree().
* FAQ: updated.
Fri Apr 18 2003 -
* modules/serial_hsf.c: hsf_get_lastcallstatus(): use length and check
offset.
* imported/hsfengine.O: increased buffer size for AT#UG (lastcallstatus).
Wed Apr 16 2003 -
* Released hsflinmodem-5.03.27lnxtbeta03041600.
Wed Apr 16 2003 -
* FAQ: major update.
* makefile: added rule to sign rpm packages.
* inf/linux_intel_smartmc.inf: added 8086:24C6 device (thanks to
Gianpaolo Cugola who reported successfully using this inf
file with his Dell Latitude D600)
* inf/linux_hsfi.inf: added 14F1:2702 device.
Wed Apr 16 2003 -
* Added pre-built binary packages for the following
distributions/kernel versions:
Mandrake 9.1 linux-2.4.21-0.13mdk
Mandrake 9.0 linux-2.4.19-32mdk
RedHat 9 linux-2.4.20-8 and -9
RedHat 8.0 linux-2.4.18-27.8.0
SuSE 8.2 2.4.20-4GB
* modules/kernelcompiler.sh: updated.
Wed Apr 16 2003 -
* modules/osspec/ostime.c: compatibility changes for
RedHat 9 and newer 2.5 kernels.
* modules/osspec/ostime.c: fixed important race in mdmthrd().
Wed Apr 16 2003 -
* Now officially maintained and distributed by Linuxant.
Wed Dec 26 2002 -
* Released hsflinmodem-5.03.27mbsibeta02122600.
Wed Dec 26 2002 -
* Merged workarounds for various V.42 problems.
* Merged new improved Conexant modem code (v5.03.27).
* Added support for configurable buffer switch delays.
Wed Dec 25 2002 -
* Released hsflinmodem-5.03.03mbsibeta02122500.
Wed Dec 25 2002 -
* Resolved hangs/disconnects after a few retrains.
* Simplified RTMgr to eliminate ordering issues affecting
flow control status events.
* Fixed AT%E0 command to disable retrains/renegs.
* Output trace error messages.
Tue Dec 17 2002 -
* makefile: added Mandrake 9.0 linux-2.4.19-19mdk kernel.
* makefile: added RedHat 2.4.18-19.7.x and 2.4.18-19.8.0 kernels.
Mon Dec 09 2002 -
* inf/linux_hsf.inf: added 127A:2004 (thanks to Paul Lebeyka).
Thu Nov 14 2002 -
* modules/osspec/ostime.c: emulate nested critical sections to
hopefully fix hangs on SMP.
Sun Nov 03 2002 -
* Released hsflinmodem-5.03.03.L3mbsibeta02110301.
Sun Nov 03 2002 -
* modules/kernelcompiler.sh: use gcc 3 to build modules for
SuSE's 2.4.19-4GB kernel.
Sun Nov 03 2002 -
* Released hsflinmodem-5.03.03.L3mbsibeta02110300.
Sun Nov 03 2002 -
* makefile: added RedHat 2.4.18-17.7.x and 2.4.18-17.8.0 kernels.
* makefile: added SuSE 2.4.19-4GB kernel.
* modules/kernelcompiler.sh: use gcc 3 to build modules for
RedHat's 2.4.18-17.8.0 kernel.
* scripts/hsfconfig.in: put module configuration in /etc/modules.d and
run update-modules if present (for gentoo).
* modules/serial_hsf.c: properly test COMCTRL_MONITOR_POUND_UG_SUPPORTED.
Tue Oct 29 2002 -
* Limited printing of MC97 vendor IDs.
Fri Oct 11 2002 -
* Released hsflinmodem-5.03.03.L3mbsibeta02101001.
Fri Oct 11 2002 -
* modules/kernelcompiler.sh: use gcc 3 to build modules for
RedHat's 2.4.18-14 kernel.
Thu Oct 10 2002 -
* Released hsflinmodem-5.03.03.L3mbsibeta02101000.
Thu Oct 10 2002 -
* makefile: added RedHat 8.0 linux-2.4.18-14 kernel.
Mon Sep 30 2002 -
* inf/: Changed INTCODE for SWEDEN from 009 to 00.
(Thanks to Anders Helmersson)
Mon Sep 30 2002 -
* Released hsflinmodem-5.03.03.L3mbsibeta02093000.
Mon Sep 30 2002 -
* imported/hsfengine.O: fixed RTMgr race condition causing
flow control to hang when a lot of data is uploaded.
* makefile: added Mandrake 9.0 linux-2.4.19-16mdk kernel and
removed obsolete SuSE 2.4.4-4GB kernel.
Sun Sep 29 2002 -
* makefile: tardist: changed way tar.gz files are generated to
avoid gzip "decompression OK, trailing garbage ignored" messages.
* modules/serial_hsf.c: Added /proc/driver/hsf/0/lastcallstatus and
loglastcallstatus parameter, which when set to a non-zero value will
make the driver automatically log the last call status (AT#UG) info.
* INSTALL: document loglastcallstatus feature.
Mon Sep 23 2002 -
* modules/osspec/ostime.c: minor adjustments for 2.5 compatibility.
* modules/serial_core.c: uart_register_driver(): set driver_name
to drv->owner->name for proper /proc/tty/driver/ naming;
renamed HSFSERIAL_INCLUDE_CORE to CNXTSERIAL_INCLUDE_CORE throughout.
* Fixed potential crash upon MC97 driver initialization failure.
* imported/makeflags.mak: removed problematic COMPILATION_FLAGS.
* inf/linux_*_smartmc.inf: set additional HwData bit to improve
handshaking reliability.
* modules/kernelcompiler.sh: added gcc-2.96 (for Mandrake 9) and
RPM_BUILD_ROOT support.
Fri Sep 06 2002 -
* inf/linux_ali_smartmc.inf, README: added ALI 10B9:5453 MC97
controller.
Thu Sep 05 2002 -
* Released hsflinmodem-5.03.03.L3mbsibeta02090500.
Thu Sep 05 2002 -
* Added initial support for ALI MC97 controller (10B9:5457)
with Conexant AC-Link modems. Thanks to HP for supporting this effort!
* README, CREDITS: updated.
Thu Sep 05 2002 -
* imported/hsfengine.O: fixed another StatMgr bug.
Fri Aug 30 2002 -
* Released hsflinmodem-5.03.03.L3mbsibeta02083000.
Fri Aug 30 2002 -
* FAQ: updated.
* modules/osspec/include/oscompat.h: added check for CONFIG_PREEMPT.
* modules/osspec/ostime.c: fixed more potential race conditions and
thread termination problems.
* makefile: added Mandrake 2.4.18-8.1mdk kernel.
* Stack checker is now disabled by default.
Sun Aug 25 2002 -
* Released hsflinmodem-5.03.03.L3mbsibeta02082500.
Sun Aug 25 2002 -
* modules/osspec/include/oscompat.h: added attribute used
to stack_overflow() to prevent compiler from optimizing it out.
* modules/osspec/ostime.c: mdmthrd startup/shutdown improvements.
Sat Aug 24 2002 -
* Released hsflinmodem-5.03.03.L3mbsibeta02082400.
Sat Aug 24 2002 -
* makefile: added RedHat 2.4.18-10 kernel.
* modules/osspec/ostime.c: removed modem_task_fpu_begin/end() to
resolve floating point problem in kernel thread which caused
"MemMgr_Alloc:: failed, ReqSize == 0" errors on some machines.
Fri Aug 23 2002 -
* Released hsflinmodem-5.03.03.L3mbsibeta02082300.
Fri Aug 23 2002 -
* modules/osspec/include/oscompat.h: added kernel stack checker.
* modules/osspec/ostime.c: fixed potential race condition
in OSCriticalSectionAcquire().
* imported/hsfengine.O: fixed StatMgr/MemMgr issue causing
memory problems after 9-10 connections.
Tue Aug 20 2002 -
* Released hsflinmodem-5.03.03.L3mbsibeta02082000.
Tue Aug 20 2002 -
* modules/osspec/osmemory.c: emit error message upon vmalloc()
or kmalloc() failure.
* imported/hsfengine.O: memory manager should no longer
allocate/free os memory while holding locks.
Mon Aug 19 2002 -
* Released hsflinmodem-5.03.03.L3mbsibeta02081900.
Mon Aug 19 2002 -
* Eliminated OSCallOnMyStack() which was causing major crashes
due to get_current() expecting that a task_struct be present
at (esp & ~8191). Let's just hope that we will never exhaust
the kernel (interrupt) stack..
* Added modules/kernelcompiler.sh, a small script which tries
to guess which compiler should be used to build kernel modules.
* modules/common.mak: use kernelcompiler.sh to determine default CC
* modules/common.mak, INSTALL: added notes about KERNELSRC for
Debian 3.0 users.
* inf/linux_hsf.inf: added 14F1:2F10, 14F1:2F11, 14F1:2F13 (USR OEM).
Tue Jul 23 2002 -
* imported/hsfengine.O: asm fixes for gcc-3.2.
* README: added notice that preemptible kernels are not
supported (for now).
Sun Jul 21 2002 -
* Released hsflinmodem-5.03.03.L3mbsibeta02072100.
Sun Jul 21 2002 -
* makefile: added RedHat 2.4.9-34 and 2.4.18-5 kernels.
* Updated BUGS file.
Sat Jul 20 2002 -
* imported/hsfengine.O: important workaround for tricky StatMgr issue
causing sporadic memory corruption!
* modules/osspec/include/oscompat.h: added OSContextAllowsSleeping(),
which is false if we are in interrupt context or holding any lock.
* modules/osspec/ostime.c: implemented dedicated kernel thread,
replacing use of tq_scheduler and schedule_task().
* modules/osspec/ostime.c: TimerThreadFunction(): enclose
pTimeOutInstance->pTimeOutCallBack() in modem_task_fpu_begin/end().
* modules/osspec/ostime.c: rewrote OSCallOnMyStack().
* modules/osspec/ostime.c: use cmpxchg() as OsAtomicCompareAndSwap()
if available.
* modules/osspec/ostime.c: added OsAtomicIncrement() and
OsAtomicDecrement().
* modules/osspec/ostime.c: OsSleep(): ensure OSContextAllowsSleeping().
* modules/osspec/osmemory.c: OsHeapAllocate(), OsMemDMAAllocate(): use
GFP_ATOMIC if not OSContextAllowsSleeping().
* modules/makefile: libosspec.a for proper dependencies.
* inf/linux_hsfi.inf: use new official (Conexant) generic relays.
Thu Jul 11 2002 -
* inf/linux_hsf.inf: added 14F1:2F12 (3COM/USR model 3094-3095).
* config.mak: use HSFETCDIR for HSFBININF_FILE and HSFFIRMWR_FILE.
(Thanks to Fabrice LABORIE)
Tue Jun 25 2002 -
* Released hsflinmodem-5.03.03.L3mbsibeta02062500.
Tue Jun 25 2002 -
* modules/osspec/include/oscompat.h: get rid of non-standard min/max
macros under 2.4.9.
* inf/linux_hsfi.inf: backout generic RELAYS for now.
* Minor frequency calculation tweak in VIA MC97 controller driver.
* modules/osspec/osdebug.c: OsErrorVPrintf() now uses default printk
level.
Tue Jun 18 2002 -
* Released hsflinmodem-5.03.03.L3mbsibeta02061800.
Tue Jun 18 2002 -
* Fixed frequency calculation issue in VIA MC97 controller driver.
* Added one-time print of MC97 vendor IDs.
* OSTermPowerManagement(): use pm_unregister() under 2.4,
pm_unregister_all() only once under 2.2.
Mon Jun 17 2002 -
* Released hsflinmodem-5.03.03.L3mbsibeta02061700.
Sun Jun 16 2002 -
* Added preliminary power-management support.
* Improved hardware interrupt initialization.
* modules/osspec/ostime.c: OsSleep() and MSECS_TO_TICKS() tweaking.
Tue Jun 11 2002 -
* makefile, hsflinmodem.spec.in: don't include big pdf file in tar pkgs.
Mon Jun 10 2002 -
* makefile, hsflinmodem.spec.in: better error propagation for RPM builds.
Sun Jun 02 2002 -
* Released hsflinmodem-5.03.03.L2mbsibeta02060200.
Sun Jun 02 2002 -
* Restructured packaging once again to improve consistency with linux
distribution practices and further reduce space consumption.
* Merged latest VIA MC97 controller code, fixing RING detection
on some newer AC-link modems.
Sat Jun 01 2002 -
* Released hsflinmodem-5.03.03.L2mbsibeta02060100.
Sat Jun 01 2002 -
* modules/serial_hsf.c: hsf_tx_ready() should ignore hsf_evt_txempty
for now.
* modules/osspec/osstdio.c: various enhancements to OsFOpen().
Fri May 31 2002 -
* Added initial support for VIA MC97 controller (1106:3068)