-
Notifications
You must be signed in to change notification settings - Fork 17
/
hsfmodem.spec
1749 lines (1377 loc) · 54.2 KB
/
hsfmodem.spec
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
#
# Copyright (c) 2003-2010 Linuxant inc.
#
# NOTE: The use and distribution of this software is governed by the terms in
# the file LICENSE, which is included in the package. You must read this and
# agree to these terms before using or distributing this software.
#
%if "%{_target_distro}" == "custom"
%define _target_kernel %(eval uname -r)
%endif
# set _target_kernel to generic if it wasn't defined on the command-line
%if %{expand:%{?_target_kernel:0}%{!?_target_kernel:1}}
%define _target_kernel generic
%endif
%if %{expand:%{?_build_doc:0}%{!?_build_doc:1}}
%define _build_doc 0
%endif
%if %{expand:%{?_requires:0}%{!?_requires:1}}
%define _requires none
%endif
%if "%{_target_kernel}" == "generic"
%define ver 7.80.02.06x86_64full
%define rel 1
%define automrecomp 1
%else
%define ver 7.80.02.06x86_64full_k%(eval echo %{_target_kernel} | sed 's/-/_/g')
%define rel 1%{_target_distro}
%define automrecomp 0
%endif
%define cnxtdriver hsf
%define cnxtdrvdsc Conexant HSF softmodem driver
%define cnxttarget hsf
%define scr_support 0
%define dmp_support 0
%define blam_support 0
# Note that this is NOT a relocatable package
%define cnxtetcdir /etc/hsfmodem
%define cnxtlibdir /usr/lib/hsfmodem
# Even though newer versions of RPM provide definitions for these,
# we must still accomodate the older ones
%define prefix /usr
%define etcdir /etc
%define libdir %{prefix}/lib
%define sbindir %{prefix}/sbin
%define bindir %{prefix}/bin
Summary: %{cnxtdrvdsc}
Name: %{cnxttarget}modem
ExclusiveOS: Linux
%if "%{_target_kernel}" == "generic"
%if "%{cnxtdriver}" == "hsf"
ExclusiveArch: athlon i686 i586 i386 x86_64
%endif
%if "%{cnxtdriver}" == "hcf"
%if "%{_target_cpu}" == "ppc"
ExclusiveArch: ppc
%else
ExclusiveArch: athlon i686 i586 i486 i386
%endif
%endif
%else
%if "%{_target_distro}" != "custom"
ExclusiveArch: %{_target_cpu}
%endif
%endif
Version: %ver
Release: %rel
Vendor: Linuxant
License: Copyright (c) 2003-2010 Linuxant inc. All rights reserved.
Group: System Environment/Kernel
Source: %{cnxttarget}modem-7.80.02.06x86_64full.tar.gz
%if %{_build_doc}
Source2: 100498D_RM_HxF_Released.pdf
%endif
URL: http://www.linuxant.com/drivers/%{cnxtdriver}
BuildRoot: %{_tmppath}/%{cnxttarget}modem-%{PACKAGE_VERSION}-root
Packager: Linuxant
Requires: pciutils
%if %{automrecomp}
#Requires: kernel-source
Requires: gcc
%endif
%if "%{cnxtdriver}" == "hsf"
Requires: perl
%endif
%if "%{cnxtdriver}" == "hsf" || "%{cnxtdriver}" == "hcf"
Conflicts: %{cnxtdriver}linmodem
%endif
%if "%{_requires}" != "none"
Requires: %{_requires}
%endif
Autoreq: 0
%if %{_build_doc}
%package doc
Group: Documentation
Summary: Documentation for %{cnxtdrvdsc}
BuildArch: noarch
ExclusiveArch: noarch
%endif
%description
%{cnxtdrvdsc}
Copyright (c) 2003-2010 Linuxant inc.
Copyright (c) 2001-2010 Conexant Systems, Inc.
1. Permitted use. Redistribution and use in source and binary forms,
without modification, are only permitted under the terms set forth herein.
2. Disclaimer of Warranties. LINUXANT, ITS SUPPLIERS, AND OTHER CONTRIBUTORS
MAKE NO REPRESENTATION ABOUT THE SUITABILITY OF THIS SOFTWARE FOR ANY PURPOSE.
IT IS PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTIES OF ANY KIND.
LINUXANT AND OTHER CONTRIBUTORS DISCLAIMS ALL WARRANTIES WITH REGARD
TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE, GOOD TITLE AND AGAINST INFRINGEMENT.
This software has not been formally tested, and there is no guarantee that
it is free of errors including, but not limited to, bugs, defects,
interrupted operation, or unexpected results. Any use of this software is
at user's own risk.
3. No Liability.
(a) Linuxant, its suppliers, or contributors shall not be responsible for
any loss or damage to users, customers, or any third parties for any reason
whatsoever, and LINUXANT, ITS SUPPLIERS OR CONTRIBUTORS SHALL NOT BE LIABLE
FOR ANY ACTUAL, DIRECT, INDIRECT, SPECIAL, PUNITIVE, INCIDENTAL, OR
CONSEQUENTIAL (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED, WHETHER IN CONTRACT, STRICT OR OTHER LEGAL THEORY OF
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
OF SUCH DAMAGE.
(b) User agrees to hold Linuxant, its suppliers, and contributors harmless
from any liability, loss, cost, damage or expense, including attorney's fees,
as a result of any claims which may be made by any person, including
but not limited to User, its agents and employees, its customers, or
any third parties that arise out of or result from the manufacture,
delivery, actual or alleged ownership, performance, use, operation
or possession of the software furnished hereunder, whether such claims
are based on negligence, breach of contract, absolute liability or any
other legal theory.
4. Notices. User hereby agrees not to remove, alter or destroy any
copyright, trademark, credits, other proprietary notices or confidential
legends placed upon, contained within or associated with the Software,
and shall include all such unaltered copyright, trademark, credits,
other proprietary notices or confidential legends on or in every copy of
the Software.
5. Reverse-engineering. User hereby agrees not to reverse engineer,
decompile, or disassemble the portions of this software provided solely
in object form, nor attempt in any manner to obtain their source-code.
6. Redistribution. Redistribution of this software is only permitted
for exact copies (without modification) of versions explicitly marked
and officially released by Linuxant with the word "free" in their name.
Redistribution or disclosure of other versions, derivatives or license key
information is expressly prohibited without explicit written approval signed
by an authorized Linuxant officer.
7. Performance. V.92 modems are designed to be capable of receiving data at
up to 56Kbps with compatible phone line and server equipment, and transmitting
data at up to 31.2Kbps. V.90 modems are designed to be capable of receiving
data at up to 56 Kbps from a compatible service provider and transmitting data
at up to about 28.8 Kbps. Public networks currently limit download speeds to
about 53Kbps. The free version of the drivers is limited to 14.4Kbps.
Actual speeds vary and are often less than the maximum possible.
%if %{_build_doc}
%description doc
This package contains the documentation for the %{cnxtdrvdsc}.
%endif
%prep
%setup -q -n %{cnxttarget}modem-7.80.02.06x86_64full
%build
%if %{_build_doc}
if [ -f %{SOURCE2} ]; then cp %{SOURCE2} .; else true; fi
%else
make --quiet --no-print-directory all
%endif
%if "%{_target_kernel}" == "generic"
%else
MODS_DIR=binaries/linux-%{_target_kernel}
UNAMER=`uname -r`
# Figure out if we should add -SMP at the end of CNXT_MODS_DIR. We should only add it if the
# kernel was compiled with SMP and the word SMP doesn't appear in the kernel version. This
# is expected by dldrconfig.
case "%{_target_kernel}" in
*[Ss][Mm][Pp]*)
SMPSUFFIX=""
;;
*)
SMPSUFFIX="-SMP"
;;
esac
case "%{_target_distro}" in
rh | fdr | fs)
CONFIGFILE="%{_distro_kernels}/%{_target_distro}/linux-%{_target_kernel}.%{_target_cpu}/.config"
;;
custom)
CONFIGFILE="/lib/modules/${UNAMER}/build/.config"
;;
*)
CONFIGFILE="%{_distro_kernels}/%{_target_distro}/linux-%{_target_kernel}/.config"
;;
esac
if [ -e "${CONFIGFILE}" ] && grep -q '^CONFIG_SMP=y$' "${CONFIGFILE}"; then
MODS_DIR="${MODS_DIR}${SMPSUFFIX}"
fi
%if "%{_target_distro}" == "rh"
(
if cd modules; then
case "%{_target_kernel}" in
*.[Ee][Ll]*)
make --quiet --no-print-directory CNXT_KERNELSRC=%{_distro_kernels}/%{_target_distro}/linux-%{_target_kernel}.%{_target_cpu} DISTRO_CFLAGS="-D__MODULE_KERNEL_%{_target_cpu}=1" CNXT_MODS_DIR="${MODS_DIR}" clean all modules_install || exit $?
;;
*)
make --quiet --no-print-directory CNXT_KERNELSRC=%{_distro_kernels}/%{_target_distro}/linux-%{_target_kernel} DISTRO_CFLAGS="-D__BOOT_KERNEL_H_ -D__BOOT_KERNEL_ENTERPRISE=0 -D__BOOT_KERNEL_SMP=0 -D__BOOT_KERNEL_UP=1 -D__MODULE_KERNEL_%{_target_cpu}=1" CNXT_MODS_DIR="${MODS_DIR}" clean all modules_install || exit $?
;;
esac
fi
) || exit $?
%endif
%if "%{_target_distro}" == "fdr"
(
if cd modules; then
case "%{_target_kernel}" in
2.4*)
make --quiet --no-print-directory CNXT_KERNELSRC=%{_distro_kernels}/%{_target_distro}/linux-%{_target_kernel} DISTRO_CFLAGS="-D__BOOT_KERNEL_H_ -D__BOOT_KERNEL_ENTERPRISE=0 -D__BOOT_KERNEL_SMP=0 -D__BOOT_KERNEL_UP=1 -D__MODULE_KERNEL_%{_target_cpu}=1" CNXT_MODS_DIR="${MODS_DIR}" clean all modules_install || exit $?
;;
*)
make --quiet --no-print-directory CNXT_KERNELSRC=%{_distro_kernels}/%{_target_distro}/linux-%{_target_kernel}.%{_target_cpu} DISTRO_CFLAGS="" CNXT_MODS_DIR="${MODS_DIR}" clean all modules_install || exit $?
;;
esac
fi
) || exit $?
%endif
%if "%{_target_distro}" == "fs"
(
if cd modules; then
case "%{_target_kernel}" in
2.4*)
make --quiet --no-print-directory CNXT_KERNELSRC=%{_distro_kernels}/%{_target_distro}/linux-%{_target_kernel} DISTRO_CFLAGS="-D__BOOT_KERNEL_H_ -D__BOOT_KERNEL_ENTERPRISE=0 -D__BOOT_KERNEL_SMP=0 -D__BOOT_KERNEL_UP=1 -D__MODULE_KERNEL_%{_target_cpu}=1" CNXT_MODS_DIR="${MODS_DIR}" clean all modules_install || exit $?
;;
*)
make --quiet --no-print-directory CNXT_KERNELSRC=%{_distro_kernels}/%{_target_distro}/linux-%{_target_kernel}.%{_target_cpu} DISTRO_CFLAGS="" CNXT_MODS_DIR="${MODS_DIR}" clean all modules_install || exit $?
;;
esac
fi
) || exit $?
%endif
%if "%{_target_distro}" == "mdk"
(
if cd modules; then
make --quiet --no-print-directory CNXT_KERNELSRC=%{_distro_kernels}/%{_target_distro}/linux-%{_target_kernel} DISTRO_CFLAGS="-D__BOOT_KERNEL_H_ -D__BOOT_KERNEL_ENTERPRISE=0 -D__BOOT_KERNEL_SMP=0 -D__BOOT_KERNEL_UP=1 -D__MODULE_KERNEL_%{_target_cpu}=1" CNXT_MODS_DIR="${MODS_DIR}" clean all modules_install || exit $?
fi
) || exit $?
%endif
%if "%{_target_distro}" == "mdv"
(
if cd modules; then
make --quiet --no-print-directory CNXT_KERNELSRC=%{_distro_kernels}/%{_target_distro}/linux-%{_target_kernel} DISTRO_CFLAGS="" CNXT_MODS_DIR="${MODS_DIR}" clean all modules_install || exit $?
fi
) || exit $?
%endif
%if "%{_target_distro}" == "suse"
(
if cd modules; then
make --quiet --no-print-directory CNXT_KERNELSRC=%{_distro_kernels}/%{_target_distro}/linux-%{_target_kernel} CNXT_MODS_DIR="${MODS_DIR}" clean all modules_install || exit $?
fi
) || exit $?
%endif
%if "%{_target_distro}" == "jds"
(
if cd modules; then
make --quiet --no-print-directory CNXT_KERNELSRC=%{_distro_kernels}/%{_target_distro}/linux-%{_target_kernel} CNXT_MODS_DIR="${MODS_DIR}" clean all modules_install || exit $?
fi
) || exit $?
%endif
%if "%{_target_distro}" == "turbo"
(
if cd modules; then
make --quiet --no-print-directory CNXT_KERNELSRC=%{_distro_kernels}/%{_target_distro}/linux-%{_target_kernel} DISTRO_CFLAGS="-D__BOOT_KERNEL_H_ -D__BOOT_KERNEL_SMP=0 -D__BOOT_KERNEL_SMP64G=0 -D__BOOT_KERNEL_UP=1 -D__BOOT_KERNEL_BOOT=0 -D__MODULE_KERNEL_%{_target_cpu}=1" CNXT_MODS_DIR="${MODS_DIR}" clean all modules_install || exit $?
fi
) || exit $?
%endif
%if "%{_target_distro}" == "redflag"
(
if cd modules; then
make --quiet --no-print-directory CNXT_KERNELSRC=%{_distro_kernels}/%{_target_distro}/linux-%{_target_kernel} DISTRO_CFLAGS="" CNXT_MODS_DIR="${MODS_DIR}" clean all modules_install || exit $?
fi
) || exit $?
%endif
%if "%{_target_distro}" == "custom"
(
if cd modules; then
make --quiet --no-print-directory CNXT_KERNELSRC=/lib/modules/${UNAMER}/build DISTRO_CFLAGS="" CNXT_MODS_DIR="${MODS_DIR}" clean all modules_install || exit $?
fi
) || exit $?
%endif
%endif
%install
rm -rf $RPM_BUILD_ROOT
make --quiet --no-print-directory all
make --quiet --no-print-directory ROOT=$RPM_BUILD_ROOT install
if [ -d $RPM_BUILD_ROOT%{cnxtetcdir}/nvm ]; then
( cd $RPM_BUILD_ROOT%{cnxtetcdir}/nvm && cd .. && tar czf nvm.tar.gz nvm && rm -rf nvm/*)
fi
echo "RPM" > "$RPM_BUILD_ROOT/%{cnxtetcdir}/package"
%if "%{_target_kernel}" != "generic"
find "$RPM_BUILD_ROOT/%{cnxtlibdir}" \( -name '*.[chO]' -o -name 'Makefile' -o -name '*.mak' -o -name '*.sh' \) -exec rm -f {} \;
%endif
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(0555, root, root, 755)
%{sbindir}/%{cnxttarget}config
%{sbindir}/%{cnxttarget}stop
%{sbindir}/%{cnxttarget}modconflicts
%{cnxtlibdir}/rc%{cnxttarget}
%if "%{cnxtdriver}" == "hsf" || "%{cnxtdriver}" == "dgc"
%{sbindir}/%{cnxttarget}dcpd
%endif
%if %{scr_support}
%{sbindir}/%{cnxttarget}scr
%{bindir}/qtmodemon
%endif
%if %{dmp_support}
%{sbindir}/%{cnxttarget}dmp
%endif
%if %{blam_support}
%{sbindir}/%{cnxttarget}diag
%endif
%defattr(0444, root, root, 755)
%dir %{cnxtetcdir}
%dir %{cnxtetcdir}/log
%if "%{cnxtdriver}" != "dgc"
%dir %{cnxtetcdir}/nvm
%{cnxtetcdir}/nvm.tar.gz
%endif
%{cnxtetcdir}/package
%dir %{cnxtlibdir}
%doc %{cnxtlibdir}/LICENSE
%dir %{cnxtlibdir}/modules
%dir %{cnxtlibdir}/modules/GPL
%doc %{cnxtlibdir}/modules/GPL/COPYING
%{cnxtlibdir}/modules/binaries
%if %{automrecomp}
%config %{cnxtlibdir}/config.mak
%{cnxtlibdir}/modules/imported
%attr(755, root, root) %{cnxtlibdir}/modules/*.sh
%{cnxtlibdir}/modules/Makefile
%{cnxtlibdir}/modules/*.c
%if "%{cnxtdriver}" != "dgc"
%{cnxtlibdir}/modules/GPL/*.c
%endif
%{cnxtlibdir}/modules/GPL/*.h
%if "%{cnxtdriver}" == "hsf"
%dir %{cnxtlibdir}/modules/GPL/hda
%{cnxtlibdir}/modules/GPL/hda/*.c
%{cnxtlibdir}/modules/GPL/hda/*.h
%{cnxtlibdir}/modules/GPL/hda/Makefile
%endif
%dir %{cnxtlibdir}/modules/include
%{cnxtlibdir}/modules/include/*.h
%endif
%doc BUGS CHANGES INSTALL LICENSE README
%if "%{cnxtdriver}" != "dgc"
%doc FAQ CREDITS
%endif
%pre
if [ "$1" = 1 ]; then
if [ -e "%{cnxtetcdir}" ]; then
echo "Removing old %{cnxtetcdir}"
rm -rf "%{cnxtetcdir}"
fi
if [ -e "%{cnxtlibdir}" ]; then
echo "Removing old %{cnxtlibdir}"
rm -rf "%{cnxtlibdir}"
fi
fi
exit 0
%post
if [ -f %{cnxtetcdir}/nvm.tar.gz ]; then
( cd %{cnxtetcdir} && tar xzf nvm.tar.gz )
fi
#%if ! %{automrecomp}
CNXT_AUTOCONFIG=true
#%endif
if [ -n "${CNXT_AUTOCONFIG}" -a -z "${CNXT_NOAUTOCONFIG}" ]; then
%{sbindir}/%{cnxttarget}config --auto
ret=$?
if [ "${ret}" -eq 123 ]; then
ret=0
fi
if [ "${ret}" -eq 124 -a -n "${CNXT_NOWRONGKERNELFAIL}" ]; then
ret=0
fi
exit ${ret}
else
echo "To complete the installation and configuration of your modem,"
echo "please run \"%{cnxttarget}config\" (or \"%{sbindir}/%{cnxttarget}config\")"
exit 0
fi
%preun
%{sbindir}/%{cnxttarget}stop
if [ "$1" = 0 ]; then
if [ -z "${CNXT_NOAUTOCONFIG}" ]; then
%{sbindir}/%{cnxttarget}config --remove
fi
if [ -f %{cnxtetcdir}/nvm.tar.gz ]; then
( cd %{cnxtetcdir} && rm -rf `tar tzf %{cnxtetcdir}/nvm.tar.gz | egrep '^nvm/[^/]+/?$'` )
fi
else
exit 0
fi
%if %{_build_doc}
%files doc
%doc *.pdf
%endif
# This must be last since the file CHANGES is automatically appended
%changelog
* 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.