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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
|
****** Version 2.01 ******
Wed Sep 8 20:28:58 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* isoinfo.c 1.47
* isovfy.c 1.23
* dump.c 1.21
* isodebug.c 1.9
* isodump.c 1.24
* mkisofs.c 1.161
Version -> 2.01
Thu Sep 2 13:05:11 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.108
-D Hinweis auf ISO9660:1999
Mon Aug 30 12:24:17 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.107
ISO-9690 -> ISO-9660
Tue Aug 24 19:21:54 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.85
Intermediate Cast auf (void *) damit GCC nicht wegen "strict-aliasing rules" meckert
Tue Aug 3 21:21:54 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.106
Hinweis auf Bugfix fuer -no-split-symlink-components / -no-split-symlink-fields
Sat Jul 31 17:11:30 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.105
Schreibfehler beseitigt
Sat Jul 17 23:42:14 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.104
* mkisofs.c 1.160
Version -> 2.01a34
-volset-size ist nun auf 1 begrenzt
Sun Jul 11 18:30:27 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.159
Fehlermeldung bei -L/-H/-P weis nun korrekt auf 2.02 hin
Sun Jul 11 02:03:26 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.158
-> NEED_O_BINARY
Fri Jul 9 17:34:41 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.157
Version -> 2.01a33
Fri Jul 9 16:06:36 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* volume.c 1.14
* write.c 1.84
static -> LOCAL + EXPORT
Fri Jul 9 15:32:26 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.83
'VIDEO_TS' wird jetzt immer gefunden und mkisofs bricht ab wenn es nicht gefunden werden konnte und -dvd-video
Fri Jun 18 11:17:08 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* hash.c 1.18
Nachdenken ueber Speedup
Thu Jun 17 12:25:43 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.156
Version -> 2.01a32
Thu Jun 17 11:22:11 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* dump.c 1.20
* isodump.c 1.23
For Schleife ohne strlen() in Ende Bedingung
Sat Jun 12 16:15:16 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.82
sprintf() zur besseren Geschwindigkeit beim Erzeugen von 8.3 Filenamen in sort_n_finish() vermeiden
Mon Jun 7 13:02:01 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.103
Dokumentation der maximalen Stringlaenge der Eintraege im PVD nun auch bei den Optionen
Sat Jun 5 16:48:02 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.102
* mkisofs.c 1.155
Optionen -H/-L/-P sind veraltet und werden mit 2.02 POSIX.1-2001 konform
Tue Jun 1 18:27:04 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.154
Version -> 2.01a31
Tue Jun 1 16:53:24 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.81
Bei DJGPP auch alle Files eXecutable machen.
Tue Jun 1 16:52:47 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.153
load_nls("cp437") per Default auch fuer DJGPP
Tue Jun 1 16:51:47 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* defaults.h 1.18
SYSTEM_ID -> DOS fuer DJGPP
Tue Jun 1 16:50:58 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* isoinfo.c 1.46
setmode(fileno(stdout), O_BINARY) beim Extrahieren von Dateien nach STDOUT
Tue Jun 1 14:07:06 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* isodebug.c 1.8
Funktionen moeglichst LOCAL
Tue Jun 1 13:50:50 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* dump.mk 1.4
* dump.c 1.19
* isoinfo.8 1.7
* isodump.c 1.22
* isoinfo.mk 1.5
* isodump.mk 1.4
* isovfy.mk 1.4
* isovfy.c 1.22
* isodebug.mk 1.2
* isodebug.c 1.7
Umstellung auf libusal
Sat May 29 17:46:26 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* isoinfo.c 1.45
cdr_defaults() nur mit libusal rufen
Sat May 29 16:55:08 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* isodebug.c 1.6
Version -> 2.01a31
Cstyle
Fri May 28 13:51:13 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* isoinfo.c 1.44
Support fuer cdr_defaults() (/etc/default/cdrecord) neu
Fri May 28 13:39:35 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* isoinfo.c 1.43
Cstyle
Fri May 28 13:37:39 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* isoinfo.c 1.42
Version -> 2.01a31
Umbau auf libusal
Fri May 28 13:36:25 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* isodump.c 1.21
* isovfy.c 1.21
Version -> 2.01a31
Cstyle
Fri May 28 01:09:55 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* dump.c 1.18
Version -> 2.01a31
Cstyle
Thu May 27 01:54:59 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.94
scsi.c Prototypen -> scsi.h
Thu May 27 01:54:31 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi.h 1.1
date and time created 04/05/27 00:54:31 by joerg
Sun May 23 23:46:05 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* eltorito.c 1.32
Debug Messages beseitigt
Sun May 23 23:23:27 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.101
* tree.c 1.80
* eltorito.c 1.31
* match.h 1.9
* mkisofs.c 1.152
* match.c 1.18
Version -> 2.01a30
Eltorito Boot Images per Default nach Vorne Sortieren
Thu May 20 13:38:31 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* eltorito.c 1.30
Copyright J. Schilling neu
Thu May 20 13:33:59 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* eltorito.c 1.29
Keine Ausgabe der Bootmethode bei mkisofs -quiet
Sat May 15 22:25:17 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.151
Version -> 2.01a29
Hinweis auf unerwuenschte SILO Optionen
Sat May 15 21:48:26 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.82
Neuer Kommentar damit SuSE keine sinnlosen Patches anbringt
Sat May 15 21:05:49 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* isoinfo.c 1.41
Version -> 2.01a29
Sat May 15 19:59:40 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.66
* mkisofs.c 1.150
* isoinfo.c 1.40
GCC shadowed Variblen beseitigt
Thu Apr 15 16:33:41 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.149
Version -> 2.01a28
Thu Apr 15 16:30:40 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* hash.c 1.17
isoname_endsok() neu zum besseren Vergleich von ISO-9660 namen
Thu Apr 15 14:51:22 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* hash.c 1.16
* udf.c 1.14
Cstyle
Wed Apr 14 12:55:56 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.81
Schreibfehler beseitigt (Initial Padbock)
Tue Apr 6 12:30:26 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.79
Fix fuer doppeltes Free von Juergen Keil
Absturz durch:
echo bar >/tmp/bar
echo foo/bar=/tmp/bar > /tmp/pathlist
env LD_PRELOAD=libumem.so.1 UMEM_DEBUG=default UMEM_LOGGING=transaction mkisofs -hfs -graft-points -o /tmp/foo.raw -path-list=/tmp/pathlist
Tue Apr 6 11:57:30 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.78
beruecksichtigung des Null Bytes beim malloc() fuer die Datei TRANS_TBL
Sun Apr 4 20:24:38 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.65
Bessere Fehlermeldung bei multi Session mit volset size > 1
Mon Mar 15 15:43:58 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* defaults.h 1.17
"SCO-OPENSERVER"/"SCO-UNIXWARE", Default ist nun "UNIX" statt "LINUX"
Fri Mar 5 00:22:28 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.148
Version -> 2.01a27
Fri Mar 5 00:12:50 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mac_label.c 1.9
* match.c 1.17
* name.c 1.28
* scsi.c 1.19
* stream.c 1.3
* files.c 1.12
* exclude.c 1.9
* dvd_reader.c 1.3
* eltorito.c 1.28
* ifo_read.c 1.5
* dvd_file.c 1.3
* desktop.c 1.6
* apple_driver.c 1.6
* vms.c 1.9
* volume.c 1.13
Cstyle
Thu Mar 4 22:47:39 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.64
* mkisofs.h 1.93
* mkisofs.c 1.147
* mkisofs.8 1.100
Neue Optionen -root & -old-root von Patrik Ohly
Thu Mar 4 22:40:24 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mac_label.c 1.8
Korrektur fuer PREP/CHRP Erweiterung
Tue Mar 2 00:54:16 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* fnmatch.h 1.4
* exclude.h 1.3
* diskmbr.h 1.2
* defaults.h 1.16
* bootinfo.h 1.3
* apple.h 1.7
* apple.c 1.19
* ifo_read.h 1.2
* ifo_types.h 1.2
* iso9660.h 1.19
* mac_label.h 1.3
* mactypes.h 1.3
* match.h 1.8
Cstyle
Tue Mar 2 00:50:27 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* dvd_reader.h 1.2
Cstyle
Mon Mar 1 12:05:40 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* vms.h 1.3
* udf.h 1.2
* udf_fs.h 1.2
Cstyle
Sun Feb 29 17:53:16 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* isoinfo.c 1.39
Eltorito Boot mit -d anzeigen
Extension Records fuer lange RR Namen korrekt anzeigen
Sun Feb 29 17:20:47 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mac_label.h 1.2
* write.c 1.80
* mkisofs.c 1.146
* mkisofs.h 1.92
* mac_label.c 1.7
CHRP Support von "Leigh Brown" <leigh@solinno.co.uk>
Sun Feb 29 16:49:18 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* rock.c 1.42
* multi.c 1.63
}; in Funktionen -> }
Sun Feb 29 16:43:37 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.62
Korrekte Behandlung von CE Extension Records fuer RR NM & fue rTime Stamps
Wed Feb 25 00:16:47 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* udf.c 1.13
Support fuer rationalize_uid/rationalize_gid
Sun Feb 22 16:27:28 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.145
Version -> 2.01a26
Mb -> MB
Sun Feb 22 16:26:26 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* rock.c 1.41
gen_xa_attr(mode_t attr) ANSI C Variante wegen aelteren UNIX Versionen mit mode_t == short
Sun Feb 22 16:25:09 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* boot.c 1.13
Total extents including sparc boot -> Total extents including %s boot
Sun Feb 22 16:13:43 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi.c 1.18
cdr_defaults() wird nun fuer das SCSI dev= gerufen (/etc/default/cdrecord)
Wed Jan 7 00:23:46 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.144
Copyright -> 2004
Tue Jan 6 23:53:42 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.143
Version -> 2.01a24
Tue Jan 6 22:37:55 2004 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.77
Rock Ridge Laengenbehandlung in update_nlink()/increment_nlink() korrigiert (Bugfix)
Mon Dec 29 14:46:02 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.142
* boot.c 1.12
Cstyle Anpassungen
Mon Dec 29 14:36:10 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* boot.c 1.11
Neue Optionen -sunx86-boot & -sunx86-label
Mon Dec 29 14:35:05 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.141
Version -> 2.01a22
Neue Optionen -sunx86-boot & -sunx86-label
Mon Dec 29 14:34:16 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.99
Neue Optionen -sunx86-boot & -sunx86-label
-sparc-label war vergessen - nun dokumentiert
Mon Dec 29 13:31:28 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.98
Kommentar zu SILO in den NOTES
Fehlende backslashes for diversen - Zeichen eingefuegt
Sun Dec 28 14:46:10 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* sunlabel.h 1.5
Cstyle Aenderungen
Sun Dec 28 14:44:50 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* sunlabel.h 1.4
Erweiterungen fuer Solaris x86 Disk Label und fdisk
Sun Dec 28 14:38:51 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.91
Cstyle Anpassungen
Sun Dec 28 14:37:09 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.90
make_sunx86_label()/scan_sunx86_boot()/sunx86_boot_label() neu
Sat Nov 29 23:58:30 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.140
#include <io.h> fuer setmode(fileno, OBINARY)
#include <io.h> auch fuer DJGPP
Sat Nov 29 23:11:14 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.139
Version -> 2.01a20
setmode(fileno, O_BINARY) auch fuer DJGPP
Sun Jul 13 15:42:15 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.79
* mkisofs.h 1.89
* mkisofs.c 1.138
secsize -> osecsize, Version -> 2.01a17
Fri Jul 11 11:42:32 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.97
Schreibfehler
Thu Jul 10 01:26:47 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.76
Bessere Meldung bei Stat Buffer Overflow
Sat Jun 21 14:28:25 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.137
Eltorito PVD muss vor direkt nach dem Primaeren PVD kommen -> also vor Enhanced PVD
Sat Jun 21 14:16:30 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* match.c 1.16
Wenn ein TAB nach einem Space im Sort File kommt, dann wird dieses genommen
Sat Jun 21 14:11:05 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.96
Schreibfehler und Formulierungen korrigiert
Sat Jun 21 14:10:13 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* eltorito.c 1.27
Schreibfehler bei 'is not the an allowable size' beseitigt
Tue May 6 19:04:03 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* rock.c 1.40
Fix fuer defekte CE Signaturen bei ../../../ in Symlinks
Wed Apr 30 01:19:33 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.136
no_rr nur dann automatisch setzen wenn keine XA Signaturen gefunden wurden
Wed Apr 30 01:18:10 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.61
find_rr() nun mit XA Flag
Wed Apr 30 01:15:59 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.88
Rock Ridge Defines neu
Tue Apr 29 21:22:52 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.78
Variable secsize neu, struct xa_subhdr neu
Tue Apr 29 21:20:40 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.87
Neue Variable secsize
Tue Apr 29 21:19:13 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.135
Neue Option -sectype
Tue Apr 29 01:39:14 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.134
-apple bedeutet nicht mehr -r
Tue Apr 29 01:17:55 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.75
insert_file_entry() erzeugt auch XA oder RockRidge Signaturen fuer rsrc Files
Tue Apr 29 01:06:32 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.77
Umbau von xfwrite() fuer XA subheader
Mon Apr 28 01:44:30 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.95
Hinwies, dasz -apple nicht mehr -R beinhaltet
Mon Apr 28 01:36:07 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.37
* eltorito.c 1.26
* boot.c 1.10
* stream.c 1.2
* udf.c 1.12
* mkisofs.h 1.86
Umbau von xfwrite() fuer XA subheader
Mon Apr 28 01:06:38 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* iso9660.h 1.18
XA Sektor Subheader Definitionen neu
Sun Apr 27 15:46:18 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.74
* eltorito.c 1.25
generate_rock_ridge_attributes() -> generate_xa_rr_attributes(), if (use_RockRidge) -> if (use_XA || use_RockRidge)
Sun Apr 27 15:38:59 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* rock.c 1.39
generate_rock_ridge_attributes() -> generate_xa_rr_attributes(), if (!use_RockRidge) goto xa_only;
Sun Apr 27 15:36:45 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.85
generate_rock_ridge_attributes() -> generate_xa_rr_attributes()
Sun Apr 27 15:35:49 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.133
Version -> 2.01a12
Sun Apr 27 14:09:25 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* TODO 1.6
13.4.2003 HFS > 2 GB
Tue Apr 15 18:47:55 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.76
CD-XA001 Signatur hinzufuegen
Sun Apr 13 19:05:06 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* isoinfo.c 1.38
Version -> 2.01a10
st_size ist unsigned bei ISO-9660, map auf Llong
Sun Apr 13 01:36:22 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.75
* tree.c 1.73
* mkisofs.h 1.84
Erster Versuch Files bis zu 4 GB zu unterstuetzen
Sun Apr 13 01:32:15 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* vms.h 1.2
* vms.c 1.8
vms_write_one_file() mit off_t size
Fri Apr 11 19:19:24 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* rock.c 1.38
gen_xa()/gen_xa_attr() neu
Thu Apr 10 15:38:04 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* iso9660.h 1.17
Kommentar fuer XA Flags korrigiert
Thu Apr 10 15:37:25 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.132
Version -> 2.01a10, Optionen -XA/-xa neu, Schreibfehler bei -iso-level beseitigt
Thu Apr 10 15:36:03 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.83
use_XA neu
Thu Apr 10 15:34:30 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.74
Skip XA Record neu
Sat Apr 5 13:39:51 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* isoinfo.c 1.37
Usage Schreibfehler beseitigt
Fri Apr 4 23:42:02 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* name.c 1.27
conv_charset() bei -iso-level 4 fuer 8 Bit Zeichen
Fri Apr 4 23:41:05 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* rock.c 1.37
statis -> LOCAL, unsigned char -> Uchar
Fri Apr 4 23:40:06 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* ifo_read.c 1.4
Umbau um ANSI C Warnungen zu vermeiden
Sat Mar 29 13:01:43 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* udf.c 1.11
Hinweis auf VIDEO_TS in joliet.c
Sat Mar 29 12:59:14 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.36
* write.c 1.73
#ifdef __STDC__ -> PROTOTYPES, Eingerueckt nach cstyle
Sat Mar 29 12:43:35 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.60
* rock.c 1.36
#ifdef __STDC__ -> PROTOTYPES
Thu Mar 27 00:19:50 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* rock.c 1.35
Anpassungen fuer cstyle
Thu Mar 27 00:05:17 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* rock.c 1.34
Bessere Debug Ausgaben fuer add_CE_entry & Bug Fix fuer Split Symplinks (2 Byte Offsetfehler)
Tue Mar 25 21:31:29 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* bswap.h 1.2
* mkisofs.h 1.82
Eingerueckt nach cstyle
Tue Mar 25 20:51:55 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.59
Eingerückt nach cstyle
Tue Mar 25 20:48:56 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.131
Version -> 2.01a07, Eingerueckt nach cstyle
Sun Mar 9 13:38:18 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* getopt.c 1.6
FSF Junk Code (#define _NO_PROTO) beseitigt der #include strings.h verhinderte; stattdessen #define getopt __nothing_
Thu Mar 6 22:11:16 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* getopt.h 1.3
* fnmatch.h 1.3
mconfig.h statt (internem) protoyp.h
Thu Mar 6 22:03:51 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* getopt.h 1.2
* fnmatch.h 1.2
Umbau auf prototyp.h & PROTOTYPES statt __STDC__ damit Prototypen korrekt auch bei SCO Unixware gehen
Thu Mar 6 22:01:40 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* dvd_reader.c 1.2
DVDOpenFile() mit Prototype implementierung wegen SCO cc (enum)
Sun Mar 2 17:33:16 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.72
strdup() -> libport
Sat Mar 1 21:19:56 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* match.c 1.15
#include match.h nach #include libport.h wegen MAX define in param.h bei Linux
Sat Mar 1 19:25:08 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* match.c 1.14
#includ <libport.h> fuer strdup()
Sat Mar 1 18:56:35 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.58
*nent -> *nentp & nent
Sat Mar 1 18:41:25 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.57
pnt->assoc schon direkt nach dem Einlesen der direcory zuweisen damit es zuverlaessig funktioniert
Sat Mar 1 13:00:37 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* isoinfo.c 1.36
Ausgabe der ISO-9660 directory flags
Sat Mar 1 12:54:45 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* iso9660.h 1.16
Definitionen fuer XA attributes neu
Fri Feb 28 01:32:10 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.72
* vms.c 1.7
* mkisofs.c 1.130
* mkisofs.h 1.81
strdup() -> libport.h
Fri Feb 28 01:23:34 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* isodump.c 1.20
* dump.c 1.17
Umbau auf ttydefs.h und Portabilitaet fuer alte UNIX Versionen ohne termio*
Sun Feb 23 19:34:23 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.71
LOCAL statt static & Umbau wegen cstyle
Sun Feb 23 14:25:55 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.56
* mkisofs.h 1.80
Einige Funktionen in multi.c -> LOCAL, Eingerueckt nach cstyle
Sat Feb 22 21:57:34 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.35
sort_goof -> jsort_goof
Sun Feb 16 01:17:25 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* apple_driver.c 1.5
Unsinniger Parameter aus comerr() Aufruf beseitigt
Sat Feb 15 22:05:58 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* isoinfo.c 1.35
Bei -debug wird nun auch der root directory extent ausgegeben
Sat Feb 15 22:03:43 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.94
Padding neu beschrieben (150 Sektoren)
Sat Feb 15 22:00:28 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.71
Interpad rundet nur noch auf ein Vielfaches von 16 Sektoren auf
Sat Feb 15 21:50:27 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* stream.c 1.1
date and time created 03/02/15 21:50:27 by joerg
Sat Feb 15 21:01:49 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.79
* mkisofs.c 1.129
* udf.c 1.10
* write.c 1.70
Umbau auf 150 Sektoren Padding am Ende des FS Images
Sat Feb 15 13:59:11 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.93
* mkisofs.c 1.128
Neue Option -stream-media-size
Thu Feb 13 09:37:52 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.69
time_t begun -> EXTERN Freigeben fuer UDF & Stream.c
Thu Feb 13 09:34:41 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.78
Definitionen fuer stream.c
Thu Feb 13 09:33:19 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* udf.c 1.9
Externe time_t begun aus write.c uebernehmen fuer: PDV, LVDESC, File Set Desc, Main Seq
Mon Feb 10 01:47:19 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* isoinfo.c 1.34
Eingerueckt nach cstyle
Sun Feb 9 21:49:45 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* udf.c 1.8
Umformatier fuer cstyle
Fri Feb 7 11:15:06 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.127
Version -> 2.01a03, Graft-point nodename ist nun [2*PATH_MAX + 1 + 1] grosz
Tue Jan 28 01:28:37 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* isoinfo.c 1.33
Erkennung von ISO-9660:1999
Tue Jan 28 01:27:23 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.126
Version -> 2.01a02
Tue Jan 28 01:25:58 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.125
ISO-9660:1998 -> ISO-9660:1999, Schreibfehler bei -pad help beseitigt
Tue Jan 28 01:25:04 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.68
Bei ISO-9660:1999 ist der 2. VD ein ISO_VD_SUPPLEMENTARY (war vorher wie PVD)
Tue Jan 28 01:24:09 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.92
* iso9660.h 1.15
ISO-9660:1998 -> ISO-9660:1999
Sun Jan 19 20:18:08 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.91
Warnung vor Suns Eltorito Patch bei -iso-level 4
Sun Jan 19 16:19:29 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* name.c 1.26
Bei relaxed Filenames wird '/' verboten.
Sun Jan 19 16:00:57 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.90
* iso9660.h 1.14
* mkisofs.h 1.77
* rock.c 1.33
* mkisofs.c 1.124
* multi.c 1.55
* write.c 1.67
Version -> 2.01a01, Erweiterungen fuer ISO-9660:1998
Sun Jan 19 15:55:18 2003 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.70
Bessere RR overflow Meldung
Wed Dec 25 15:16:49 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* name.c 1.25
* files.c 1.11
* multi.c 1.54
ctype.h nach schily.h wegen OpenBSD #define EOF Bug
Tue Dec 24 16:39:28 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.89
* isoinfo.8 1.6
Version -> 2.0
Mon Dec 23 18:25:55 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* dvd_file.c 1.2
Support fuer 0 Byte VIDEO_TS/VTS_xx_0.VOB Files
Mon Dec 16 22:37:04 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.88
Umbau auf Berlios & fhg.de
Sun Dec 15 02:03:20 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.66
DVD-Video Pad Ausgaben auch ohne DEBUG
Sat Dec 14 19:03:33 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* ChangeLog 1.22
-> Version 2.0
Sat Dec 14 19:03:09 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* TODO 1.5
Hints for ISO 9660:1988
Thu Dec 12 01:25:27 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.65
Consistency check for DVD-Video Pad (<0)
Thu Dec 12 01:25:01 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* ifo_read.c 1.3
open() with O_BINARY
Sat Dec 7 21:40:44 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.69
in #ifdef ABORT_DEEP_ISO_ONLY print a hint for -R/-r and -D
Sat Dec 7 21:14:50 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* udf.c 1.7
write_udf_file_entries() now ignores de->de_flags & RELOCATED_DIRECTORY
and does not create a broken FS if RR_MOVED exists
Sat Dec 7 21:02:08 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.64
* mkisofs.h 1.76
* mkisofs.c 1.123
opnt->of_start_extent new for Constistency Check
Sat Dec 7 20:41:36 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.87
Better Documentation for -split-output
Sat Dec 7 19:37:11 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.122
Cast to int forr name_end-name (parameter in %.*s)
Sat Nov 30 17:10:36 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.121
Version -> 2.0
Sun Nov 24 12:54:45 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* TODO 1.4
Open Problems for time past 2.0
Sun Nov 24 01:17:25 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* udf.c 1.6
Patch from Wei DING <ding@memory-tech.co.jp> for UDF Files > 1 GB
Fri Nov 22 17:32:25 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.68
Another attempt to fix mkisofs -f
Fri Nov 22 17:16:43 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.120
Disable Joliet for -dvd-video (because of Sort in joliet.c)
-s/-S Warning disabled until 2.1alpha
Fri Nov 22 17:15:34 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.34
Make VIDEO_TS.IFO 1st dir entry with -dvd-video
Sun Nov 17 15:42:19 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.119
Mark -s/-S as reserved options
Sat Nov 2 21:41:25 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.118
Version -> 1.15a40, Tags in ~/.mkisofsrc have '_' in HFS_*
Thu Oct 24 22:12:30 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.67
scan_directory_tree() with new Flag DIR_WAS_SCANNED to avoid double scan
scan_directory_tree() more stable by setting errno = 0 before readdir()
no_scandir = 1 commented out to make mkisofs -f not to omit dir content with symlinks to dies
Thu Oct 24 22:03:25 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.75
#define DIR_WAS_SCANNED new
Mon Oct 21 19:29:14 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.86
* tree.c 1.66
Typo removed
Mon Oct 21 19:28:25 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.117
Typo efective -> effective uid
Sat Oct 5 00:38:01 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.63
* volume.c 1.12
* mkisofs.8 1.85
* mkisofs.c 1.116
* mkisofs.h 1.74
Version -> 1.15a36, New Option -hfs-parms for better HFS > 4 GB Support from James Pearson
Sat Oct 5 00:17:22 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.115
Version -> 1.15a35, Warning for -L/-P/-H Options in POSIX.1-2001
Tue Oct 1 01:13:40 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.62
* volume.c 1.11
* mkisofs.8 1.84
* desktop.c 1.5
Patch from James for HSFS > 4 GB
Sat Sep 28 16:55:52 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.83
* mkisofs.h 1.73
* write.c 1.61
* volume.c 1.10
Fix from James for 4 GB HFS Support
Tue Sep 24 15:41:27 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.60
* volume.c 1.9
Patches from James to aboert on HFS volume size > 2 GB
Sun Sep 1 23:59:52 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* udf.c 1.5
Make sure directories have execute permission in default permissions.
Sat Aug 10 23:33:36 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.114
UDF Filenames may be 255 chars if not using Joliet
Thu Aug 8 23:48:11 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* rock.c 1.32
* tree.c 1.65
Symlink buffer size -> PATH_MAX to avoid Overflow
Thu Aug 8 23:25:14 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* ifo_read.c 1.2
Comment around Tag past #endif
Thu Aug 8 23:24:37 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.33
* mkisofs.8 1.82
* mkisofs.c 1.113
* mkisofs.h 1.72
New Option -joliet-long
Sun Jul 28 01:29:19 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.71
Tag past #endif now as comment
Sun Jul 28 01:28:29 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.59
Defect Debug printf() with newline in String fixed
Sun Jul 21 17:36:20 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.81
-dvd-video Option new
Sun Jul 21 17:00:26 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.32
* write.c 1.58
* mkisofs.h 1.70
Pathtable now works wth more than 65535 Dires if all Parent indices are <= 65535
Sun Jul 21 16:42:36 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* dvd_reader.c 1.1
date and time created 02/07/21 15:42:36 by joerg
Sun Jul 21 16:40:43 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* ifo_read.c 1.1
date and time created 02/07/21 15:40:43 by joerg
Sun Jul 21 16:23:35 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* apple.c 1.18
* multi.c 1.53
malloc() -> e_malloc()
Sun Jul 21 15:51:54 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* dvd_file.c 1.1
date and time created 02/07/21 14:51:54 by joerg
Sun Jul 21 15:18:47 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* dvd_file.h 1.1
date and time created 02/07/21 14:18:47 by joerg
Sun Jul 21 15:16:26 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.57
Support for DVD-Video -dvd-video
Sun Jul 21 14:59:31 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.112
* multi.c 1.52
* tree.c 1.64
* files.c 1.10
1024 -> PATH_MAX
Sun Jul 21 14:21:02 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* rock.c 1.31
Hack against wrong GCC warning
Sat Jul 20 17:57:49 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* apple.c 1.17
Function perr() now uses comerr()
Sat Jul 20 17:54:57 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* ifo_types.h 1.1
* dvd_reader.h 1.1
date and time created 02/07/20 16:54:57 by joerg
Sat Jul 20 17:54:56 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* ifo_read.h 1.1
date and time created 02/07/20 16:54:56 by joerg
Sat Jul 20 17:37:32 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.69
Enhancements for DVD-Video -dvd-video
Sat Jul 20 17:28:10 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* bswap.h 1.1
date and time created 02/07/20 16:28:10 by joerg
Sat Jul 20 01:17:52 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* udf.c 1.4
DVD-Video comment new
Sat Jul 20 01:15:19 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.111
Version -> 1.15a27, Option -dvd-video new
Sat Jul 20 01:13:31 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.63
Sort Video Files only with -dvd-video
Tue Jul 16 21:32:42 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.62
* mkisofs.c 1.110
* mactypes.h 1.2
* mkisofs.8 1.80
* apple.h 1.6
* apple.c 1.16
Support for Apple files on MacOS X
Thu Jul 4 12:31:42 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.109
Version -> 1.15a25, verbose > 1 writes debug info for output fragments.
Thu May 30 01:48:28 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* udf.c 1.3
* write.c 1.56
* joliet.c 1.31
* eltorito.c 1.24
* boot.c 1.9
* mkisofs.h 1.68
of_name in struct output_fragment new
Mon May 20 13:58:11 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mac_label.c 1.6
ISO_ROUND_UP(mac_boot->size) / SECTOR_SIZE -> ISO_BLOCKS(mac_boot->size)
Mon May 20 13:55:53 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.55
Unused Var in graftcp() removed
Mon May 20 13:51:28 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.67
HFS_BLOCKS() new
Tue May 14 21:13:04 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.54
graftcp() Bug fixed (simple Filenames as Arg not shortened)
Mon May 13 00:45:28 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* udf.c 1.2
Now using ISO_ROUND_UP()/ISO_BLOCKS()/SEC_SIZE
Mon May 13 00:40:04 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.53
* joliet.c 1.30
Now using ISO_ROUND_UP()/ISO_BLOCKS()
Mon May 13 00:24:43 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.51
Now using ISO_ROUND_UP()
Mon May 13 00:22:40 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.108
Version -> 1.15a23, Now using ISO_ROUND_UP()/ISO_BLOCKS()
Mon May 13 00:08:55 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* eltorito.c 1.23
Now using ISO_BLOCKS()
Sun May 12 14:42:18 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.66
Comment for ISO_ROUND_UP(X)/ISO_BLOCKS(X)
Sun May 12 14:10:20 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.61
Function filetype() better
Sun May 12 00:32:18 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.65
ISO_BLOCKS() new
Sat May 4 15:31:00 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.50
file_addr now based on sectors not on bytes to avoid overflow with DVDs
Fri May 3 01:17:51 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* name.c 1.24
* mkisofs.c 1.107
-no-iso-translate now also using '-'
Sun Apr 28 14:50:15 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.79
Remove outdated hint that at least one "pathspec" is needed
(even for File from list List)
Sun Apr 28 14:48:46 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.106
Version -> 1.15a22, susage() Bugfix (program_name missing)
Tue Apr 16 19:19:41 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* eltorito.c 1.22
make boot.catalog sortable via -sort
Sun Apr 14 22:53:26 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.52
* mkisofs.h 1.64
* mkisofs.c 1.105
Avoid to put unwanted information into the version info
Thu Apr 11 23:53:41 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.104
Support for xxx/../yyy in graft-points
Thu Apr 11 19:27:13 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.60
* mkisofs.c 1.103
Fix -graft-points /a/b//.///=some_dir bug (doubled / Dir), Version -> 1.15a21
Thu Apr 11 18:55:48 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.78
UTF comment corrected
Thu Apr 11 18:55:23 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.63
debug new
Wed Apr 3 19:47:46 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.102
Version -> 1.15a20
Wed Apr 3 19:42:41 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.101
Corrected file type recognition for graft points
Wed Apr 3 19:00:32 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* rock.c 1.30
* mkisofs.c 1.100
* mkisofs.8 1.77
Transparent compression (-z) from H.P. Anvin integrated
Wed Apr 3 18:12:07 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.99
escstrcpy() corrected for multiple '//', new option -debug
Tue Apr 2 00:57:38 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.98
short usage added
Fri Mar 8 16:44:37 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.76
Hint for multisession on MAC -> -part
Fri Mar 8 16:43:46 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mac_label.c 1.5
Mac Label mpm[mpc].start = session_start + ... -> mpm[mpc].start = hce->hfs_map_size ...
Tue Feb 26 22:39:16 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* boot.c 1.8
Support generic boot for CD-extra (session_start != 0 Dreamcast)
Sun Feb 10 20:18:32 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* hash.c 1.15
use Prototyped function definition if we have dev_t arg because it may be < int
Sun Feb 10 16:13:16 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* fnmatch.c 1.4
Now using utypes.h, >=/<= compare with Uchar cast
Sun Feb 10 15:56:51 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* apple.c 1.15
cast info->nlen to int for comparison
Sat Feb 9 22:21:33 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* apple.c 1.14
strcmp() -> memcmp() for sfm_magic/sfm_version
Fri Jan 18 12:48:35 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.75
Write correct size info (1440 kB instead of 1.44 meg) for boot floppy sizes, correct .R typo (used instead of .B) at -magic
Fri Jan 18 12:47:51 2002 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* eltorito.c 1.21
Write correct size info (1440 kB instead of 1.44 meg) for boot floppy sizes
Mon Dec 10 01:05:06 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.74
-udf option documented
Mon Dec 10 01:04:38 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* getopt.c 1.5
prototype for my_index()
Sun Nov 25 12:53:17 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.73
long unreadable option list removed from sysnopsis line
Thu Nov 22 22:34:18 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.97
Version -> 1.15a12
Thu Nov 22 22:24:38 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* udf_fs.h 1.1
* udf.c 1.1
* udf.h 1.1
date and time created 01/11/22 22:24:38 by joerg
Thu Nov 22 16:42:30 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* Makefile 1.10
* Makefile 1.10
* mkisofs.c 1.96
* mkisofs.h 1.62
Enhancements for UDF support
Thu Nov 22 16:41:13 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.59
add sort criteria for UDF VIDEO_TS and AUDIO_TS files.
Thu Nov 22 16:40:47 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.29
make convert_to_unicode()/joliet_strlen() global if UDF support is compiled in
Thu Nov 22 15:24:44 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.72
better documentation for README.sort/README.hide from James Pearson
Thu Nov 22 00:42:31 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.51
compare_sort() now behaves correctly if the parameters are exchanged so qsort() may sort correctly
Tue Nov 20 00:55:44 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.71
better documentation for -print-size, use \& if '.' is at beginning of line
Tue Nov 20 00:54:35 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.50
avoid #if defined(sun) || defined(_AUX_SOURCE), better error messages
Fri Nov 16 18:15:42 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* desktop.c 1.4
nitialize the whole struct hfsdirent in make_desktop()
Sun Nov 11 20:38:20 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* apple.h 1.5
d_dtoutime() Prototype new
Sun Nov 11 20:28:56 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* apple.h 1.4
* apple.c 1.13
Preserves HFS file dates for AppleDouble, AppleSingle and NetaTalk files
Sun Nov 11 13:38:45 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* rock.c 1.29
QNX Neutrino has no st_ftime
Sun Oct 21 01:01:23 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* getopt.c 1.4
Try to compensate FSF rubish code and supress warnings by always including standard include files
Sun Oct 21 01:00:30 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.95
Always use local getopt.h, version -> 1.15a09
Tue Oct 9 01:27:16 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.61
sys/types.h & sys/stat.h -> statdefs.h
Thu May 31 10:56:32 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.70
-split-output description new, -hard-disk-boot/-no-emul-boot/-no-boot hint added to -b
Sun Apr 22 11:34:46 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.94
Comment for memset() in e_malloc()
Fri Apr 20 23:53:40 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* ChangeLog 1.21
Late changes for 1.14
Fri Apr 20 18:46:36 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.49
Initalize more data from struct directory_record
Fri Apr 20 18:45:47 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.93
Always clear allocated memory to avoid uninitialized data.
Tue Apr 17 00:57:30 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.69
Hint to mailman
Fri Apr 13 23:31:42 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* ChangeLog 1.20
updated to release 1.14
Fri Apr 13 20:42:30 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.92
Version -> 1.14 final
Fri Apr 13 20:12:50 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.68
New Support mail Adresses
Thu Apr 12 19:36:39 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.91
make insert_file_entry() failure non fatal in mkisofs main code
Sat Apr 7 17:31:44 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.48
starting to implement associated files in multi-session
Sat Apr 7 14:47:49 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.58
* mkisofs.c 1.90
No exit() for warnings
Tue Apr 3 23:33:26 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* Makefile 1.9
* defaults.h 1.15
APPID_DEFAULT now includes Copyright messages
Mon Apr 2 23:17:05 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.47
unused vars removed
Mon Apr 2 20:09:22 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.89
Fixed -check-session handling for -C0,0 default, Search for SUSP RR record in '.' of root
Mon Apr 2 20:05:48 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.67
New option -force-rr
Mon Apr 2 20:05:25 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.46
rr_flags()/parse_rrflags()/find_rr() new, get_session_start() handling for -check-session fixed
Mon Apr 2 20:04:34 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.60
rr_flags()/parse_rrflags()/find_rr() new
Sun Apr 1 21:51:43 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.66
-check-session new
Sun Apr 1 21:51:11 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.88
Parameter for -check-session added to usage
Sun Apr 1 21:49:56 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.59
-check-session neu
Sun Apr 1 19:13:37 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.87
* multi.c 1.45
Need to handle -C (cdrecord_data) special if -check-session is set
Sun Apr 1 17:46:59 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* name.c 1.23
Back up to last '.' found if trying to find a better '.' did not work
Sun Apr 1 17:45:17 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.86
New option -check-session
Tue Mar 20 01:09:27 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* volume.c 1.8
* mkisofs.h 1.58
* mkisofs.c 1.85
* mkisofs.8 1.65
New options for writable HFS files from James Pearson
Sun Mar 4 15:13:00 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.64
Better documentation for -no-cache-inodes
Sun Mar 4 00:53:59 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.84
Fix a bug with '-- filename'
Sun Mar 4 00:52:29 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.63
* hash.c 1.14
* mkisofs.h 1.57
* mkisofs.c 1.83
new options -no-cache-inodes/-cache-inodes as a workaround for non unique inodes on Cygwin
Fri Feb 23 21:58:52 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.62
Einfo for RR_MOVED dir added
Fri Feb 23 17:33:54 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* apple.c 1.12
set_Dinfo(hfs_info->finderinfo, hfs_ent); -> set_Finfo(hfs_info->finderinfo, hfs_ent); according to James Pearson to make --xinet option work
Thu Feb 15 23:04:00 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.49
output_fraagment now copied to allocated space to allow a desc to be used more than once
Thu Feb 15 23:02:53 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.82
version -> 1.14a14
Thu Jan 25 23:28:32 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* Makefile 1.8
* eltorito.c 1.20
* apple.c 1.11
* mkisofs.h 1.56
* tree.c 1.57
* write.c 1.48
changes to support large files
Tue Jan 23 13:27:44 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.56
* mkisofs.c 1.81
* mkisofs.h 1.55
* write.c 1.47
* apple.c 1.10
* rock.c 1.28
* eltorito.c 1.19
* joliet.c 1.28
Avoid gcc -W warnings (e.g. signed/unsigned)
Sat Jan 20 23:17:37 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.46
* mkisofs.8 1.61
* mkisofs.c 1.80
-quiet make mkisofs really quiet
Sat Jan 20 23:03:26 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.79
Modified to allow EBCDIC
Sat Jan 20 22:46:10 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.60
* mkisofs.h 1.54
* mkisofs.c 1.78
* rock.c 1.27
* joliet.c 1.27
* apple.c 1.9
Better charset tables for Apple
Fri Jan 19 19:26:19 2001 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.55
* mkisofs.c 1.77
* mkisofs.8 1.59
* mkisofs.h 1.53
better rationalized uid/gid/modes
Sat Dec 9 19:55:17 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* apple.c 1.8
u_short -> Ushort, u_int -> Uint
Sat Dec 9 19:36:48 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.26
u_char -> Uchar
Tue Dec 5 15:25:02 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* volume.c 1.7
* write.c 1.45
* vms.c 1.6
* tree.c 1.54
* rock.c 1.26
* name.c 1.22
* multi.c 1.44
* mkisofs.h 1.52
* mkisofs.c 1.76
* match.c 1.13
* match.h 1.7
* mac_label.c 1.4
* joliet.c 1.25
* hash.c 1.13
* files.c 1.9
* exclude.c 1.8
* eltorito.c 1.18
* desktop.c 1.3
* apple_driver.c 1.4
* boot.c 1.7
* apple.c 1.7
Completed conversion to Schily SING autoconfiguration
Mon Dec 4 12:56:49 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.51
Now first includes mconfig.h then stdio.h (for largefiles), now uses strdefs.h, standard.h for const abstraction, stdxlib.h instead of stdlib.h
Mon Dec 4 12:53:32 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.43
* scsi.c 1.17
lseek now using SEEK_* macros
Mon Dec 4 12:53:11 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mac_label.c 1.3
* apple_driver.c 1.3
* apple.c 1.6
fseek now using SEEK_* macros
Fri Dec 1 14:14:23 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.42
Now working without usal_prbytes() from libusal
Fri Nov 24 10:49:58 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.75
-print-size now also prints an easy to parse string to stdout
Fri Nov 24 10:49:29 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.58
New -print-size behavior documented
Sun Nov 19 16:34:56 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.74
New option -no-pad, -pad now default, support for Cygwin-1.x
Sun Nov 19 16:33:13 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* Makefile 1.7
Umbau fuer mkhybrid
Sun Nov 19 16:32:40 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* Makefile.man 1.3
INSMODE= beseitigt
Sun Nov 19 13:03:18 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* name.c 1.21
Special handling for '#' and '~' disabled because the code created infinite dir tree loops
Sat Nov 4 17:59:36 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.57
New option -no-pad, -pad now default
Sat Oct 14 15:33:50 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.56
hint for CD-Extra usage (-M/-C), note for -graft-points option in examples that need -graft-points
Fri Sep 8 02:49:31 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi.c 1.16
Call to usal_remote()
Fri Sep 8 02:49:00 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.73
Warning for using Joliet without Rock Ridge
Fri Aug 25 15:31:13 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* match.c 1.12
* mkisofs.c 1.72
new-line discarded only if really present
Mon Aug 14 01:36:38 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.71
Graft-points repariert fuer esacped =
Sun Jul 30 14:08:38 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.41
* scsi.c 1.15
Modified for new libusal with usal_*()
Thu Jul 20 19:29:19 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.70
Version -> 1.13
Thu Jul 20 19:27:54 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mac_label.c 1.2
Size arithmetic fix for HFS vol size
Thu Jul 20 19:27:12 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.55
Small typo fixes
Tue Jun 27 19:12:02 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.69
* mkisofs.8 1.54
New option -graft-points
Tue Jun 27 01:38:35 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.68
1.13a02 -> 1.13a03
Tue Jun 27 01:31:27 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.67
allow -path-list option to work without a command line arg, graft pointer escapes haf way ready
Tue Jun 27 01:20:27 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* match.c 1.11
better parser for -sort option, avoid buffer overflows by not using fscanf
Tue Jun 27 01:18:01 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.53
Better doc for -sort option
Mon Jun 26 23:50:33 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* apple_driver.c 1.2
Converted for Schily SING makefile system, made portable
Mon Jun 5 03:19:54 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.44
percent output now even works with NO_FLOATINGPOINT
Sat Jun 3 14:24:26 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.43
buffer[] -> static in write_one_file() for sake of the silly Metrowerks C found on BeOS/PPC
Sun May 28 17:41:40 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.66
version -> 1.13a02
Sun May 28 17:03:48 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* eltorito.c 1.17
* mkisofs.8 1.52
* mkisofs.h 1.50
* mkisofs.c 1.65
New option -eltorito-alt-boot
Sun May 28 16:28:01 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.51
Integration of mkisofs/mkhybrid to one single application
Sun May 28 13:21:51 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.40
Check for reloc_dir != NULL in match_cl_re_entries()
Sun May 7 17:23:57 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* match.c 1.10
* scsi.c 1.14
* boot.c 1.6
* eltorito.c 1.16
* name.c 1.20
* joliet.c 1.24
* multi.c 1.39
* rock.c 1.25
* hash.c 1.12
* write.c 1.42
* tree.c 1.53
* mkisofs.c 1.64
#include <schily.h>
Sun May 7 17:14:34 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.63
Release -> 1.13a01, removed comment for associated files as it has been wrong
Thu Apr 27 14:11:30 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* RELEASE 1.31
Release 1.12.1
Thu Apr 27 14:06:09 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.50
New Opton -root-info, typo's corrected
Thu Apr 27 13:54:09 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* apple.c 1.5
cast for correct char * / unsigned char * handling
Thu Apr 27 13:36:25 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* volume.c 1.6
* apple.h 1.3
* desktop.c 1.2
* apple.c 1.4
Major changes to implement new HFS option -root-info and -jcharset mac-roman
Thu Apr 27 12:47:26 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* Makefile 1.6
New file place sorting option activated with -DSORTING
Thu Apr 27 12:46:35 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* ChangeLog 1.19
updated to release 1.12.1
**************** Release 1.12.1 *******************
Thu Apr 27 12:44:54 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.52
* rock.c 1.24
* mkisofs.h 1.49
* mkisofs.c 1.62
New HFS option -root-info
Fri Apr 21 22:11:17 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.41
better double conversion for estimation time computation
Fri Apr 21 22:04:56 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* name.c 1.19
Name trucation warning removed because it does not work.
Fri Apr 21 18:37:36 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* name.c 1.18
* mkisofs.h 1.48
* mkisofs.c 1.61
* mkisofs.8 1.49
-max-iso0660-filenames
Fri Apr 21 18:09:55 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.51
Creating unique filenames now works even if we are creating 37 char names
Thu Apr 20 22:14:55 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.50
Make TRANS.TBL wider to allow 37 char iso names, avoid hard coded values
Thu Apr 20 21:44:34 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.38
Parsing of TRANS.TBL now adaptive instead of using hard coded numbers
Wed Apr 19 23:59:22 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.49
* multi.c 1.37
* iso9660.h 1.13
MAX_ISONAME fom 38 -> 37
Tue Apr 18 16:22:56 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* volume.c 1.5
Use HFS_FNDR_ISINVISIBLE for dirs too
Tue Apr 18 16:20:03 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* name.c 1.17
* tree.c 1.48
* multi.c 1.36
* mkisofs.h 1.47
* mkisofs.c 1.60
* mkisofs.8 1.48
Removed Option -all-files, New options -iso-level, -allow-lowercase, -allow-multidot, -relaxed-filenames, -use-fileversion, name.c completely rewritten
Sun Apr 16 16:30:40 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.47
* name.c 1.16
* mkisofs.h 1.46
* mkisofs.c 1.59
New Option -no-iso-translate
Sun Apr 16 16:26:37 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.46
New Options -sort & -ucs-level
Sun Apr 16 15:24:16 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* defaults.h 1.14
* mkisofs.h 1.45
* multi.c 1.35
Copyright Schilling added
Sun Apr 16 15:22:32 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* iso9660.h 1.12
struct iso_ext_attr_record new
Sun Apr 16 14:47:53 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.23
* mkisofs.h 1.44
* mkisofs.c 1.58
New Option -ucs-level
Sun Apr 16 14:12:24 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.43
* mkisofs.c 1.57
* tree.c 1.47
* hash.c 1.11
* write.c 1.40
New sort code from James Pearson
Sun Apr 16 13:39:46 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* match.h 1.6
* match.c 1.9
Converted to unified match code, new sort match code
Sat Apr 15 21:59:15 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* volume.c 1.4
Apply ISO Hidden flag to files on HFS volume too
Sat Apr 15 20:57:06 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* name.c 1.15
Handle '.' and '..' entries corretly in iso9660_check()
Wed Apr 12 23:56:56 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.45
New option -check-oldnames
Wed Apr 12 23:44:18 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* apple.c 1.3
strcasecmp() local implementation
Wed Apr 12 23:24:10 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* Makefile 1.5
HFILES added to get better ctags
Wed Apr 12 23:23:34 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.34
* name.c 1.14
* mkisofs.h 1.42
* mkisofs.c 1.56
New Option -check-oldnames, new function iso9660_check() to check/repair filenames from old session, better error messages for bad RR attributes, avoid coredump with calling memset with negative count.
Tue Apr 11 10:50:04 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* iso9660.h 1.11
* tree.c 1.46
iso_directory_record now uses MAX_ISONAME (38) old was 34
Sun Apr 9 22:04:42 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.33
Better error messages for bad XA disks.
Sun Apr 9 17:06:34 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.55
Version -> 1.12.1a06, corrected help for -l (30 chars!)
Sun Apr 9 17:05:47 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.45
Put number to make names unique before the dot to retain the suffix
Sun Apr 9 14:28:01 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.44
some more curly brackets....
Sat Apr 8 23:51:20 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.54
removed duplicate OPTION_H_LIST
Sat Apr 8 23:44:43 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.44
* tree.c 1.43
* mkisofs.c 1.53
* match.c 1.8
* mkisofs.h 1.41
* match.h 1.5
New option -hidden & -hidden-list to implement hidden (ISO existence flag) files
Sat Apr 8 23:32:45 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.43
better padding documentation (-pad)
Sat Apr 8 20:55:49 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.42
added description for mkhybrid
Sat Apr 8 20:50:47 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.41
add \ before some - signs and mark some mkisofs places with \& to prevent repleacement with sed script
Sat Apr 8 19:40:05 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.40
typo correction and preparation towards unified manual (mkisofs/mkhybrid)
Sat Apr 8 16:05:51 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* volume.c 1.3
* write.c 1.39
* tree.c 1.42
* multi.c 1.32
* joliet.c 1.22
* eltorito.c 1.15
* iso9660.h 1.10
* mkisofs.h 1.40
Now using iso directory flag definition from iso9660.h
Mon Apr 3 23:59:05 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.31
Minor clean up, Message about XA records
Mon Apr 3 23:40:21 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.39
* match.c 1.7
* exclude.c 1.7
indented
Mon Apr 3 21:06:04 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* eltorito.c 1.14
insert_boot_cat() prototype
Mon Apr 3 02:22:16 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.41
* write.c 1.38
* mkisofs.c 1.52
* rock.c 1.23
* name.c 1.13
* joliet.c 1.21
* hash.c 1.10
* files.c 1.8
* eltorito.c 1.13
* vms.c 1.4
indented
Mon Apr 3 00:38:28 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.40
* multi.c 1.30
parse_xa() new to skip XA extended directory attributes
Sun Apr 2 22:24:43 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.38
* write.c 1.37
version_desc new
Sun Apr 2 21:15:21 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.51
version desc new
Sun Apr 2 20:28:06 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* vms.c 1.5
eric -> joerg
Sun Apr 2 19:10:28 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* iso9660.h 1.9
struct iso_xa_dir_record new
Sun Apr 2 19:01:16 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.20
stdlib.h -> stdxlib.h, rtmp, ltmp (short -> char[2]) for correct byteorder handling
Sun Apr 2 18:14:35 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* files.c 1.7
Typo correction
Sat Apr 1 22:29:29 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* iso9660.h 1.8
Indented
Fri Mar 31 18:50:41 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* volume.c 1.2
New function set_cusstom_icon()
Fri Mar 31 18:48:21 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* apple.h 1.2
* apple.c 1.2
sys/param.h removed, MAXPATHLEN -> PATH_MAX for portability
Fri Mar 31 18:44:31 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.19
Now sort joliet tree according to Unicode order
Fri Mar 31 18:38:55 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.39
* write.c 1.36
* mkisofs.h 1.37
* mkisofs.c 1.50
New option -pad
Fri Mar 31 12:59:06 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.38
-jcharset implies -J
Fri Mar 31 12:55:30 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.49
hfs_ct var new, -hfs-creator typo in option parsing fixed
Thu Mar 30 02:47:14 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.48
1.8.1a04 -> 1.8.1a05, -icon-position option needs no argument, -jcharset now implies -J
Thu Mar 30 02:43:18 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.36
#include limits.h for NAME_MAX, PATH_MAX definition new
Wed Mar 29 10:33:45 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* apple.c.bak 1.1
date and time created 00/03/29 09:33:45 by joerg
Sun Mar 26 18:44:46 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.37
Better doc for -jcharset
Sun Mar 26 18:40:23 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.47
Unicode mapping now defaults to iso8859-1 resp. cp437
Sun Mar 26 18:31:24 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.46
* defaults.h 1.13
defined(__CYGWIN__) added for Cygwin recognition
Sat Mar 25 17:10:43 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.36
* joliet.c 1.18
* Makefile 1.4
* mkisofs.c 1.45
Joliet character translation using different character sets (-jcharset)
Sun Mar 19 20:08:24 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* boot.c 1.5
-B ... zum Duplizieren der letzten Partition bis zum Ende der Partitions Map
Sun Mar 19 20:02:40 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.35
New usage for -B option: ... means replicate previous boot partition
Sun Mar 19 19:19:46 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* defaults.h 1.12
Mac OS X definition new
Sun Mar 19 16:46:31 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.39
* multi.c 1.29
* mkisofs.c 1.44
* mkisofs.h 1.35
RR deep directory relocation fixes for multi-session from: "Artem Hodyush" <artem@duma.gov.ru>
Sun Mar 19 16:15:54 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.28
made conform to schily programming rules
Sun Mar 19 16:02:46 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.27
indented
Sat Mar 18 23:59:42 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* README.eltorito 1.2
typo corrected
Sat Mar 18 22:43:10 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.43
* tree.c 1.38
added code for APPLE_HYBRID
Sat Mar 18 19:39:14 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.34
removed superfluous spaces
Sat Mar 18 19:24:34 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* apple.h 1.1
date and time created 00/03/18 19:24:34 by joerg
Sat Mar 18 19:24:13 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mac_label.h 1.1
date and time created 00/03/18 19:24:13 by joerg
Sat Mar 18 19:23:54 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mactypes.h 1.1
date and time created 00/03/18 19:23:54 by joerg
Sat Mar 18 19:18:36 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* desktop.c 1.1
date and time created 00/03/18 19:18:36 by joerg
Sat Mar 18 19:18:09 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mac_label.c 1.1
date and time created 00/03/18 19:18:09 by joerg
Sat Mar 18 19:16:33 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* volume.c 1.1
date and time created 00/03/18 19:16:33 by joerg
Sat Mar 18 17:56:59 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* apple.c 1.1
date and time created 00/03/18 17:56:59 by joerg
Sat Mar 18 13:52:21 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.35
* mkisofs.h 1.34
added code for APPLE_HYBRID, ROUND_UP() -> ISO_ROUND_UP()
Sat Mar 18 13:44:25 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* defaults.h 1.11
Use better recognition code for Rhapsody
Sat Mar 18 13:41:24 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.17
ROUND_UP() -> ISO_ROUND_UP()
Sat Mar 18 13:02:55 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* boot.c 1.4
2048 -> SECTOR_SIZE
Sat Mar 18 13:00:02 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* eltorito.c 1.12
csum_buffer[2048] -> csum_buffer[SECTOR_SIZE]
Sun Mar 12 20:50:51 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.16
* rock.c 1.22
added code for APPLE_HYBRID
Sat Mar 11 14:00:40 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* match.c 1.6
added match code for APPLE_HYBRID, better error messages
Sat Mar 11 13:38:16 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* hash.c 1.9
New function flush_hash() for APPLE_HYBRID
Sat Mar 11 13:21:13 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* match.h 1.4
Added definitions for APPLE_HYBRID
Sat Mar 11 13:19:07 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* defaults.h 1.10
Defaults for HFS (mkhybrid), SYSTEM_ID_DEAULT for Rhapsody
Sun Mar 5 18:08:30 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.15
Always sort root dir to be first in path table
Sun Mar 5 14:28:41 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.33
correction for boot.catalog description, -table-name documented
Sun Mar 5 14:27:21 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* name.c 1.12
replace forgotten but illegal chars by '_'
Sat Mar 4 16:33:38 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.42
close_merge_image() call from multi.c, do not close merge image a second time
Sat Mar 4 16:32:32 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.33
* multi.c 1.26
new function clode_merge_image(), close_merge_image() -> mkisofs.c
Thu Feb 17 00:10:46 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* sunlabel.h 1.3
* boot.c 1.3
splitted into boot.c and sunlabel.h
Wed Feb 16 17:55:06 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* getopt.c 1.3
Prototypes for exchange() & _getopt_initialize()
Wed Feb 16 17:08:57 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.32
prototype for scsidev_close()
Wed Feb 16 17:08:36 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.25
merge_previous_session() now calls scsidev_close() to allow mkisofs | cdrecord with multi session
Mon Feb 14 15:58:26 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* bootinfo.h 1.2
comment added
Thu Feb 10 01:10:21 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi.c 1.13
scsidev_close() neu
**************** Release 1.12 *******************
Mon Jan 17 23:53:16 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* RELEASE 1.30
* mkisofs.c 1.41
* mkisofs.8 1.32
Release 1.12
Fri Jan 14 02:26:40 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.31
-no-rr new, Bugs section
Wed Jan 12 16:19:55 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* README.graft_dirs 1.1
date and time created 00/01/12 16:19:55 by joerg
Tue Jan 11 13:17:32 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.14
allow odd to buffer sizes when converting to unicode
Mon Jan 10 23:17:25 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.37
* rock.c 1.21
now using device.h
Mon Jan 10 02:26:07 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.40
-no-rr new
Mon Jan 10 01:45:07 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.24
* mkisofs.h 1.31
no_rr new
Sat Jan 8 23:42:24 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi.c 1.12
scsi_read() beachtet nun is_atapi damit mkisofs auch mit ATAPI multi-session kann
Fri Jan 7 20:51:10 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.36
print file typee, better error messages, no_scandir added
Fri Jan 7 20:42:00 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* rock.c 1.20
* exclude.c 1.6
better error messages
Fri Jan 7 20:41:04 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.39
new -U flag, -F flag removed, new list match code
Fri Jan 7 20:32:22 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* match.c 1.5
new list match code
Fri Jan 7 19:26:08 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.30
new hide options, -F removed -U new
Fri Jan 7 18:58:12 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.34
make TRANS.TBL a variable, gui code gives faster verbose message
Fri Jan 7 18:55:19 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.23
make TRANS.TML name a variable
Fri Jan 7 18:52:55 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.30
-U new, new match list code
Fri Jan 7 18:07:38 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* match.h 1.3
new match list code
Wed Jan 5 20:06:55 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* name.c 1.11
-U flag new
Sun Jan 2 00:37:28 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.38
Version js-a38
Sat Jan 1 23:05:28 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.33
using offsetof() to get around odd structure length, better error messages
Sat Jan 1 23:03:42 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.13
* multi.c 1.22
* tree.c 1.35
using offsetof() to get around odd structure length
Sat Jan 1 20:31:59 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* iso9660.h 1.7
Note for odd length added
Sat Jan 1 20:31:53 2000 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.29
offsetof() macro new
Wed Dec 29 14:38:31 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.29
* mkisofs.h 1.28
* mkisofs.c 1.37
New options -hide-rr-moved & -hide-joliet-trans-tbl
Wed Dec 29 14:21:22 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.34
New options -hide-rr-moved & -hide-joliet-trans-tbl, better error messages
Tue Dec 28 18:23:43 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.21
better error messages, free more structures, check for bad RR Version, fix direactory handling code for graft pointers
Tue Dec 28 16:32:00 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* getopt.c 1.2
fixed uninitialized variable
Tue Dec 28 15:12:05 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* hash.c 1.8
* files.c 1.6
* write.c 1.32
better error messages
Tue Dec 28 15:07:29 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* eltorito.c 1.11
better error messages, make boot file/ boot catalog hidable
Tue Dec 28 14:21:26 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.12
Error message made different from others
Mon Dec 27 15:34:43 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* iso9660.h 1.6
indented
Mon Dec 20 00:14:20 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.33
config.h must be first, boot catalog becomes MEMORY FILE
Sun Dec 19 22:31:42 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.36
hard disk boot, no emulation boot
Sun Dec 19 21:29:59 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* eltorito.c 1.10
better autoconf, hd boot, no emulation boot, boot catalog as memory file
Sun Dec 19 21:06:46 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* name.c 1.10
fix with file priority
Sun Dec 19 21:01:37 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.27
hard disk boot/ no emulation boot new, MEMORY FILE new
Sun Dec 19 20:58:32 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.31
config.h must be first get_731()/get_732() new
Sun Dec 19 20:57:02 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* rock.c 1.19
* multi.c 1.20
config.h must be first
Sun Dec 19 20:55:22 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* hash.c 1.7
include stdlib.h past config.h
Sun Dec 19 20:33:49 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* diskmbr.h 1.1
date and time created 99/12/19 20:33:49 by joerg
Sun Dec 19 19:54:43 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* iso9660.h 1.5
changes for NOEMUL BOOT
Sun Dec 19 18:16:10 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* bootinfo.h 1.1
date and time created 99/12/19 18:16:10 by joerg
Sun Dec 19 16:38:04 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.28
hard disk boot and no emulation boot
Sun Dec 19 16:13:21 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* sunlabel.h 1.2
* boot.c 1.2
Ueberfluessige Variablen beseitigt, Prototypen fuer geboot_*()
Sat Dec 18 01:11:43 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* Makefile.in 1.16
Erics final changes
Wed Dec 15 01:24:58 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.35
sparc boot new, -nomak new, suid mode now safe
Sun Dec 12 22:01:32 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* README.sparcboot 1.1
date and time created 99/12/12 22:01:32 by joerg
Sun Dec 12 19:26:57 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.30
* mkisofs.8 1.27
* mkisofs.h 1.26
sparc boot new
Sun Dec 12 18:28:09 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* Makefile 1.3
boot.c new
Sun Dec 12 18:03:39 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* sunlabel.h 1.1
* boot.c 1.1
date and time created 99/12/12 18:03:39 by joerg
Sat Dec 11 16:26:54 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.32
rstr() new to check for .bak files
Fri Dec 10 01:58:22 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.19
Check first if -M file exists before trying to use scsidev_open()
Tue Dec 7 00:33:13 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.29
new sort_dir code checks for is_rr_dir
Tue Dec 7 00:21:00 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.31
Do not make directory loop fatal, new sort_directory code
Tue Dec 7 00:19:32 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.25
sort directory prototyp modified
Mon Dec 6 23:40:22 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.11
use comerr()
Mon Dec 6 22:46:07 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.34
Version js-a34
Sat Dec 4 20:56:21 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.18
Allow RR Version 2 for Mac, memcmp() returns != null for misscompare of date!!!
Sat Dec 4 20:48:22 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.28
Allow the same name in rr_moved
Tue Nov 30 17:16:47 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.10
strncmp() for max of 64 chars in Joliet dirs
Sat Nov 27 22:05:15 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.30
Force graft dirs to be at least SECTOR_SIZE, dup missing whole_name
Thu Nov 25 10:44:05 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* defaults.h 1.9
Various new system definitions
Thu Nov 25 00:25:08 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.33
-version new
Tue Nov 23 00:11:24 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.26
Hint to new maintainer Joerg Schilling
Tue Nov 23 00:05:30 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.32
Version js-a32, -cdwrite-params -> -cdrecord-params
Tue Nov 23 00:03:15 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* README 1.7
cdwrite hint removed
Tue Nov 23 00:01:13 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.17
TRANS.TBL handling corrected
Mon Nov 22 23:47:21 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi.c 1.11
Abbruch bei Lesefehlern in readsecs()
Mon Nov 22 21:41:38 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* rock.c 1.18
#ifdef corrected for BLK/CHR devices
Fri Nov 19 23:01:59 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.29
S_IFBLK checked for OS/2
Fri Nov 12 11:55:44 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* eltorito.c 1.9
clean castings
Fri Nov 12 11:53:07 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.27
clean casting
Fri Nov 12 11:45:03 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.24
#include statdefs.h
Wed Nov 3 23:56:49 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.31
Release js-a31
Mon Nov 1 22:29:15 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* Makefile.man 1.2
INSMODE new
Sat Oct 16 18:52:16 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.30
Release 1.12b5-js-a30, removed & before array
Fri Oct 15 22:01:18 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.16
Removed & before array
Fri Oct 8 19:54:24 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* match.c 1.4
make it work correctly on 64 bit systems
Mon Sep 13 12:10:13 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.29
Version to 1.12b5-js-28
Tue Sep 7 16:45:13 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi.c 1.10
Umbau auf neues open_scsi(), commerr() statt fprintf(stderr)
Tue Sep 7 14:52:25 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* rock.c 1.17
HAVE_READLINK test, use comerr()
Tue Sep 7 14:50:50 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.9
* hash.c 1.6
* files.c 1.5
* eltorito.c 1.8
* multi.c 1.15
* write.c 1.26
use comerr()
Tue Sep 7 14:32:27 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.28
use comerr(), HAVE_READLINK test
Tue Sep 7 14:13:12 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.28
use comerr()/save_args()
Tue Sep 7 14:10:48 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* Makefile 1.2
USE_LIBSCHILY new
Sun Aug 29 01:59:22 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.23
HAVE_LSTAT test new
Sun Aug 1 22:50:12 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* defaults.h 1.8
SYSTEM ID DEFAULT for OS/2
Sun Jul 11 19:32:42 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* multi.c 1.14
<translation table> -> TRTANS.TBL for Joliet, round up to SECSIZE for reading TRANS.TBL
Sun Jul 11 19:30:08 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* tree.c 1.27
<translation table> -> TRTANS.TBL for Joliet, ignore-loops new
Mon Jun 21 11:46:40 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* write.c 1.25
Check for Rock Ridge files with same name
Thu Jun 17 16:31:43 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* name.c 1.9
cleaned up
Thu Jun 17 16:30:18 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.8 1.25
Better words, -F option new
Thu Jun 17 16:17:18 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.27
wildcard for EMX, ignore loops, no-split-symlink-fields/no-split-symlink-components now work
Tue May 25 21:09:44 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.h 1.22
ignore-loops new
Wed May 19 16:41:02 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* joliet.c 1.8
debug print for joliet files wirh same name
Wed Apr 28 16:58:37 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* name.c 1.8
Better handling for chars > 128
Sat Apr 24 18:39:19 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi.c 1.9
Wegen OS/2 wird nun scsi_getbuf() aufgerufen, wait_inut_ready() neu, read_capacity() neu, Schleife ueber read_scsi, falls der transfer groeszer als der SCSI Puffer ist.
Sat Apr 24 18:25:00 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* mkisofs.c 1.26
#ifdef for EMX (OS/2)
**************** Release 1.12b5 *******************
Mon Mar 8 01:32:05 1999 Eric Youngdale <eric@andante.org>
* RELEASE 1.29
Release1.12b5
Mon Mar 8 01:31:05 1999 Eric Youngdale <eric@andante.org>
* mkisofs.8 1.24
many new options from Joerg Schilling, Release 1.12b5
Sun Mar 7 22:48:49 1999 Eric Youngdale <eric@andante.org>
* mkisofs.c 1.25
several new options, binary open for Win32
Sun Mar 7 18:41:19 1999 Eric Youngdale <eric@andante.org>
* write.c 1.24
split-output new, binary open for Win32, avoid incorrect sorting for ./.. with -L, ISO hide code
Sun Mar 7 18:41:19 1999 Eric Youngdale <eric@andante.org>
* tree.c 1.26
Inhibit code, sprintf() now correct, varoius other fixes
Sun Mar 7 18:41:19 1999 Eric Youngdale <eric@andante.org>
* joliet.c 1.7
Let all iso8859-1 chars be unicode, Joliet hide code
Tue Mar 2 05:16:41 1999 Eric Youngdale <eric@andante.org>
* multi.c 1.13
Prototypes and other various bug fixes
Tue Mar 2 05:16:41 1999 Eric Youngdale <eric@andante.org>
* mkisofs.h 1.21
better prototypes, INHIBIT_ISO9660_entry new, volume_set_size/volume_sequence_number
Tue Mar 2 05:16:40 1999 Eric Youngdale <eric@andante.org>
* Makefile.in 1.15
Release 1.12b5
Tue Mar 2 05:16:40 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* README.session 1.3
Modified for cdrecord
Tue Mar 2 04:41:26 1999 Eric Youngdale <eric@andante.org>
* rock.c 1.16
Binary open for Win32, some other fixes
Tue Mar 2 04:41:26 1999 Eric Youngdale <eric@andante.org>
* name.c 1.7
casts for unsigned char *
Tue Mar 2 04:41:25 1999 Eric Youngdale <eric@andante.org>
* match.h 1.2
* match.c 1.3
Joliet/ISO hide code new
Tue Mar 2 04:41:25 1999 Eric Youngdale <eric@andante.org>
* defaults.h 1.7
APPID_DEFAULT new
Tue Mar 2 04:41:25 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* exclude.h 1.2
__PR() macros
Tue Mar 2 04:41:25 1999 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* fnmatch.c 1.3
some casts for unsigned char *
Tue Mar 2 04:41:25 1999 Eric Youngdale <eric@andante.org>
* eltorito.c 1.7
small bug fixes
Sun Nov 29 19:13:43 1998 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi.c 1.8
usalio.h -> usalcmd.h/usalio.h, usalio.h usalcmd.h scsidefs.h scsireg.h scsitransp.h -> include/usal
Sun Nov 29 18:30:41 1998 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* Makefile 1.1
date and time created 98/11/29 18:30:41 by joerg
Sat Nov 14 04:20:05 1998 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* Makefile.man 1.1
date and time created 98/11/14 04:20:05 by joerg
Fri Oct 30 02:06:35 1998 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi.c 1.7
open_scsi() returniert nun SCSI *usalp, wird auch fuer read_scsi() verwendet
Sat Oct 24 01:29:24 1998 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi.c 1.6
open_scsi(dev, timeout, verboseopen) -> open_scsi(dev, debug, verboseopen)
**************** Release 1.12b4 *******************
Tue Jun 2 06:44:45 1998 Eric Youngdale <eric@andante.org>
* RELEASE 1.28
Release 1.12b4
Tue Jun 2 06:43:45 1998 Eric Youngdale <eric@andante.org>
* mkisofs.c 1.24
New options -print-size & -split-output, put Joliet & ElTorite PVD in right order
Tue Jun 2 06:43:44 1998 Eric Youngdale <eric@andante.org>
* mkisofs.8 1.23
-print-size/-split-output new, Release 1.12b4
Tue Jun 2 06:14:58 1998 Eric Youngdale <eric@andante.org>
* tree.c 1.25
Win32 changes, do not use sprintf result, some other fixes
Tue Jun 2 05:40:39 1998 Eric Youngdale <eric@andante.org>
* write.c 1.23
-split-output, several fixes
Tue Jun 2 05:40:38 1998 Eric Youngdale <eric@andante.org>
* multi.c 1.12
Some fixes with DOT/DODOT, create whole_name by strdup
Tue Jun 2 05:40:38 1998 Eric Youngdale <eric@andante.org>
* mkisofs.h 1.20
Win32, -print-size, -split-output
Tue Jun 2 05:40:38 1998 Eric Youngdale <eric@andante.org>
* name.c 1.6
No version number if it is part of the filename
Tue Jun 2 05:40:37 1998 Eric Youngdale <eric@andante.org>
* eltorito.c 1.6
O_BINARY for Win32
Tue Jun 2 05:40:37 1998 Eric Youngdale <eric@andante.org>
* joliet.c 1.6
bug fix for ce_bytes and chars > 128
Tue Jun 2 05:40:37 1998 Eric Youngdale <eric@andante.org>
* defaults.h 1.6
Defaults for Win32
Tue Jun 2 05:40:36 1998 Eric Youngdale <eric@andante.org>
* Makefile.in 1.14
CFLAGS new
Fri Apr 17 12:39:39 1998 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi.c 1.5
Prototypen entfernt fuer K&R C
**************** Release 1.12b3 *******************
Wed Feb 18 05:51:47 1998 Eric Youngdale <eric@andante.org>
* RELEASE 1.27
* mkisofs.c 1.23
* mkisofs.8 1.22
Release 1.12b3
Wed Feb 18 05:48:24 1998 Eric Youngdale <eric@andante.org>
* tree.c 1.24
check for relocated dirs
Wed Feb 18 05:48:23 1998 Eric Youngdale <eric@andante.org>
* rock.c 1.15
check strlen of symlink buffer
**************** Release 1.12b2 *******************
Mon Feb 16 18:57:56 1998 Eric Youngdale <eric@andante.org>
* RELEASE 1.26
* mkisofs.c 1.22
* mkisofs.8 1.21
Release 1.12b2
Mon Feb 16 18:56:56 1998 Eric Youngdale <eric@andante.org>
* tree.c 1.23
small bug fixes, Ingoring file message
Mon Feb 16 18:56:56 1998 Eric Youngdale <eric@andante.org>
* write.c 1.22
bug fix....
Mon Feb 16 18:56:55 1998 Eric Youngdale <eric@andante.org>
* mkisofs.h 1.19
better autoconf, better prototypes
Mon Feb 16 18:56:55 1998 Eric Youngdale <eric@andante.org>
* joliet.c 1.5
several casts to unsigned char *
**************** Release 1.12b1 *******************
Mon Dec 15 13:48:59 1997 Eric Youngdale <eric@andante.org>
* RELEASE 1.25
* mkisofs.c 1.21
* mkisofs.8 1.20
Release 1.12b1
Mon Dec 15 13:47:59 1997 Eric Youngdale <eric@andante.org>
* rock.c 1.14
mkdev() autoconf corrected
Mon Dec 15 13:47:59 1997 Eric Youngdale <eric@andante.org>
* mkisofs.h 1.18
string.h/strings.h autoconf
Mon Dec 15 13:47:59 1997 Eric Youngdale <eric@andante.org>
* tree.c 1.22
set isorec.size later
Mon Dec 15 13:47:58 1997 Eric Youngdale <eric@andante.org>
* eltorito.c 1.5
some printf's moved to stderr to avoid problems
Mon Dec 15 13:47:57 1997 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* configure.in 1.4
several new tests
**************** Release 120697 *******************
Sat Dec 6 22:06:07 1997 Eric Youngdale <eric@andante.org>
* RELEASE 1.24
* ChangeLog 1.18
Release 120697
Sat Dec 6 22:05:07 1997 Eric Youngdale <eric@andante.org>
* write.c 1.21
* tree.c 1.21
* rock.c 1.13
Fix uninitialized memory usage that screwed up lots of stupid things. Add support for non-split symlinks.
Sat Dec 6 22:05:05 1997 Eric Youngdale <eric@andante.org>
* multi.c 1.11
init struct directory to null
Sat Dec 6 22:05:05 1997 Eric Youngdale <eric@andante.org>
* mkisofs.h 1.17
readdir include handling new, *split_SL* new
Sat Dec 6 22:05:05 1997 Eric Youngdale <eric@andante.org>
* mkisofs.c 1.20
* mkisofs.8 1.19
new option -no-split-symlink-fields/-no-split-symlink-components
Sat Dec 6 22:05:03 1997 Eric Youngdale <eric@andante.org>
* defaults.h 1.5
SunOS/Solaris switch
**************** Release 112597 *******************
Tue Nov 25 14:09:37 1997 Eric Youngdale <eric@andante.org>
* RELEASE 1.23
Release 112597
Tue Nov 25 14:08:37 1997 Eric Youngdale <eric@andante.org>
* mkisofs.8 1.18
Release 112597, -quiet option new
Tue Nov 25 14:08:37 1997 Eric Youngdale <eric@andante.org>
* mkisofs.c 1.19
verbose levels, -quiet
Tue Nov 25 14:06:43 1997 Eric Youngdale <eric@andante.org>
* write.c 1.20
vervose levels
Tue Nov 25 14:06:42 1997 Eric Youngdale <eric@andante.org>
* joliet.c 1.4
some bug fixes, handling of reloc dir
Tue Nov 25 14:06:42 1997 Eric Youngdale <eric@andante.org>
* tree.c 1.20
* hash.c 1.5
verbose levels
**************** Release 112397 *******************
Mon Nov 24 03:52:49 1997 Eric Youngdale <eric@andante.org>
* RELEASE 1.22
Release 112397
Mon Nov 24 03:51:49 1997 Eric Youngdale <eric@andante.org>
* multi.c 1.10
print error messages to stderr
Mon Nov 24 03:51:49 1997 Eric Youngdale <eric@andante.org>
* joliet.c 1.3
fixed some bugs that prevented images working on NT, convert to unicode new
Mon Nov 24 03:51:49 1997 Eric Youngdale <eric@andante.org>
* tree.c 1.19
put error/debug messages to stderr, INHIBIT_JOLIET_ENTRY new
Thu Nov 13 06:01:42 1997 Eric Youngdale <eric@andante.org>
* name.c 1.5
typo fix
Mon Nov 10 04:27:17 1997 Eric Youngdale <eric@andante.org>
* write.c 1.19
casting to unsigned char *
**************** Release 110997 *******************
Sun Nov 9 19:56:51 1997 Eric Youngdale <eric@andante.org>
* RELEASE 1.21
110997
Sun Nov 9 19:55:51 1997 Eric Youngdale <eric@andante.org>
* mkisofs.c 1.18
getopt_long() codem, graft pointers, struct output_fragment new
Sun Nov 9 19:55:44 1997 Eric Youngdale <eric@andante.org>
* mkisofs.8 1.17
Joliet new, Graft pointers new
Sun Nov 9 19:54:58 1997 Eric Youngdale <eric@andante.org>
* tree.c 1.18
Joliet handling and graft pointer handling
Sun Nov 9 19:54:45 1997 Eric Youngdale <eric@andante.org>
* write.c 1.18
struct output_fragment new, sort goof check new, free unused space, better statistics
Sun Nov 9 19:54:27 1997 Eric Youngdale <eric@andante.org>
* multi.c 1.9
correct line length for TRANS.TBL, graft pointer merging code new
Sun Nov 9 19:43:36 1997 Eric Youngdale <eric@andante.org>
* mkisofs.h 1.16
struct output_fragment new, some defines for the tree
Sun Nov 9 19:43:36 1997 Eric Youngdale <eric@andante.org>
* iso9660.h 1.4
defines for unicode level, PVD ID for Joliet
Sun Nov 9 19:43:36 1997 Eric Youngdale <eric@andante.org>
* joliet.c 1.2
first code added
Sun Nov 9 19:43:36 1997 Eric Youngdale <eric@andante.org>
* Makefile.in 1.13
joliet.c, getopt*.c new
Sun Nov 9 19:43:36 1997 Eric Youngdale <eric@andante.org>
* name.c 1.4
mapping chars > 128
Sun Nov 9 19:43:36 1997 Eric Youngdale <eric@andante.org>
* eltorito.c 1.4
error messages to stderr, struct output_fragement new
Sun Nov 9 19:43:36 1997 Eric Youngdale <eric@andante.org>
* README 1.6
Notes for Release 1.12 added
Thu Nov 6 20:19:25 1997 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi.c 1.4
#include <mconfig.h> fuer AIX
Tue Nov 4 03:27:44 1997 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* getopt.h 1.1
date and time created 97/11/04 03:27:44 by joerg
Tue Nov 4 03:27:39 1997 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* getopt1.c 1.1
date and time created 97/11/04 03:27:39 by joerg
Tue Nov 4 03:27:32 1997 Eric Youngdale <eric@andante.org>
* getopt.c 1.1
date and time created 97/11/04 03:27:32 by eric
Sat Oct 18 19:14:05 1997 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi.c 1.3
stdlib.h -> stdxlib.h, unistd.h -> unixstd.h
Wed Oct 15 07:25:15 1997 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* TODO 1.3
New list for 1.12
**************** Release 1.11.1 *******************
Mon Oct 13 05:56:49 1997 Eric Youngdale <eric@andante.org>
* RELEASE 1.20
* mkisofs.8 1.16
Release 1.11.1
Mon Oct 13 05:55:49 1997 Eric Youngdale <eric@andante.org>
* mkisofs.c 1.17
Release 1.11.1, let path_table start on correct sector # depending on El Torito or not
Mon Oct 13 05:46:46 1997 Eric Youngdale <eric@andante.org>
* multi.c 1.8
better checking for null pointers, USE_SCG code included, type casts for unsigned char *
Mon Oct 13 05:46:01 1997 Eric Youngdale <eric@andante.org>
* write.c 1.17
Make local time a structure rahte than a pointer so data will not overwritten, add Joliet support
Mon Oct 13 05:41:16 1997 Eric Youngdale <eric@andante.org>
* tree.c 1.17
file renaming code corrected, iso9660_file_length() called correctly (not dir!) for TRANS.TBL
Mon Oct 13 05:32:57 1997 Eric Youngdale <eric@andante.org>
* mkisofs.h 1.15
prototypes for readsecs() and scsidev_open()
Mon Oct 13 05:30:51 1997 Eric Youngdale <eric@andante.org>
* name.c 1.3
seen_dot new, include '%' to illegal characters
Mon Oct 13 05:30:21 1997 Eric Youngdale <eric@andante.org>
* rock.c 1.12
major() autoconf changed
Mon Oct 13 05:29:40 1997 Eric Youngdale <eric@andante.org>
* eltorito.c 1.3
Limit publisher ID to 23 chars
Wed May 21 18:11:25 1997 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* scsi.c 1.2
scsireg.h Include
Sat May 17 18:49:03 1997 Eric Youngdale <eric@andante.org>
* joliet.c 1.1
date and time created 97/05/17 17:49:03 by eric
Fri May 16 15:46:48 1997 Joerg Schilling <joerg@schily.isdn.cs.tu-berlin.de>
* config.h 1.1
* scsi.c 1.1
date and time created 97/05/16 14:46:48 by joerg
**************** Release 1.11 *******************
Thu Apr 10 06:46:21 1997 Eric Youngdale <eric@andante.org>
* RELEASE 1.19
* RELEASE 1.18
* mkisofs.8 1.15
Release 1.11
Thu Apr 10 06:43:02 1997 Eric Youngdale <eric@andante.org>
* write.c 1.16
Check for . and .. entries in dir
Thu Apr 10 06:41:49 1997 Eric Youngdale <eric@andante.org>
* tree.c 1.16
Strip off non-significant part of filename
/*--------------------------------------------------------------------------*/
The text below is not autogenerated from SCCS comments:
Wed Nov 5 10:46:29 1997 Andreas Buschmann US/EC4 60/1F/110 #40409 <buschman@lts.sel.alcatel.de>
Circumvent a bug in the SunOS / Solaris CD-ROM driver (and maybe HP/UX, too).
* mkisofs.8 (-S): Document switch.
* mkisofs.c (split_SL_field): new Variable, new switch -S.
* mkisofs.h (split_SL_field): new Variable.
* rock.c (generate_rock_ridge_attributes): only split SL field,
when split_SL_field is set.
Tue Jun 3 15:32:21 1997 Andreas Buschmann <buschman@lts.sel.alcatel.de>
Circumvent a bug in the SunOS CD-ROM driver (and maybee HP/UX, too).
* mkisofs.8 (-s): Document switch.
* mkisofs.c (split_SL_component): new Variable, new switch -s.
* mkisofs.h (split_SL_component): new Variable.
* rock.c (generate_rock_ridge_attributes): only split SL
components, when split_SL_component is set.
* defaults.h: Added SunOS string.
Wed Mar 19 16:50:17 1997 Fred Fish <fnf@ninemoons.com>
* Makefile.in (CFLAGS): Let configure set basic flags. Move
compilation option -c to actual CC commands.
(LDFLAGS): Let configure set basic flags.
(Makefile): Depends upon config.status, not configure.
Regenerate if necessary from Makefile.in using config.status.
(configure): Cd to srcdir before running autoconf.
* acconfig.h: New file to hold nonstandard entries used in
config.h.in. Used by autoheader to generate config.h.in.
* config.h.in: Regenerated with autoheader.
* configure.in: Check for existance of sbrk() function.
* configure: Regenerated with autoconf 2.12.
* fnmatch.c (FMN_FILE_NAME): Define if not already defined.
(FNM_LEADING_DIR): Ditto.
(FNM_CASEFOLD): Ditto.
* mkisofs.c (main): Only use sbrk() if system supports it.
Fri Mar 14 21:54:37 1997 Eric Youngdale <eric@andante.jic.com>
* Bump version number to 1.10, public release.
* Put entire thing under RCS. History is buried there now.
* Fix bug involving empty directories, translation tables and
malloc(0).
Mon Feb 17 12:44:03 1997 Eric Youngdale <eric@andante.jic.com>
* Bump version number to 1.10b7.
* Makefile.in, configure.in, config.in: Change to use GNU autoconf.
* Configure: Delete old configuration script.
* tree.c: Fix bug where we had a rename limit of 1000 files
instead of 0x1000.
* mkisofs.c: Fix sign of timezone offset. Linux iso filesystem
also need to be fixed, unfortunately.
Tue Dec 3 22:21:21 1996 Eric Youngdale <eric@sub2317.jic.com>
Fixed a couple of multi-session bugs. Discs now seem to
work on both Solaris and Windows-NT.
* Bump version number to 1.10b6.
Tue Dec 3 22:21:21 1996 Eric Youngdale <eric@sub2317.jic.com>
Multi-session stuff *almost* there. Discs seem to work
under Linux without any problem, but under DOS only
the first session is seen. The patch to write.c
inspired by disc written by Windows generated multi-session
disc, which will hopefully make the discs usable under
DOS as well.
* Bump version number to 1.10b5.
* write.c: use size of new session, not total of all sessions
in volume_space_size field.
* mkisofs.8: Update with current location of cdwrite.
Mon Nov 4 23:45:01 1996 Eric Youngdale <eric@sub2317.jic.com>
* Bump version number to 1.10b4.
* Add cdwrite.c.diff file, which provides a very crude, minimal
interface between mkisofs and cdwrite. It should be enough to
generate a multi-session disc, but it hasn't been tested yet.
Thu Oct 17 00:39:52 1996 Eric Youngdale <eric@sub2317.jic.com>
* Bump version number to 1.10b3.
Wed Oct 16 23:40:44 1996 Michael Fulbright <msf@redhat.com>
Add support for 'El Torito' specification which allows for bootable
cdroms.
* Makefile.in: Add eltorito.[c,o].
* defaults.h: Add default settings for El Torito related things.
* iso9660.h: Add structure definitions for El Torito.
* mkisofs.8: Document new options.
* mkisofs.c: Add support for new options related to El Torito.
* mkisofs.h: Add definitions, prototypes as required.
* tree.c: Add search_tree_file function to search for a specified
file.
* write.c: Add support for writing special records for El Torito.
* eltorito.c: New file.
Wed Oct 16 23:40:44 1996 Eric Youngdale <eric@sub2317.jic.com>
* rock.c: Fix bug whereby we made assumptions about how
dev_t was split into major/minor. Use major() and minor()
macros to do this for us, since each system should
do this correctly.
* write.c: Fix bug whereby abstract, copyright and appid
strings were not properly filled if application ID weren't
in use.
Sun Sep 29 10:05:10 1996 Eric Youngdale <eric@sub2317.jic.com>
* Bump version number to 1.10b2. Minor bug fixes here
and there.
Sun Sep 15 18:54:05 1996 Eric Youngdale <eric@sub2317.jic.com>
* Bump version number to 1.10b1. Major new functionality is
support for multi-session. Still a bit preliminary, but
most of the pieces are there now.
Wed Dec 20 16:44:44 1995 Eric Youngdale (eric@andante.aib.com)
* mkisofs.c, mkisofs.8, Makefile (version_string): Bump to 1.05.
* rock.c: Bugfix for cases where sizeof(int) == 4 and
sizeof(dev_t) > 4.
* rock.c: Bugfix for long symbolic links ('/' characters were
being dropped).
Patches from Peter Miller <pmiller@agso.gov.au>:
* mkisofs.8: Documentation fix (some versions of nroff don't
like '.' in column 1 if it is not a nroff command).
* mkisofs.c: Add support for 'rationalize' option.
Similar to rock ridge, except echos of development environment
are removed.
* write.c Status indicator now indicates percent finished, and
estimated time of completion.
Sun Feb 26 01:52:06 1995 Eric Youngdale (eric@largo)
* Add patches from Ross Biro to allow you to merge arbitrary
trees into the image. This is not compiled in by default but
you need to add -DADD_FILES when compiling.
Fri Feb 17 02:29:03 1995 Paul Eggert <eggert@twinsun.com>
* tree.c: Port to Solaris 2.4. Prefer <sys/mkdev.h> if
HASMKDEV. Cast unknown integer types to unsigned long and
print them with %lu or %lx.
Thu Jan 26 15:25:00 1995 H. Peter Anvin (hpa@yggdrasil.com)
* mkisofs.c: Substitute underscore for leading dot in non-Rock
Ridge filenames, since MS-DOS cannot read files whose names
begin with a period.
Mon Jan 16 18:31:41 1995 Eric Youngdale (eric@aib.com)
* rock.c (generate_rock_ridge_attributes): Only use ROOT
record for symlinks if we are at the start of the symlink.
Otherwise just generate an empty entry.
Mon Jan 16 16:19:50 1995 Eric Youngdale (eric@aib.com)
* diag/isodump.c: Use isonum_733 instead of trying to dereference
pointers when trying to decode 733 numbers in the iso9660 image.
* diag/isovfy.c: Likewise.
* write.c: Always assign an extent number, even for zero length
files. A zero length file with a NULL extent is apparently dropped
by many readers.
Wed Jan 11 13:46:50 1995 Eric Youngdale (eric@aib.com)
* mkisofs.c: Modify extension record to conform to IEEE P1282
specifications. This is commented out right now, but a trivial
change to a #define enables this. I need to see the specs
to see whether anything else changed before this becomes final.
* write.c (FDECL4): Fix so that we properly determine error
conditions.
* mkisofs.h: Change rr_attributes to unsigned.
* tree.c(increment_nlink): Change pnt since rr_attributes is now
unsigned.
Ultrix patches from petav@argon.e20.physik.tu-muenchen.de (Peter Averkamp)
* rock.c: Fix for ultrix systems, we have 64 bit device numbers.
Type cast when generating file size. Change rr_attributes to
unsigned.
* mkisofs.c: For ultrix systems, define our own function
for strdup.
* mkisofs.c: Fix usage() since some compilers do not concatenate
strings properly (i.e. ultrix).
Bugs found with Sentinel II:
* write.c: Fix a couple of memory leaks.
* mkisofs.c: Bugfix - always put a zero byte at end of name
for ".." entry.
* tree.c: Set isorec.date from fstatbuf.st_ctime, not current_time,
since current_time might not be set.
Sat Dec 3 14:55:42 1994 Eric Youngdale (eric@andante)
* mkisofs.c: When returning entry for ".." file, set second byte
to 0.
* write.c: Free name and rr_attributes fields when writing.
Mon Nov 28 13:36:27 1994 Eric Youngdale (eric@andante)
* mkisofs.h: Change rr_attributes to unsigned.
* rock.c: Ditto. Work around >>32 bug in ultrix for 64 bit data types.
* mkisofs.c (usage): Fix for ultrix - use continuation lines
instead of assuming that strings are catenated by the compiler.
Mon Jun 20 20:25:26 1994 Eric Youngdale (eric@esp22)
* mkisofs.c, mkisofs.8, Makefile (version_string): Bump to pre-1.02.
* mkisofs.h: Fix declaration of e_malloc to use DECL macros.
* tree.c: Fix bug in previous change.
* diag/*.c: Add appropriate copyright notices.
Sat Apr 9 13:30:46 1994 Eric Youngdale (ericy@cais.com)
* Configure: New file - shell script that determines a bunch of
things to properly build mkisofs.
* Makefile.in: New file - copy of Makefile, but Configure sets a
few things up for it.
* tree.c: Do not depend upon opendir to return NULL if we cannot
open a directory - actually try and read the first entry. The
foibles of NFS seem to require this.
* write.c: Fix definition of xfwrite (Use FDECL4)
Add some changes to allow more configurability of some of the
volume header fields:
* mkisofs.8: Document new configuration options.
* mkisofs.c: Add variables to hold new fields. Add function to
read .mkisofsrc files.
* defaults.h: Another way of configuring the same things.
Add some changes from Leo Weppelman leo@ahwau.ahold.nl.
* mkisofs.c: Allow -A to specify application ID. Fix usage(),
getopt and add case switch.
* rock.c: Fix handling of device numbers (dev_t high should only
be used when sizeof(dev_t) > 32 bits).
Add a bunch of changes from Manuel Bouyer.
* diag/Makefile: New file.
* diag/dump.c, diag/isodump.c: Use termios if system supports it.
* (throughout): Replace all occurences of "malloc" with e_malloc.
* mkisofs.c: For NetBSD, attempt to increase the rlimit for
the size of the data segment to about 33 Mb.
* mkisofs.c (e_malloc): New function. Calls malloc, and prints
nice error message and exits if NULL is returned.
Sun Jan 23 19:23:57 1994 Eric Youngdale (eric@esp22)
* mkisofs.c, mkisofs.8, Makefile (version_string): Bump to 1.01.
Add a bunch of stuff so that mkisofs will work on a VMS system.
* (ALL): Change any direct use of the "st_ino" field from
the statbuf to use a macro.
* mkisofs.h: Define appropriate macros for both VMS and unix.
* (ALL): Add type casts whenever we use the UNCACHED_DEV macro.
* rock.c: Wrap a #ifndef VMS around block and character device
stuff.
* write.c: Add prototype for strdup if VMS is defined.
* make.com: Script for building mkisofs on a VMS system.
* Makefile: Include make.com in the distribution.
* mkisofs.c: Include <sys/type.h> on VMS systems.
* tree.c: Include <sys/file.h> and "vms.h" on VMS systems.
* mkisofs.h (PATH_SEPARATOR, SPATH_SEPARATOR): New macros
that define the ascii character that separates the last directory
component from the filename.
* tree.c, mkisofs.c: Use them.
* vms.c: New file. Contains version of getopt, strdup, opendir,
readdir and closedir.
* vms.h: New file. Defines S_IS* macros. Define gmtime as
localtime, since gmtime under VMS returns NULL.
Sat Jan 15 13:57:42 1994 Eric Youngdale (eric@esp22)
* mkisofs.h (transparent_compression): New prototype.
* mkisofs.c (transparent_compression): Declare, use
'-z' option to turn on.
* tree.c: Change TRANS.TBL;1 to TRANS.TBL (version gets
added later, if required).
* rock.c: If transparent compression requested, verify
file is really suitable (check magic numbers), and extract
correct file length to store in SUSP record.
Sat Jan 15 01:57:42 1994 Eric Youngdale (eric@esp22)
* write.c (compare_dirs): Bugfix for patch from Jan 6.
* mkisofs.h (struct directory_entry): Add element total_rr_attr_size.
(struct file_hash): Add element ce_bytes.
* write.c (iso_write): Update last_extent_written, as required,
and check it against last_extent as a sanity check.
(generate_one_directory): If ce_bytes is non-zero, allocate
a buffer and fill it with the CE records. Also, update
the extent and offset entries in the CE SUSP field and
output after directory is written.
(assign_directory_addresses): Allow for CE sectors after each
directory.
* tree.c (sort_n_finish): Set field ce_bytes by summing
the sizes of all CE blocks in each files RR attributes.
Do not count these bytes for main directory.
* rock.c (generate_rock_ridge_attributes): Generate
CE entries to break up large records into manageable sizes.
Allow long names to be split, and allow long symlinks to be split.
Allow splitting before each SUSP field as well, to make
sure we do not screw outselves.
Thu Jan 6 21:47:43 1994 Eric Youngdale (eric@esp22)
Bugfix.
* write.c (compare_dirs): Only compare directory names up to
the ';' for the version number.
Add four new options: (1) Full 31 character filenames,
(2) Omit version number, (3) Omit trailing period from filenames,
(4) Skip deep directory relocation.
* iso9660.h: Allow 34 characters for filename.
* mkisofs.8: Update for new options.
* mkisofs.c: Add flag variables for new options.
Mention new options in usage(), tell getopt about
new options, and set appropriate flags when
new options are specified.
* mkisofs.c (iso9660_file_length): Implement new options.
* mkisofs.h: Declare flag variables for new options.
* tree.c (sort_n_finish): Increase declaration of newname and
rootname to 34 characters. If full_iso9660_filenames in effect,
use different rules for making unique names.
* tree.c (scan_directory_tree): Use RR_relocation_depth instead of
constant for threshold for starting deep directory relocation.
Wed Jan 5 01:32:34 1994 John Brezak (brezak@ch.hp.com)
* Makefile.bsd: New file. For NetBSD.
* rock.c, tree.c: Do not include sys/sysmacros.h for NetBSD.
Fri Dec 31 13:22:52 1993 Eric Youngdale (eric@esp22)
* mkisofs.c, mkisofs.8, Makefile (version_string): Bump to 1.00.
* tree.c (scan_directory_tree): Handle case where we do not
have permissions to open a directory.
* write.c (xfwrite): New function - wrapper for fwrite,
except that we print message and punt if write fails.
* write.c: Move include of mkisofs.h and iso9660.h until after
string.h and stdlib.h is included.
* write.c: Do not attempt to use strerror on sun systems.
Thu Dec 9 13:17:28 1993 R.-D. Marzusch (marzusch@odiehh.hanse.de)
* exclude.c, exclude.h: New files. Contains list of files to
exclude from consideration.
* Makefile: Compile exclude.c, add dependencies to other files.
* mkisofs.8: Describe -x option.
* mkisofs.c: Include exclude.h, handle -x option.
Fri Dec 10 01:07:43 1993 Peter van der Veen (peterv@qnx.com)
* mkisofs.c, mkisofs.h: Moved declaration of root_record.
* mkisofs.h: Added prototype for get_733().
* write.c(iso_write), tree.c, rock.c(generate_rock_ridge_attributes):
Added defines for QNX operation system
* rock.c(generate_rock_ridge_attributes): symbolic links should
not have CONTINUE component flag set unless there are multiple
component records, and mkisofs does not generate these.
st_ctime was stored as the creation time, changed to attribute time.
QNX has a creation time, so that is stored as well under QNX.
Thu Oct 28 19:54:38 1993 Eric Youngdale (eric@kafka)
* mkisofs.c, Makefile (version_string): Bump to 0.99.
* write.c(iso_write): Put hour, minute, second into date fields in
volume descriptor.
* write.c (iso_write): Set file_structure_version to 1, instead of
' ' (Seems to screw up Macs).
Sun Oct 17 01:13:36 1993 Eric Youngdale (eric@kafka)
* mkisofs.c, Makefile (version_string): Bump to 0.98.
Increment nlink in root directory when rr_moved directory is present.
* tree.c (increment_nlink): New function.
* tree.c (finish_cl_pl_entries): Call increment_nlink for all
references to the root directory.
* tree.c (root_statbuf): New variable.
* tree.c (scan_directory_tree): Initialize root_statbuf when we
stat the root directory.
* tree.c (generate_reloc_directory): Use root_statbuf when
generating the Rock Ridge stuff for the ".." entry in the
reloc_dir.
* tree.c (scan_directory_tree): Use root_statbuf when generating
the ".." entry in the root directory.
Sat Oct 16 10:28:30 1993 Eric Youngdale (eric@kafka)
Fix path tables so that they are sorted.
* tree.c (assign_directory_addresses): Move to write.c
* write.c (generate_path_tables): Create an array of pointers to
the individual directories, and sort it based upon the name and
the parent path table index. Then update all of the indexes and
repeat the sort until the path table indexes no longer need to be
changed, and then write the path table.
Fix problem where hard links were throwing off the total extent count.
* write.c (iso_write): Call assign_file_addresses, and then
use last_extent to determine how big the volume is.
* write.c (generate_one_directory): Decrement n_data_extents
for hard links to non-directories so that the expected number
of extents is written correctly.
* write.c(assign_file_addresses): New function.
Fri Oct 15 22:35:43 1993 Eric Youngdale (eric@kafka)
The standard says we should do these things:
* tree.c (generate_reloc_directory): Add RR attributes to
the rr_moved directory.
* mkisofs.c(main): Change ER text strings back to recommended
values.
Tue Oct 12 21:07:38 1993 Eric Youngdale (eric@kafka)
* mkisofs.c, Makefile (version_string): Bump to 0.97.
* tree.c (scan_directory_tree): Do not insert PL entry into
root directory record (i.e. !parent)
* tree.c (finish_cl_pl_entries): Do not rely upon name
comparison to locate parent - use d_entry->self instead,
which is guaranteed to be correct.
* mkisofs.h: New variable n_data_extents.
* tree.c: Declare and initialize n_data_extents to 0.
(scan_directory_tree) for non-directories, add
ROUND_UP(statbuf.st_size) to n_data_extents.
(sort_n_finish): Increment n_data_extents for translation tables,
as appropriate.
* write.c(iso_write): Add n_data_extents to the
volume_space_size field.
* hash.c(add_hash): If size != 0 and extent == 0, or
if size == 0 and extent != 0, then complain about
inserting this into the hash table. Kind of a sanity check.
Sat Oct 9 16:39:15 1993 Eric Youngdale (eric@kafka)
* mkisofs.c, Makefile (version_string): Bump to 0.96.
Numerous bugfixes, thanks to a one-off disc from rab@cdrom.com.
* write.c(generate_one_directory): Wait until after we have
filled in the starting_extent field to s_entry before calling
add_hash. This fixes a problem where the hash table gets an
extent of 0 for all regular files, and this turns up when you have
hard links on the disc. (The hash table allows us to have each
hard link point to the same extent on the cdrom, thereby saving
some space).
* tree.c(scan_directory_tree): Set statbuf.st_dev and
statbuf.st_ino to the UNCACHED numbers for symlinks that we
are not following. This prevents the function find_hash from
returning an inode that cooresponds to the file the symlink points
to, which in turn prevents generate_one_directory from filling in
a bogus file length (should be zero for symlinks).
* tree.c(scan_directory_tree): Always call lstat for the file
so that non-RockRidge discs get correct treatment of symlinks.
Improve error message when we ignore a symlink on a non-RR disc.
* write.c(generate_one_directory): Set fields for starting_extent
and size in the "." and ".." entries before we add them to the
file hash. Fixes problems with incorrect backlinks for second
level directories.
Wed Oct 6 19:53:40 1993 Eric Youngdale (eric@kafka)
* write.c (write_one_file): Print message and punt if we are
unable to open the file.
* tree.c(scan_directory_tree): For regular files, use the access
function to verify that the file is readable in the first place.
If not, issue a warning and skip it. For directories, it probably
does not matter, since we would not be able to descend into them
in the first place.
Wed Sep 29 00:02:47 1993 Eric Youngdale (eric@kafka)
* mkisofs.c, Makefile (version_string): Bump to 0.95.
* write.c, tree.c: Cosmetic changes to printed information.
* tree.c(scan_directory_tree): Set size to zero for
special stub entries that correspond to the
relocated directories. Hopefully last big bug.
* mkisofs.h: Change TABLE_INODE, UNCACHED_* macros
to be 0x7fff... to be compatible with signed datatypes.
Mon Sep 27 20:14:49 1993 Eric Youngdale (eric@kafka)
* mkisofs.c, Makefile (version_string): Bump to 0.94.
* write.c (write_path_tables): Actually search the
directory for the matching entry in case we renamed
the directory because of a name conflict.
* tree.c(scan_directory_tree): Take directory_entry pointer
as second argument so that we can create a backpointer
in the directory structure that points back to the original
dir.
* mkisofs.c: Fix call to scan_directory_tree to use new calling
sequence.
* write.c(generate_one_directory): Punt if the last_extent counter
ever exceeds 700Mb/2048. Print name of responsible file,
extent counter, and starting extent. Perhaps we can catch it in
the act.
Sun Sep 26 20:58:05 1993 Eric Youngdale (eric@kafka)
* mkisofs.c, Makefile (version_string): Bump to 0.93.
* tree.c(scan_directory_tree): Handle symlinks better. Either
leave them as symlinks, or erase any trace that they were a
symlink but do not do it 1/2 way as before. Also, watch for
directory loops created with symlinks.
* mkisofs.h: Add new flag follow_links.
* mkisofs.c: Add command line switch "-f" to toggle follow_links.
* mkisofs.8: Document new switch.
* tree.c: Add code to handle symlinks using new flag.
* hash.c: Add add_directory_hash, find_directory_hash functions.
* mkisofs.h: Add prototypes.
Sat Sep 25 14:26:31 1993 Eric Youngdale (eric@kafka)
* mkisofs.c, Makefile (version_string): Bump to 0.92.
* mkisofs.c: Make sure path is an actual directory before trying
to scan it.
* mkisofs.h: Add DECL and FDECL? macros for sparc like systems.
Do proper define of optind and optarg under SVr4.
* tree.c: Change translation table name from YMTRANS.TBL to TRANS.TBL.
* mkisofs.c: Neaten up message in extension record when RRIP is
in use.
* Throughout - change all function declarations so that
traditional C compilers (i.e. sparc) will work.
* Makefile: Change to use system default C compiler.
* mkisofs.c: Add some stuff so that this will compile under VMS.
Many things missing for VMS still.
* iso9660.h: Do not use zero length array in struct definition.
* tree.c (sort_n_finish): Account for this.
* Change copyright notice.
Wed Aug 25 08:06:51 1993 Eric Youngdale (eric@kafka)
* mkisofs.c, Makefile (version_string): Bump to 0.91.
* mkisofs.h: Only include sys/dir.h for linux. Other systems
will need other things.
* mkisofs.c, tree.c: Include unistd.h.
* Makefile: Use OBJS to define list of object files.
Sun Aug 22 20:55:17 1993 Eric Youngdale (eric@kafka)
* mkisofs.c, Makefile (version_string): Bump to 0.9.
* write.c (iso_7*): Fix so that they work properly on Motorola
systems.
Fri Aug 20 00:14:36 1993 Eric Youngdale (eric@kafka)
* mkisofs.c, Makefile (version_string): Bump to 0.8.
* rock.c: Do not mask off write permissions from posix file modes.
Wed Aug 18 09:02:12 1993 Eric Youngdale (eric@kafka)
* mkisofs.c, Makefile (version_string): Bump to 0.7.
* rock.c: Do not write NM field for . and .. (redundant and a
waste of space).
* mkisofs.c: Take -P and -p options for publisher and preparer id
fields.
* write.c: Store publisher and preparer id in volume
descriptor.
* rock.c: Write optional SP field to identify SUSP. Write
optional CE field to point to the extension header.
* tree.c: Request SP and CE fields be added to root directory.
* tree.c: Fix bug in name conflict resolution.
* write.c: Fill in date fields in the colume descriptor.
* write.c (write_one_file): If the file is large enough, write in
chunks of 16 sectors to improve performance.
* hash.c (add_hash, find_hash, etc): Do not hash s_entry, instead
store relevant info in hash structure (we free s_entry structs as
we write files, and we need to have access to the hash table the
whole way through.
* write.c: Add a few statistics about directory sizes, RR sizes,
translation table sizes, etc.
* tree.c: Use major, not MAJOR. Same for minor. Define S_ISSOCK
and S_ISLNK if not defined.
* rock.c: Define S_ISLNK if not defined.
* mkisofs.c: Print out max memory usage. Fix bug in call to getopt.
* mkisofs.c, Makefile (version_string): Bump to 0.6.
* tree.c: Simplify the calculation of isorec.len, isorec.name_len
and the calculation of the path table sizes by doing it all at
one point after conflict resolution is done.
* tree.c: scan_directory_tree is now responsible for generating
the line that goes into the YMTRANS.TBL file. These lines are
collected later on into something that will be dumped to the
file. Correctly handle all of the special file types.
Mon Aug 16 21:59:47 1993 Eric Youngdale (eric@kafka)
* mkisofs.c, Makefile (version_string): Bump to 0.5.
* mkisofs.c: Add -a option (to force all files to be
transferred). Remove find_file_hash stuff.
* write.c: Pad length even if Rock Ridge is not in use.
* hash.c: Rewrite hash_file_* stuff so that it can be used to
easily detect (and look up) filenames that have been accepted
for use in this directory. Used for name collision detection.
* tree.c (sort_n_finish): If two names collide, generate a unique
one (verified with the hash routines). Change the lower priority
name if there is a difference.
Sat Aug 14 13:18:21 1993 Eric Youngdale (eric@kafka)
* mkisofs.c, Makefile (version_string): Bump to 0.4.
* tree.c (load_translation_table): New function - read
YMTRANS.TBL. (scan_directory_tree) Call it.
* mkisofs.c (iso9660_file_length): Call find_file_hash to see
if translated name is specified. If so, use it.
* hash.c (name_hash, add_file_hash, find_file_hash,
flush_file_hash): New functions for hashing stuff from
YMTRANS.TBL.
* mkisofs.h: Add a bunch of prototypes for the new functions.
* mkisofs.8: Update.
* mkisofs.c, Makefile (version_string): Bump to 0.3.
* Makefile: Add version number to tar file in dist target.
* mkisofs.c: Call finish_cl_pl_entries() after directories have
been generated, and extent numbers assigned.
* write.c (generate_one_directory): Update s_entry->size for
directories (as well as isorec.size).
* rock.c: Add code to generate CL, PL, and RE entries. The
extent numbers for the CL and PL entries are NULL, and these
are filled in later once we know where they actually belong.
* mkisofs.h: Add parent_rec to directory_entry. Used to fix CL/PL
stuff.
* tree.c (scan_directory_tree): Set flag to generate CL/PL/RE
entries as required, update sizes as well.
Fri Aug 13 19:49:30 1993 Eric Youngdale (eric@kafka)
* mkisofs.c (version_string): Bump to 0.2.
* hash.c: Do not use entries with inode == 0xffffffff or dev ==
0xffff.
* write.c (write_path_tables): Strip leading directory specifications.
* mkisofs.h: Add definition for reloc_dir symbol. Add prototype
for sort_n_finish, add third parameter to scan_directory_tree
(for true parent, when directories are relocated).
* mkisofs.c (main): Modify call to scan_directory_tree. Call
sort_n_finish for reloc_dir.
* tree.c (sort_n_finish): New function - moved code from
scan_directory_tree.
* tree.c (generate_reloc_directory): New function. Generate
directory to hold relocated directories.
* tree.c (scan_directory_tree): Strip leading directories when
generating this_dir->name. If depth is too great, then move
directory to reloc_dir (creating if it does not exist, and leave
a dummy (non-directory) entry in the regular directory so that
we can eventually add the required Rock Ridge record.
* tree.c (scan_directory_tree): Use s_entry instead of sort_dir,
assign to this_dir->contents sooner.
Thu Aug 12 22:38:17 1993 Eric Youngdale (eric@kafka)
* mkisofs.c (usage): Fix syntax.
* mkisofs.c (main): Add new argument to scan_directory_tree
* tree.c (scan_directory_tree): If directory is at depth 8 or
more, create rr_moved directory in main directory.
Mon Jul 26 19:45:47 1993 Eric Youngdale (eric@kafka)
* mkisofs v 0.1 released.
|