forked from Distrotech/cdrkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changelog
8360 lines (6663 loc) · 282 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
cdrkit (1.1.11) RELEASED; urgency=low
[ Steve McIntyre ]
* genisoimage: Fix silly bug in MD5 output in template files. (Debian
bug #596681)
* genisoimage: Minor tweaks to the the genisoimage.1 man page.
* genisoimage: Update references to atterer.org (Debian bug #596860)
* genisoimage.1: Make the description of the md5-list format clearer.
[ Mike Paul ]
* genisoimage: Use memmove() instead of strcpy() when cleaning
up graft points.
-- Steve McIntyre <93sam@debian.org> Fri, 23 Apr 2010 00:30:18 +0100
cdrkit (1.1.10) RELEASED; urgency=low
[ Steve McIntyre ]
* genisoimage: add support for sha256 and sha512 checksum generation
when making jigdo files.
* genisoimage: checksumming with lots of algorithms can be very
time-consuming, so split it out into multiple threads if possible.
* genisoimage: allow user to specify which checksum algorithms to run
on the command line.
* Fix FTBFS with missing xconfig.h. Thanks to Matt Kraai for the patch.
[ Nikola Pajkovsky ]
* genisoimage: fix string overflow breakage when using the -root
option (https://bugzilla.redhat.com/show_bug.cgi?id=508449)
[ Peter Samuelson ]
* librols: remove or rename several functions that clash with POSIX.
Fix up callers.
-- Steve McIntyre <93sam@debian.org> Thu, 14 May 2009 00:28:48 +0100
cdrkit (1.1.9) RELEASED; urgency=low
[ Steve McIntyre ]
* wodim: In -msinfo mode, only suggest dvd+rw-mediainfo in verbose mode.
Thanks to Michael Karcher <debian@mkarcher.dialup.fu-berlin.de> for the
patch.
* genisoimage: undo a mistake in the directory permissions change in
the last release. Fixes handling of deep directory structures.
-- Steve McIntyre <93sam@debian.org> Sun, 26 Oct 2008 15:43:54 -0700
cdrkit (1.1.8) RELEASED; urgency=low
[ Steve McIntyre ]
* genisoimage/joliet.c: Fix a potential memory corruption bug.
* genisoimage/md5.c: Trivial cleanup
* genisoimage/genisoimage.[c1]: Add command-line support for
-jigdo-template-compress
* genisoimage/sha1.h: Fix a type issue that broke sha1 support
on 64-bit arches.
* genisoimage/checksum.[ch]: Added test code; changed internal
layout slightly to make for easier debug.
* genisoimage: Applied patch from Roman Rakus <rrakus@redhat.com> to
preserve directory permissions.
* genisoimage: Add a patch from Ivan Shmakov. "-o -" will now write
to stdout, as typical for command line programs. And we will try
not to corrupt stdout by default if it's a terminal.
* genisoimage/genisoimage.1: Add a mention of -chrp-boot.
* genisoimage/mac_label.c: Fix an over-keen s/mkisofs/genisoimage.
-- Steve McIntyre <93sam@debian.org> Mon, 25 May 2008 21:22:26 +0100
cdrkit (1.1.7.1) RELEASED; urgency=low
[ Steve McIntyre ]
* Re-spin the 1.1.7 release with a few silly release process errors fixed.
-- Steve McIntyre <93sam@debian.org> Mon, 17 Mar 2008 21:25:56 +0000
cdrkit (1.1.7) RELEASED; urgency=low
[ Harald Hoyer ]
* lots of fixes to prevent gcc warnings
* Fix for Joliet directory length bug in genisoimage
[ Peter Samuelson ]
* wodim.1: small fixes.
[ Steve McIntyre ]
* genisoimage/jte.c: add support for bzip2-compressed templates
* genisoimage/jte.c: fix bzip2-compressed template data to be
compatible with jigdo.
* genisoimage/jte.c: fix exclude list handling.
* genisoimage/checksum.[ch]: Add a generic infrastructure for
checksums so we can use sha1/<whatever> as well as just
md5sum. Will make things much faster for generating sha1sums for
images and jigdos.
* genisoimage/sha1.[ch]: Add GPL-licensed SHA1 implementation.
* s/mkisofs/genisoimage/ in ABOUT
-- Steve McIntyre <93sam@debian.org> Mon, 17 Mar 2008 20:07:58 +0000
cdrkit (1.1.6) RELEASED; urgency=low
[ Vladimir Nadvornik ]
* genisoimage/eltorito.c: care about inhibit flags when preparing eltorito
boot catalog directory entry, avoiding possible crashes
[ Eduard Bloch]
* ALL: customize the base manpage subdirectory below PREFIX using the new
MANSUBDIR variable
* make sure that the buffer is flushed and drive is ready before closing
session
* icedax: find libossaudio on OpenBSD and use it
* icedax: fixed bug with --devices (unnoticed segfault due to wrong
list_devices arguments)
* wodim/scsi_scan.h: moved Linux-specific recorder location guesser to an
extra method for automatic drive opening, and added an alternative
guessing method, using list_devices(...) picking up the first drive having
appropriate device type in the inquiry info. This generic method is also
used on Linux when the original guesser fails.
* wodim/wodim.c: count all track sizes when looking for an appropriate drive
-- Eduard Bloch <blade@debian.org> Sun, 06 May 2007 16:39:08 +0200
cdrkit (1.1.5.1) RELEASED; urgency=low
* resync with cosmetical last-minute changes from Peter Samuelson
* Makefile: "release" target extension to make the Debian related source
file creation more convinient
-- Eduard Bloch <blade@debian.org> Sat, 21 Apr 2007 11:30:35 +0200
cdrkit (1.1.5) RELEASED; urgency=low
* wodim: explicite warning and more grace time if user manually specifies a size
less than 301 sectors, which is likely to be a mistake from copy-pasting
of genisoimage -print-size output and omitting the block factor
* wodim: Native device name management directly in libusal now, the
rewritten device scan method uses it directly. If the backend driver does
not implement native names handling, the old-style IDs are displayed.
* libusal: native device name management, implemented on Linux and
Win32(SPT) for now
* libusal: ATA is now mapped directly into the b/t/l namespace, with some
workarounds to provide backward compatibility
* libusal: For SCSI devices, use only scd* on kernel 2.6 and sg* on kernel
2.4 until proper locking scheme is established
* libusal: always return a known value in usal_sense_table(...), from a
patch from SUSE (cdrkit-dvd-fix.patch)
* genisoimage: customized the default APPID string in genisoimage
* genisoimage: restored support for iso9660 file sizes up to 4GB-1
* genisoimage: forced MAGIC_ERROR definition for older version, thanks
to Thomas Schmidt
* genisoimage: avoid pointless warnings on filetype of <root directory>/..
-- Eduard Bloch <blade@debian.org> Sat, 21 Apr 2007 10:17:35 +0200
cdrkit (1.1.4) RELEASED; urgency=low
[ Eduard Bloch ]
* On Linux, do device scanning on /dev/sr first and fallback to /dev/sg and
others only then, thus having better chances to use the same exclusive
lock as other programs when the user provided only the b/t/l
device specification, since the Linux kernel is not able to coordinate the
locking between the userspace interfaces
* some refactoring, moved new Linux specific extensions to scsi-linux-sg.c,
more relaxed device opening checks on scanning
* some more warnings about b/t/l syntax deprecation
-- Eduard Bloch <blade@debian.org> Sun, 01 Apr 2007 21:49:03 +0200
cdrkit (1.1.3) RELEASED; urgency=medium
[ Eduard Bloch ]
* Fixed fishing for transfer size in sysfs, now ready for
/dev/class/scsi_generic contents
* Fixed /dev/sg%d pattern scan in --devices, now iterating over modern style
device files. Thanks to Thomas Schmidt.
* Dealing with the last newline char when processing
/proc/sys/dev/cdrom/info contents
* print the track size in the info message when guessing
* added some missing or probably missing definitions in
wodim/CMakeLists.txt, restoring the reading from inf files
* passing through the real file size to the UDF generator. Creating
incorrect iso9660 but having it this way is better than no LFS at all.
* removed md5* parts and integration from icedax, patch by
Vladimir Nadvornik <nadvornik@suse.cz>
* various small bugfixes or cosmetic fixes picked from still GPLed parts of
cdrtools-2.01.01a24, excluding meta changes and big tree.c and mkisofs.c
refactoring. Stream file name option enabled now.
* wodim.1: "you have 4 seconds to abort ..."
* defaults.c: Correct fallback to CDR_FIFOSIZE and correct error message
on bad input.
* tell the user his device is busy on Linux because it's mounted, after
looking at /proc/mounts
[ Peter Samuelson ]
* Clean up Linux-2.6 CD/DVD-R drive detection, clearer error messages.
-- Eduard Bloch <blade@debian.org> Mon, 26 Mar 2007 17:35:10 +0200
cdrkit (1.1.2) RELEASED; urgency=low
[ Stefan Huehner ]
* more Cstyle cleanups
[ Eduard Bloch ]
* stop confusion and bailing out if burnfree/burnproof options have been
explicitely specified
* be move carefull with -dummy when the DVD media may not support it
* extracting drive's default speed in attach_mdvd()
* automatic recorder device guessing code, currently Linux-only
[ Peter Samuelson ]
* Fix icedax cddb query, based on a patch from Heiko Schlenker
-- Eduard Bloch <blade@debian.org> Sat, 13 Jan 2007 00:45:38 +0100
cdrkit (1.1.1) RELEASED; urgency=low
* added geteltorito script from Rainer Krienke
[ Eduard Bloch ]
* more verbose abort message if track is specified with some maintainance
command (#369677)
* Added more DVD related fixes from SuSE's wodim-1.0pre5cvs-6.src.rpm
* --devices option for wodim (modeled after cdrskin's output), working on
Linux and Cygwin
* Open-By-Device-Letter mode on Cygwin
* -msifile=... option to store -msinfo output reliably in a dedicated file
* clear profile names printing (using code from libburnia, thanks to Thomas
Schmidt)
* cleanup with unused embedded CVS revision strings from Schilling and
more gcc -Wall correctness
* reenabled -format functionality (bug in program function control flow)
* get maximum DMA buffer size from sysfs on Linux, where possible
* enable BURN-Free by default where possible
* setting argv[0] to wodim if someone is cheating and calls it as cdrecord.
Avoids confusion and printing of the wrong app name in the help output.
* more documentation updates WRT cdda2wav->icedax renaming, more table
formating fixes in icedax.1
* genisoimage documentation updates, mkisofs name changes
[ Thomas Schmidt ]
* workaround for older libmagic API
* code for clear profile name mapping
[ Peter Samuelson ]
* expand where genisoimage looks for the config file - same places
mkisofs looks plus a few more. (We may wish to trim this back some.)
* major cleanups to genisoimage.1 manpage; split out the part about
.genisoimagerc to a new page genisoimagerc.5.
[ Steve Langasek ]
* allow hppa and alpha boot code to coexist in one ISO image
[ Arkadiusz Miskiewicz ]
* Fake prefix line in the version output of readom to keep compatibility
with frontends
-- Eduard Bloch <blade@debian.org> Sat, 30 Dec 2006 16:45:40 +0100
cdrkit (1.1.0) RELEASED; urgency=medium
[ Eduard Bloch ]
* replacement of libdeflt, config parser rewrite; more user-friendly,
more flexible/tolerant now
* config overhaul, much more dynamic checks, including fixes for SunOS and
AIX environment, including proper libiconv detection, and processing of
LDFLAGS provided by user. Also fixed confusing double-checks for some of
the variables in cdda2wav.c.
* mass renaming of applications and libraries, see FAQ
* dirsplit -S fix, oversized have been possible before
* consistent version display
* cleanup of libschily, removed unused/superfluous parts (assumed having a
modern POSIX compliant environment). Renamed to librols
(RemainsOfLibSchily).
* reenabled selection of the DVD driver, accidentaly disabled in 1.0, when
beeing in non-verbose mode
* made dirsplit work with file symlinks
* incorporated some OpenSUSE patches:
+ cdrkit-HZ.patch (with initialized value, *sic*)
+ cdrkit-dvd-fix.patch (return code tracking)
+ cdrkit-gcc-workaround.patch
+ cdrkit-mkisofs-fail-on-large-file.patch (don't just skip them)
+ cdrkit-mkisofs-grow-check.patch (tolerate grown files)
+ cdrkit-perms.patch (not breaking on missing device files)
[ Christian Fromme ]
* big cleanup, phase I, getting rid from Cstyle function definitions in
applications
[ Lorenz Minder ]
* user output junk filter in icedax/toc.c
* flexible ascii conversion buffer
-- Eduard Bloch <blade@debian.org> Sat, 02 Dec 2006 18:43:14 +0100
cdrkit (1.0) RELEASED; urgency=low
[ Eduard Bloch ]
* mapping of ATAPI: -> ATA: method on linux-2.6 and some code beautification
* added a atexit handler to stop the FIFO process more reliably, since
Schilling's constructs seem to terminate the application on too many
places
* print Burnfree state/preparation messages only with high verbosity
[ Dennis Vshivkov ]
* sorted display of files when needed
[ Joerg Jaspert]
* Remove all the printing of useless messages. This is based on GPLed
code, so we follow the letter of the GPL as it is interpreted by 99%
of the world, including its authors. Especially as Joerg was never able
to give us any clear explanation what other license he may think
cdrtools had, despite us asking multiple times. So we have no other
choice than to take whats written down, and thats GPL.
-- Joerg Jaspert <joerg@debian.org> Mon, 20 Nov 2006 19:25:10 +0100
cdrkit (1.0pre5) RELEASED; urgency=low
[ Eduard Bloch ]
* added better check for capability.h and FATAL_ERROR if it's missing on Linux
* wodim.1 updates, ie. moved suid howto to README.suidroot, Linux bashing to
README.linux, more notes about non-root usage
* more carefull description of the role of previous developer and his own
project
* fixed libmagic detection
* rewrote README.mkisofs, README.win32
* better track numbers extraction command in cdda2ogg/cdda2mp3
* reenabled (forgotten) support for libedc
* table formating fixes in cdda2wav.1, helps small terminals
* AIX 5l port
* killing FIFO process on ungraceful termination
* scsi-linux-sg.c: skipping unallowed devices, cleanup/consolidation of the
old workaround(s) for ATA now for SCSI too
* renamed error function to schily_error because it started to wreak random
havoc after harmless header moving (conflict with incompatible GNU version)
* restored scsi-remote.c compilation, moved to libscg sources, used instead
of rdummy.c
* added optional omiting of DMA speed tests
[ Vladimir Nadvornik ]
* enabled CLONE feature in wodim's config
[ Modestas Vainius ]
* dropped . from the include path and fixed mkisofs source to use the local
headers
[ Lorenz Minder ]
* Fix of the joliet_strlen signature
* Code refactoring around *cvt* declarations to make the conditional
compilation more reliable, especially on BSD and AIX
* include/utypes.h: guard to preserve SIZE_T_MAX
[ Christian Fromme ]
* detailed review and correction of author related data in manpages and
README files
[ Peter Samuelson, Tollef Fog Heen ]
* typo and grammar fixes in mkisofs.8
* Remove several instances of %r in printf-like statements, in
preparation for removing the libschily format-string implementation
-- Eduard Bloch <blade@debian.org> Wed, 6 Sep 2006 22:05:30 +0200
cdrkit (1.0pre4) RELEASED; urgency=low
[ Eduard Bloch ]
* Added checks for libcam to make (k)FreeBSD compilation work (untested)
* added clarifications about changes to all source files
* adapted initial message to display the copyright more clearly
* adapted copyright and contact information in scgcheck manpage
* adapted contact information in btcflash manpage, also added a reference to
its original author which has been missing
[ Peter Samuelson ]
* Cleanups: unused macros/defines
* Unified and simplified the build-host data crawling methods
[ Juergen Weigert ]
* Various documentation corrections, replaced cdrecord->wodim where it is
appropriate and legal on many visible locations
-- Eduard Bloch <blade@debian.org> Mon, 4 Sep 2006 23:36:58 +0200
cdrkit (1.0pre3) unstable; urgency=low
[ Eduard Bloch ]
* Added FAQ ("where wodim name comes from")
* Moved the NULL pointer check on cdr_t to a place before it is used for DVD
feature checks (otherwise it would crash when run on any pure CD-ROM
reader)
* Added test for WORDS_BIGENDIAN
* copied values from align.h to another set of sizeof-reflecting defines in
xconfig.h
* workarounds for almost all "you are not allowed to modify that {version
checking,quality assurance,other-important-looking-wording}" parts,
replacing the output of "schily" where the commend said that we are forced
to. One part in cdrecord.c still remains, the comment sounds too dangerous
to be touched.
* forced FIFO define, suggested by Peter
[ Peter Samuelson ]
* Created cmake test and code snippet for HAVE_C_BITFIELDS
[ Michael Ablassmeier ]
* Typo fixes in mkisofs messages and unified identical ones with a macro
[Joerg Jaspert]
* Released as 1.0pre3
-- Eduard Bloch <blade@debian.org> Mon, 4 Sep 2006 09:56:38 +0200
cdrkit (1.0pre2) RELEASED; urgency=low
* Took zisofs_tools out of the global build system and restored its original
Makefile. Its own build system works better.
-- Eduard Bloch <blade@debian.org> Sun, 03 Sep 2006 22:14:31 +0200
cdrkit (1.0pre1) RELEASED; urgency=low
[ See http://bugs.debian.org/$BUGNR for detailed explanations ]
* The Big Fork to an independent project called cdrkit
+ using the last clearly stated GPLed versions of files from
cdrtools-2.01.01a08 (closes: #353403, 372486)
+ we play the upstream role now, using our patches and we like them
(closes: #361450)
+ renamed relevant works to avoid claims of "potential defamation" or
"damage of reputation" (closes: #350738)
+ custom CMake based build system used instead of the original one, since
we understand it better (closes: #350739 and hopefully closes: #350254,
reopen if not). It seems to be portable among the platforms
supported by Debian, it needs a bit of work for porting to non-Linux
plattforms, though.
* removed most of the anti-linux2.6 program messages (unless being
in verbose mode). (closes: #377145)
* changed default config file location to /etc/wodim.conf
* added more meaningful error message on -dvd-video failure (closes: #324586)
* minor cdda2mp3/cdda2ogg scripts fixes suggested by Fabian Pietsch, plus
fixes for unreliable encoder detection (closes: #283794, #344443) plus
possible override of preset CDDA_DEVICE variable fixed. Made the list of
selected audiotracks modifiable, see manpage (closes: #344445)
* sync with 4:2.01+01a01-4ubuntu4:
+ merged README.ATAPI.setup with README.ATAPI.setup.ubuntu. Kernel 2.6 part
now in the beginning and reflecting the reality (dev=/dev/drive syntax,
no SUID requirement, closes: #304230, 377736)
+ 02_cdrecord_default_conf.dpatch: changed /dev/cdrom to /dev/cdrw which
is more likely to match the correct device on udev using systems
* 36_ATA_scanbus_ignore_locked.dpatch to ignore busy devices (eg. hda
harddisk) while scanning with dev=ATA
(closes: #310689, #309250, #317793, 360295,
* Included 37_clean_dvdsup.dpatch (closes: #312062) based on
cdrtools-2.01.01a04-dvd.patch.bz2 from
http://people.mandriva.com/~warly/files/cdrtools/ with few updates to work
with a08. Also implements a fallback to ATA: bus in the -scanbus operation
(closes: #310689, #278894). This patch is used instead of the old 07_....
Enabled permanently, disabled the "cheatcode processing" in debian/rules.
Also eliminates some useability problems that have been pushed to our
users (closes: #325766, #271114, #312062, #353176).
* Updated dirsplit to version 0.3.3, zisofs-tools to 1.0.7 (with a custom
CMakeFile.txt for easier integration and config.h updated manually for
now)
* minor cdda2mp3/cdda2ogg scripts fixes suggested by Fabian Pietsch, plus
fixes for unreliable encoder detection (closes: #283794, #344443) plus
possible override of preset CDDA_DEVICE variable fixed
* added additional script manpages from Oleksandr Moskalenko (closes: #295438)
* changed -speed to speed= in cdrecord.1 for consistency (closes: #344214)
* Anti-Root-Requirements:
+ 39_nonroot_skips_rezero_unit.dpatch - don't run rezero_unit() as root
which is a) most likely not needed (even admited in the comment) and b)
causes the whole scsi transport system to terminate
+ 40_stop_setuid_games.dpatch - another workaround for problems introduced
in a03 - looks like Linux kernel does reject an application trying to
change the UID between ioctls
(closes: #335253, 374685, 330506, 329308, 374345, 377421)
* Ubuntu's 40_fix_bad_spelling.dpatch integrated (typo in wodim.dfl)
* increased hash size in mkisofs/hash.c (closes: #327270)
* more decent info message about locale detection
-- Eduard Bloch <blade@debian.org> Sun, 03 Sep 2006 22:14:31 +0200
cdrkit (2.01.01a08+X.15) UNRELEASED; urgency=low
* Removed cdrtools-2.01.01a05-ossdvd.patch.bz2 again (threw bogus error
messages in TAO mode), used 37_clean_dvdsup.dpatch (from Warly/Mandriva)
instead
-- Eduard Bloch <blade@debian.org> Wed, 23 Aug 2006 15:03:46 +0200
cdrkit (2.01.01a08+X.15) UNRELEASED; urgency=low
* Applied cdrtools-2.01.01a05-ossdvd.patch.bz2 slightly adapted to work with
a08.
-- Eduard Bloch <blade@debian.org> Wed, 23 Aug 2006 15:03:46 +0200
cdrkit (2.01.01a08+X.14) UNRELEASED; urgency=low
* 39_nonroot_skips_rezero_unit (don't try to run rezero_unit when not beeing
root)
* 40_stop_setuid_games (dont't try to cheat the kernel with delayed seteuid)
-- Eduard Bloch <blade@debian.org> Wed, 23 Aug 2006 14:44:53 +0200
cdrkit (2.01.01a08+X.13) UNRELEASED; urgency=low
* 34_JTE (Jigdo Template Extraction, by Steve)
* 36_ATA_scanbus_ignore_locked (skip busy devices when scaning, by myself)
* 38_script_manpages: added as readmult.1 and pitchplay.1, currently no
list_audio_tracks script there so moved to scrips/
-- Eduard Bloch <blade@debian.org> Wed, 23 Aug 2006 14:35:30 +0200
cdrkit (2.01.01a08+X.12) UNRELEASED; urgency=low
* 31_gnu-kfreebsd.dpatch with minor adoptions (needs testing!)
* 33_extra_arch_boot_support (extra arches, by Steve)
-- Eduard Bloch <blade@debian.org> Wed, 23 Aug 2006 14:29:32 +0200
cdrkit (2.01.01a08+X.11) UNRELEASED; urgency=low
* 26_author_locale (ASCII transliteration of Jörg in the standard credits
message)
* 28_cdda2wav_interface (Linux friendly cdda2wav behaviour)
* 30_doc_typo_fixes (various documentation/message fixes)
-- Eduard Bloch <blade@debian.org> Wed, 23 Aug 2006 14:23:03 +0200
cdrkit (2.01.01a08+X.10) UNRELEASED; urgency=low
* Applied 23_o_excl (exclusive device opening)
* Applied 24_debug_tmpfile (more safe/secure log file location)
* 25_mkisofs_iconv_manpage (hints about extra charsets)
-- Eduard Bloch <blade@debian.org> Wed, 23 Aug 2006 14:20:05 +0200
cdrkit (2.01.01a08+X.09) UNRELEASED; urgency=low
* Applied 18_donotopen_hda.dpatch - don't insist on opening unrelated IDE
devices
* 20_rsh-bugfix.dpatch - make really sure that the program does seteuid
right or exit
* 22_linux_rawio_capability.dpatch: get Linux capabilities as needed
-- Eduard Bloch <blade@debian.org> Wed, 23 Aug 2006 14:11:47 +0200
cdrkit (2.01.01a08+X.08) UNRELEASED; urgency=low
* mkisofs iconv support with log message adapted, added to CMake build
system as appropriate
-- Eduard Bloch <blade@debian.org> Wed, 23 Aug 2006 13:57:10 +0200
cdrkit (2.01.01a08+X.07) UNRELEASED; urgency=low
* Applied patches: 07_noadvertising (strip adds for commercial
cdrecord-proDVD), 08_privacy (mkisofs revealing the exact command line)
-- Eduard Bloch <blade@debian.org> Wed, 23 Aug 2006 13:54:54 +0200
cdrkit (2.01.01a08+X.06) UNRELEASED; urgency=low
* Applied 06_dautipps - better hints about ATAPI usage howto and
-joliet-long workaround
-- Eduard Bloch <blade@debian.org> Wed, 23 Aug 2006 13:52:50 +0200
cdrkit (2.01.01a08+X.05) UNRELEASED; urgency=low
* Bits from 03_script.dpatch by Joerg Jaspert <joerg@debian.org> and Eduard
Bloch: Linux-friendly device location for cdda scripts and better encoder
selection
-- Eduard Bloch <blade@debian.org> Wed, 23 Aug 2006 13:49:56 +0200
cdrkit (2.01.01a08+X.04) UNRELEASED; urgency=low
* Added bits from 02_paths.dpatch by Joerg Jaspert <joerg@debian.org>:
/var/log directory location and SILO relevant paths
-- Eduard Bloch <blade@debian.org> Wed, 23 Aug 2006 13:46:55 +0200
cdrkit (2.01.01a08+X.03) UNRELEASED; urgency=low
* adapted cdrecord/cdrecord.dfl for modern Linux system, based on bits from
02_cdrecord_default_conf.dpatch by Zack Cerza <zcerza@coe.neu.edu>
-- Eduard Bloch <blade@debian.org> Wed, 23 Aug 2006 13:43:15 +0200
cdrkit (2.01.01a08+X.02) UNRELEASED; urgency=low
* Converted to use a CMake based filesystem. Generating relevant things with
its mechanisms instead of inc/*. Dropped BUILD, INSTALL files, rewrote
COMPILE fall to reflect the new build method.
* Added GNUmakefile which has rules to bootstrap the CMake build system and
then pass the actuall call to it. GNUmakefile is the prefered script used
by gmake. Users with other make implementations should run cmake manually.
-- Eduard Bloch <blade@debian.org> Wed, 23 Aug 2006 13:35:23 +0200
cdrkit (2.01.01a08+X.01) UNRELEASED; urgency=low
* moved documentation around, READMEs/ directory contains a structure, moved
mkisofs docs from the source directory to it
-- Eduard Bloch <blade@debian.org> Tue, 22 Aug 2006 12:40:05 +0200
***** Version 2.01 ********
Wed Sep 8 20:26:34 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.297
* readcd.c 1.74
* cdrecord.c 1.296
Version -> 2.01
Sat Sep 4 22:28:05 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsidefs.h 1.28
* scsisense.h 2.18
* scsicdb.h 2.19
* scsireg.h 1.31
* scgcmd.h 2.22
Cstyle
Wed Aug 25 13:28:57 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.295
Warnung fuer Linux-2.6.8.1 neu
Tue Aug 24 01:11:42 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi-remote.c 1.16
Auch die euid auf pw->pw_uid setzen bevor exec(RSH gemacht wird
Thu Aug 19 12:14:09 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.294
Version -> 2.01a38
Thu Aug 19 12:08:26 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.293
linuxcheck() im %I% verbessert ;-)
Mon Aug 16 16:42:17 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.292
Version -> 2.01a37
SuSE Kommentar erweitert.
Sun Aug 8 23:04:39 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi_mmc.c 1.10
struct features & struct profiles -> LOCAL
Thu Aug 5 10:26:18 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.291
Kommentar vor linuxcheck() erweitert
Wed Aug 4 02:30:51 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.290
Version -> 2.01a36
max_dma ist nun 4/5 der DMA Speed statt 1/2
Warnung wegen Linux-2.6 eingebaut
Warnung wegen SuSE Linux eingebaut
Sat Jul 31 17:41:06 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.289
Version -> 2.01a35
Check auf dma_speed > 0, dma_speed Test nur wenn tracks > 0
Mon Jul 19 11:10:00 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi-wnt.c 1.45
SPTI nicht bei NT-4.0 als Default
Sun Jul 18 01:26:08 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.288
Version -> 2.01a34
Mehr Tests auf Korektheit der Werte (sinnvoller Bereich in get_dmaspeed())
dma_speed nur dann auswerten wenn > 0
Sun Jul 11 02:28:23 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.1 1.103
CDR_FORCESPEED domumentiert
Sun Jul 11 01:57:27 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* skel.c 1.3
* readcd.c 1.73
* xio.c 1.11
-> NEED_O_BINARY
Sun Jul 11 01:32:49 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* readcd.c 1.72
* skel.c 1.2
MINGW32 neu
Sun Jul 11 01:30:12 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* xio.c 1.10
setmode() auch bei MINGW32
Fri Jul 9 00:05:39 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.287
Version -> 2.01a33
get_dmaspeed() neu
kein nice() bei __DJGPP__
Fri Jun 18 17:46:20 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi-wnt.c 1.44
if (isdigit(vers) -> if (isdigit(vers[0]) (bug korrigiert
Fri Jun 18 01:17:54 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* drv_dvdplus.c 1.15
* drv_dvd.c 1.118
long dvd_next_addr -> LOCAL long dvd_next_addr
Thu Jun 17 23:20:27 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsierrs.c 2.29
* scsitransp.c 1.91
Bitfeld Typen fuer printf() auf int casten wegen IRIX cc
Thu Jun 17 11:24:48 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* readcd.c 1.71
Verbose Ausgabe fuer Fehlerkorrekturen nochmals angepasst
Sun Jun 13 16:28:28 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* readcd.c 1.70
maxtry neu
Sun Jun 13 16:00:20 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* readcd.c 1.69
Ausgabe der maximale Anzahl der Retries
Sat Jun 12 15:14:49 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* drv_dvdplus.c 1.14
* drv_dvd.c 1.117
RAW & TAO Schreibmodi nach check_writemodes() loeschen damit niemand cdrecord -raw fuer DVDs aufruft
Sat Jun 12 13:48:12 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi-linux-ata.c 1.7
Warntext geaendert
Fri Jun 11 16:49:15 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* readcd.c 1.68
Version -> 2.01a32
-scanbus funktioniert nun auch wenn dev= nicht angegeben und /etc/default/cdrecord vorhanden
Auflistung der defekten Sektoren in allozierter Liste
Thu Jun 10 10:58:19 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.1 1.102
Schreibfehler
Wed Jun 2 22:54:33 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.1 1.101
-clone dokumentiert
Tue May 25 17:33:15 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* readcd.c 1.67
Vsersion -> 2.01a31
Tue May 25 17:32:29 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* readcd.c 1.66
-scanbus neu
Tue May 25 01:36:00 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.h 1.161
* scsi_cdr.c 1.137
* drv_mmc.c 1.157
write_buffer() neu und write_buffer() in drv_mmc.c -> yamaha_write_buffer()
Thu May 20 16:42:12 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi-linux-sg.c 1.83
Kommentar gegen die Debian patches fuer /dev/hd*
Thu May 20 16:24:11 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi-linux-ata.c 1.6
Bis zu 25 /dev/hd%c Files oeffnen
Thu May 20 16:14:33 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi-linux-sg.c 1.82
Kommentare um dumme Leute von SuSE davon abzuhalten wichtige Warnungen wegzupatchen
Thu May 20 15:50:38 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.1 1.100
Kommentar zu benoetigten Root Rechten neu
Thu May 20 15:35:52 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.286
Bessere Kommentare gegen SuSE die cdrecord nicht als root laufen lasse wollen
Wed May 19 00:54:29 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.285
Make sure you are root. nur ausgeben wenn euid != 0
Wed May 19 00:47:48 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.284
Version -> 2.01a29
reload geht nun auch fuer Notebook Laufwerke wieder
Wed May 19 00:45:26 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.h 1.160
* scsi_mmc.c 1.9
print_format_capacities() neu
Wed May 19 00:27:28 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.1 1.99
Bessere beschreibung der Hintergruende fuer eine gute Wahl der FIFO Groesse (fs=)
Mon May 17 00:38:17 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.1 1.98
Bessere Dokumentation fuer DVD
Mon May 17 00:18:21 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsilog.c 1.17
Besserer Kommentar
Sun May 16 23:46:51 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* drv_mmc.c 1.156
bei OPC "Power calibration area almost full" nicht als Fehler auffassen
Sun May 16 17:01:24 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.1 1.97
Bessere Dokumentation der driver= Option
Sun May 16 01:37:11 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.1 1.96
Diverse kleinere Schreibfehler beseitigt
Sun May 16 01:26:52 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.1 1.95
Eißfeldt -> Ei\*sfeldt
µsec -> \*msec
Sat May 15 23:14:18 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* subchan.c 1.19
index Variable -> curindex wegen GCC Shadow Warnung
Sun May 9 17:59:31 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* skel.c 1.1
date and time created 04/05/09 16:59:31 by joerg
Fri Apr 23 00:51:24 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi-wnt.c 1.43
Padding fuer ASPI CMD Struktur damit auch 32 Byte Sense Daten von SPTI gehen
Wed Apr 21 01:48:32 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi-wnt.c 1.42
Support fuer SPTI & Kontroller mit mehr als einem SCSI Bus
Bei SPTI ist SENSE_LEN max nun 32
Sun Apr 18 13:26:43 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi-linux-sg.c 1.81
MAX-SCG -> 256 wegen Linux USB Implementierung
Fri Apr 16 15:29:34 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi_scan.c 1.19
Bis zu 256 Busse scannen.
Thu Apr 15 16:35:46 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.283
Version -> 2.01a28
Mon Apr 12 16:13:47 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.1 1.94
Read Book -> Red Book
Tue Apr 6 11:59:03 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.282
Bessere Fehlermeldung bei fehlendem -pad/-shorttrack
Mon Mar 15 01:59:49 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.281
Kommentar fuer cuefile= & -raw
Wed Mar 10 21:54:36 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* readcd.c 1.65
* cdrecord.1 1.93
* cdrecord.c 1.280
ts= Doku besser
Mon Mar 8 00:43:39 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi-linux-sg.c 1.80
Fehler if (sp->u_sense.cmd_sense != 0 -> if (sp->u_sense.cmd_sense[0] != 0 korrigiert
Wenn ASC/ASQ und auch alle zusaetzlichen Bits/Key in Byte 2 0 sind, dann loeschen wir CHECK CONDITION wieder
weil das ein Linux USB Problem ist wo z.B. wegen einem DMA Underrun REQUEST SENSE geschickt wurde
und das Laufwerk erwartungemaesz mit NO SENSE geantwortet hat
Sun Mar 7 23:43:08 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.279
Version -> 2.01a27
Thu Mar 4 09:24:11 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.278
Bugfix: Nach Umstellung des Tests auf Schreibmodus Option ging nur noch TAO
Wed Mar 3 01:27:14 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* drv_dvd.c 1.115
* cue.c 1.20
* isosize.c 1.9
* drv_simul.c 1.47
* getnum.c 1.2
* movesect.c 1.3
Cstyle
Tue Mar 2 21:02:42 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* misc.c 1.4
* cue.c 1.19
Copyright -> 2004
Tue Mar 2 02:53:06 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* modes.c 1.25
* fifo.c 1.47
* drv_mmc.c 1.155
* drv_sony.c 1.70
* drv_dvdplus.c 1.13
* drv_7501.c 1.15
* diskid.c 1.37
* defaults.c 1.11
* crc16.c 1.6
* cdr_drv.c 1.36
* clone.c 1.7
* drv_philips.c 1.68
* readcd.c 1.64
* scsi_cdr.c 1.136
* scsi_scan.c 1.18
* iso9660.h 1.5
* xio.h 1.2
* cdtext.h 1.5
Cstyle
Tue Mar 2 01:13:42 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* wm_track.c 1.4
Copyright -> 2004
Mon Mar 1 11:08:40 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.h 1.159
* mmcvendor.h 1.3
* scsilog.h 1.4
* scsimmc.h 1.10
* drv_jvc.c 1.80
* scsi_mmc.c 1.8
* cdtext.c 1.10
* scsilog.c 1.16
* auinfo.c 1.23
* cdrecord.c 1.277
* audiosize.c 1.19
* sector.c 1.12
* subchan.c 1.17
* wm_packet.c 1.24
* xio.c 1.8
Cstyle
Mon Mar 1 11:02:43 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsimmc.h 1.11
* subchan.c 1.18
* wm_packet.c 1.25
* xio.c 1.9
* sector.c 1.13
Copyright -> 2004
Sun Feb 29 21:49:03 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.276
Cstyle
Sun Feb 29 18:19:58 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.c 1.275
Version -> 2.01a26
-tao/-sao neu
Sun Feb 29 18:13:20 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.1 1.92
-tao Option neu, -sao Option als Alias fuer -dao
Sun Feb 22 16:41:57 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* cdrecord.1 1.91
Schreibfehler
Sun Feb 22 15:53:51 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* readcd.c 1.63
* cdrecord.h 1.158
* defaults.c 1.10
cdr_defaults() Prototy -> neues defaults.h
Sun Feb 22 15:53:00 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* defaults.h 1.1
date and time created 04/02/22 15:53:00 by joerg
Sun Feb 1 21:32:58 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* adip.h 1.1
date and time created 04/02/01 21:32:58 by joerg
Fri Jan 23 23:10:42 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi-wnt.c 1.41
dev=ATAPI:1,0 geht nun wieder
Mon Jan 19 21:29:24 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* drv_dvd.c 1.113
* cdrecord.c 1.274
* drv_dvdplus.c 1.12
* wm_packet.c 1.23
trackp[i].padsecs * secsize -> (Llong)trackp[i].padsecs * secsize, damit kein Integeroverflow mehr stattfindet
Thu Jan 15 22:24:39 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi-wnt.c 1.40
w2k_or_newer() neu um bei NT-4.0 wegen DMA Problemen mit SPTI per Default mit ASPI zu betreiben
Debug prints fuer bessere Beurteilung der Funktionsweise