summaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: 3eb7aa320ef59f2221e7e1c7da289ec2be6822a9 (plain)
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
2007-05-04  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* apply_patch_series.sh: removed debug 
	* apply_patch_series.sh: be a bit more sane, don't fail on
	existing patches subdirs or series files
	
	* rules/pre/Rules.make: set PKG_CONFIG_PATH to nix, in HOST ENV
	prevent host stuff leak into our own stuff

2007-05-04  Juergen Beisert <j.beisert@pengutronix.de>

	* alsa-utils: consider new alsa-lib menu entries
	* alsa-lib: adding more menu entries and help for more specific
	configuration
	* utelnetd.make: Using correct packet name for user's startup script
	* u-boot.in: some help added

2007-05-04  Sascha Hauer <s.hauer@pengutronix.de>

	* kernel: do not use kernel-patches-target and
	kernel-patches-native anymore. The kernel patches are now placed
	under patches/linux-version like for every other package

	* ptxdist: check a ptxdist version against a configfile version.

	- The ptxdist major version has to be equal to the configfile major version
	- The ptxdist minor version has to be equal to the configfile minor version
	- The ptxdist micro version has to greater than or equal to the configfile
	  micro version
	- If the configfile has no minor or micro version stop here and assume
	  everything is ok (this means 'can build with 0.10.x or 0.x').
	- If the ptxdist minor or micro version is "svn" then no further checks are
	  done. You know what you are doing when you use svn, don't you?

	* ptxdist: use quilt to apply patch stacks if we have it
	* setterm: add setterm installation option

2007-04-26  Robert Schwebel <r.schwebel@pengutronix.de>

	* overall: removed some obsolete files

2007-04-26  Sascha Hauer <s.hauer@pengutronix.de>

	* u-boot: add some help text

2007-04-26  Robert Schwebel <r.schwebel@pengutronix.de>

	* iptables: typo in lib name

	* busybox: revert BB_ vs. BB_CONFIG_ change which comes due to
	the fact that busybox uses a new kconfig. This patch makes it
	possible to migrate old configurations in a sane time again ...

2007-04-20  Sascha Hauer <s.hauer@pengutronix.de>
	
	* gdbserver: fixed get stage. We need to depend on gdb.get here
	too, because otherwise, when gdbserver is selected but not gdb,
	ptxdist will try to do a gdb.extract without doing gdb.get
	beforehand

2007-04-23  Robert Schwebel <r.schwebel@pengutronix.de>

	* sqlite: version bump

2007-04-23  Bjoern Buerger <b.buerger@pengutronix.de>

	* projects directory is not mandatory anymore

2007-04-20  Sascha Hauer <s.hauer@pengutronix.de>

	* busybox: add patch for stty

2007-04-18  Robert Schwebel <r.schwebel@pengutronix.de>

	* mgetty: fixed URL; patch by Juergen Kilb
	* pcre: fixed URL; patch by Juergen Kilb
	* rsync: fixed URL; patch by Juergen Kilb

2007-04-18  Ladislav Michl <ladis@linux-mips.org>

	* zip: added
	* busybox: version bump to 1.4.2

2007-04-16  Sascha Hauer <s.hauer@pengutronix.de>

	* tslib: version bump to 0.0.3
	* udev: add basic rules
	* libusb: added
	* usbutils: added

2007-04-16  Bjoern Buerger <b.buerger@pengutronix.de>

	* ptxdist: changed default theme of ptxdist hotkeys are now
	highlighted _bold_ black / _bold_ white
	* ptxdist: changed menu title

2007-04-12  Luotao Fu <l.fu@pengutronix.de>

	* fuse: added
	* iptables: version update, needed for kernel later than 2.6.19

2007-04-11  Juergen Beisert <j.beisert@pengutronix.de>

	* samba: added issues to TODO file

2007-04-10  Juergen Beisert <j.beisert@pengutronix.de>

	* u-boot: do not build u-boot as default it makes no sense for
	x86 targets

2007-04-10  Bjoern Buerger <b.buerger@pengutronix.de>

	* chrony: several fixes and additions

2007-04-05  Sascha Hauer <s.hauer@pengutronix.de>

	* u-boot: addded u-boot support

2007-04-05  Ladislav Michl <ladis@linux-mips.org>

	* glib: Fix glib targetinstall. Patch by Manfred Gruber.
	* init: Copy user defined init script from correct location.
	Patch by Jari Takkala.

2007-04-05  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* freetype-2.1.10:
	delete unused patches
	* procps-2.0.16:
	delete unused patches
	* xorg-server-X11R7.0-1.0.1:
	delete ununsed patches
	* libX11-X11R7.0-1.0.0, libXt-X11R7.0-1.0.0:
	delete unused patches
	* crosstool-0.32, crosstool-0.38:
	delete ununsed patches

2007-04-04  Ladislav Michl <ladis@linux-mips.org>

	* openssh: Fix openssh startup script installation. Patch by
	Manfred Gruber <m.gruber@tirol.com>

2007-03-27  Robert Schwebel <r.schwebel@pengutronix.de>

	* glib: updated to 2.12.9
	* sqlite: Version 3.2.8 is no longer at the sqlite.org URL so
	downloading was broken. Here's a small patch to support building
	the latest release... Patch by Randall Loomis.

2007-03-19  Robert Schwebel <r.schwebel@pengutronix.de>

	* php4: removed
	* php5: compiles in minimal config now
	* xerces: fix sysroot problem
	* fbtest: add patch to use -O2 instead of -O3; works around a
	compiler issue
	* xli: added

2007-03-16  Bjoern Buerger <b.buerger@pengutronix.de>
	
	* xterm: source vanished. upgraded to 224

2007-03-13  Bjoern Buerger <b.buerger@pengutronix.de>

	* apache2: minor documentation fix
	* chrony: added chrony default config, tools, menu entries
	* rootfs: reordered entries in accordance to rc.d default start
	order
	* rootfs: removed duplicate dependency

2007-03-13  Juergen Beisert <j.beisert@pengutronix.de>

	* TODO: ptxdist should return valid return value

2007-03-11  Robert Schwebel <r.schwebel@pengutronix.de>

	* TODO: more issues
	* init: this may avoid the 'cp -a /dev/{console,null}' hackery
	  with root permissions

2007-03-11  Juergen Beisert <j.beisert@pengutronix.de>
	
	* busybox: adding some notes about failing install stages
	 - do not leave symbol BB_PREFIX empty
	 - could be accidentally happen when migrating from older ptxdist releases
	   (and reconfigure the whole busybox again)
	 - gives curious error messages then

2007-03-10  Robert Schwebel <r.schwebel@pengutronix.de>

	* gettext: use generic macro instead of handmade stuff
	* qt-embedded: added patches for casts which lose precision

2007-03-09  Robert Schwebel <r.schwebel@pengutronix.de>

	* COMPILE-TEST: removed because it is obsolete
	* SPECIFICATION: removed (also obsolete)
	* TOOLCHAINS: removed (also obsolete)
	* pending_patches: removed
	* configure: add check for g++ (it is needed...)

2007-03-09  Ladislav Michl <ladis@linux-mips.org>

	* busybox: Upgrade to busybox-1.4.1
	* udev: upgrade to udev-106
	* utelnet: Install startup link only if startup script is
	installed.
	* apache2: fix module instalation.

2007-03-09  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* pkg-config-wrapper: fixed

2007-03-09  Juergen Beisert <j.beisert@pengutronix.de>

	* TODO: adding generic project path issue
	* TODO: PKG_CONFIG_PATH leaks into PTXdist

2007-03-08  Ladislav Michl <ladis@linux-mips.org>

	* openssh: remove duplicate startup link instalation.

2007-03-08  Juergen Beisert <j.beisert@pengutronix.de>

	* mc.in: Using correct default symbol for MMI preference

2007-03-07  Juergen Beisert <j.beisert@pengutronix.de>

	* zlib.make: Issue solved

2007-03-07  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* zlib.make:
	fixed zlibs version numbers (to 1.2.3 again)

2007-03-07  Juergen Beisert <j.beisert@pengutronix.de>

	* fakeroot: issue solved
	* TODO: new issues added about broken or useless features

2007-03-06  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* fakeroot: update to 1.5.10 for fixing the glibc-2.5 issues
	with *at syscalls
	* fakeroot: added patches for glibc-2.5

2007-03-02  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* bin/ptxdist:
	check_dirs_prefix():
	removed superflous {} when creating dirs
	thanks to lowlander for spotting this

2007-03-01  Sascha Hauer <s.hauer@pengutronix.de>

	* powerpc: add device tree compiler and oftree support

2007-02-28  Juergen Beisert <j.beisert@pengutronix.de>

	* rootfs.make: correct path for user defined rcS script
	* rootfs.make/rootfs_init_d_files.in: Install rcS script from
	selectable source
	* rcS: conflict removed
	 - no more lo device initialisation in rcS
	 - lo initialisation is done in the network script only

2007-02-28  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>
	
	* module-init-tools.make: don't build documentation
	* TODO: added remark for jffs2 images

2007-02-27  Juergen Beisert <j.beisert@pengutronix.de>

	* thttpd: adding open issue to the TODO list - fixing error
	message, when the service is not running and should be stopped
	* TODO: switching images should not rebuild the whole project

2007-02-26  Juergen Beisert <j.beisert@pengutronix.de>

	* TODO: hd images via ipkg

2007-02-20  Luotao Fu <l.fu@pengutronix.de>

	* initng: fixed depencencies
	* nfsutils: fixed make install failure while not target
	installing statd

2007-02-15  Luotao Fu <l.fu@pengutronix.de>

	* host-pelts: version bump

2007-02-12  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>
	
	* busybox.make: added parallelmflags
	* host-glib.make: regenerated makefile
	* alsa-lib.make, glib.make: removed --libdir hack
	* pre/Rules.make: fixup .la files before "make install"

2007-02-11  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* rules/ncurses.make: grmpf: fixed targetinstall stage
	* rules/ncurses.make: version bump -> 5.6 PARALLELMFLAGS added,
	cause they are working now

2007-02-09  Luotao Fu <l.fu@pengutronix.de>

	* xorg-lib-X11: added missing generic xlocale file
	* xorg-lib-Xfont: fixed recursive dependencies
	* fonts: fonts installation now depends on xlib, so that it's no
	long chosen as default in empty projects
	* general: several dependency enhancements
	* alsa-lib: fixed libdir to run linker on 64bit host

2007-02-09  Sascha Hauer <s.hauer@pengutronix.de>

	* ncurses: remove PARALLELMFLAGS, doesn't build on 8 CPUs

2007-02-08  Luotao Fu <l.fu@pengutronix.de>

	* configure: fixed malformed regexp in configure.ac

2007-02-07  Ladislav Michl <ladis@linux-mips.org>

	* patches: remove obsolete patches for linux-2.4.21,
	modutils-2.4.27 and uClibc-0.9.26.

2007-02-07  Luotao Fu <l.fu@pengutronix.de>

	* glib: fixed targetoveriding and removed unnecessary get
	* TODO: updates
	* configure: added checking for localedef on host machine with
	belocs locales bin package

2007-02-06  Luotao Fu <l.fu@pengutronix.de>

	* alsa-lib: linking explicitly from sysroot
	* xorg-app-xinit: fixed libdir bug
	* glibc: fixed gconv bug

2007-02-05  Juergen Beisert <j.beisert@pengutronix.de>

	* kernel: extract stage seems to touch kernel configuration

2007-02-02  Luotao Fu <l.fu@pengutronix.de>

	* font-alias: patch for variable fonts problems
	* glib: define libdir to prevent linking from /usr/lib
	* glib: added glib hosttool to enable crosscompiling on machines
	without glib-genmarshal

2007-02-01  Juergen Beisert <j.beisert@pengutronix.de>

	* openntpd: configure file added (on demand)

2007-01-31  Juergen Beisert <j.beisert@pengutronix.de>

	* to be removed: documentation

2007-01-30  Juergen Beisert <j.beisert@pengutronix.de>

	* memedit: Requires readline with ncurses
	* readline: adding termcap or ncurses to be used - configure
	does not do the right thing yet. If termcap and ncurses is found
	it selects termcap even if --with-curses was given
	* TODO: added more future work
	* Toplevel.make: fix path and wrong tool to create a uboot multi
	image; patch by Steven Scholz modified and applied
	* cyclictest: dependency to librt added; patch from Steven
	Scholz
	* ipkg: Configure file makes no sense without the ipkg binary;
	dependency fixed
	* ipkg config: dependencies fixed; patch by Steven Scholz

2007-01-29  Juergen Beisert <j.beisert@pengutronix.de>

	* TODO: add notes for next release

2007-01-28  Robert Schwebel <r.schwebel@pengutronix.de>

	* trunk: backports from 0.10.6-branch

2007-01-28  Robert Schwebel <r.schwebel@pengutronix.de>

	* release: released 0.10.6

2007-01-28  Robert Schwebel <r.schwebel@pengutronix.de>

	* php5: fix URL; marked broken (doens't find libxml2)
	* bridgeutils: marked broken
	* scripts: added changelog script
	* toplevel: updated ChangeLog
	* credits: ladis somehow got lost, sorry about that
	* ptxdist: version bump
	* ptxdist: open branch for ptxdist-0.10.6 release

2007-01-26  Robert Schwebel <r.schwebel@pengutronix.de>

	* ptxdist: version bump
	* ptxdist: open branch for ptxdist-0.10.6 release
	* host-modutils: removed, we don't support 2.4 any more (at
	  least not officially)
	* host-util-linux: install stage forgot to touch target
	* ltrace: marked broken, doesn't compile
	* kaffe: marked broken - doesn't compile
	* libxml2: iconv support is broken
	* ntp: marked broken (doesn't compile)
	* ntp: fixed URL

2007-01-26  Juergen Beisert <j.beisert@pengutronix.de>

	* grub: use standard menu size

2007-01-26  Robert Schwebel <r.schwebel@pengutronix.de>

	* oprofile: marked broken (doesn't compile)

2007-01-26  Luotao Fu <l.fu@pengutronix.de>

	* samba: fixed lock directory (thx to mkl)

2007-01-26  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* ncurses.make: use SYSROOT instead of $(PTXCONF_PREFIX)/$(PTXCONF_GNU_TARGET)

2007-01-26  Robert Schwebel <r.schwebel@pengutronix.de>

	* host-slirp: mark broken; it does not compile
	* mico: does not compile, tries to call "ldconfig", which is not
	  available if you are not root. So we mark it to be broken for
	  now.
	* checkinstall:
	  remove checkinstall mechanism; it does not work,
	  the concept is not even finished, so we kick it out for now.

2007-01-26  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* scripts/libptxdist.sh:
	  unbreak ptxd_get_ptxconf

2007-01-26  Robert Schwebel <r.schwebel@pengutronix.de>

	* openafs: is broken, so mark it accordingly

2007-01-26  Juergen Beisert <j.beisert@pengutronix.de>

	* termcap: adding help and install termcap datafile as default
	  - termcap is a static library only, but requires the termcap
	  datafile at runtime
	* mysql: fix dependency to termcap
	  - mysql can use ncurses or termcap
	  - adding choice to the user

2007-01-26  Robert Schwebel <r.schwebel@pengutronix.de>

	* libc.in: use standard menu size
	* libiconv: use standard menu size
	* locales.in: use standard menu size
	* kernel.in: use standard menu size
	* gcclibs: use standard menu size

2007-01-26  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* scripts/install_copy_toolchain.sh, rules/pre/Rules.make:
	  This patch updates install_copy_toolchain_dl to current copy
	  toolchain mechanism. As a side effect
	  install_copy_toolchain_dl works again for Ladis uClibc based
	  toolchain.  Thanks to Ladis for this patch

2007-01-26  Robert Schwebel <r.schwebel@pengutronix.de>

	* live555: mark as broken

2007-01-26  Luotao Fu <l.fu@pengutronix.de>

	* samba: bugfix
	* rootfs_rc_d_links.in: added samba rc link
	* samba: default configuration file and startup script for samba

2007-01-26  Juergen Beisert <j.beisert@pengutronix.de>

	* termcap/ncurses: exclude termcap when ncurses is enabled
	* termcap.in: adding help

2007-01-26  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* ptxdist: only remove prefix* if it's in the workspace

2007-01-26  Robert Schwebel <r.schwebel@pengutronix.de>

	* host-cramfs: add dependency to zlib
	* cramfs: make it a hosttool (it was one, but broken)

2007-01-26  Sascha Hauer <s.hauer@pengutronix.de>

	* ptxdist: add test help

2007-01-26  Robert Schwebel <r.schwebel@pengutronix.de>

	* rules/host-mkelfImage.in, rules/host-mkelfImage.make:
	  fixed building
	* series:
	  generic/ldflags-cppflags-fix.diff, generic/series:
	  add patch to provide external CPP and LDFLAGS

2007-01-26  Sascha Hauer <s.hauer@pengutronix.de>

	* libptxdist.sh: add ptxd_human_to_number function
	* fbtest.in: fixed

2007-01-25  Robert Schwebel <r.schwebel@pengutronix.de>

	* Rules.make: * Rules.make: documentation fix

2007-01-25  Juergen Beisert <j.beisert@pengutronix.de>

	* TODO: some more entries are solved
	* rootfs:
	  udhcpc script now gets installed as selected in the menu
	  - installs the script from selectable source
	  - some notes and help added
	* syslogng: patch by Manfred Gruber added
	  - using correct source path for user defined config file

2007-01-25  Sascha Hauer <s.hauer@pengutronix.de>

	* rootfs_configfiles.in: make PS1, PS2 and PS4 hardwired. We had
	  too much hassle with eight backslashes in the config files

2007-01-24  Juergen Beisert <j.beisert@pengutronix.de>

	* TODO: adding note about uRamdisk
	* ncurses: handling of non wide char and wide char libs changed
	  - non wide char: Nothing changed
	  - wide char: Wide char libs are generated only and all other
	    programs that request for non wide char are forced to link
	    against the wide char libs
	  - for external built programs a non wide named link to the
	    wide char libs are generated on demand
	* nano: finds the correct ncurses libs with the new ncursrs mechanism
	* hexedit: remove additional LDFLAGS, it fails with the new ncurses mechanism
	* pureftpd: Support inetd start
	* mc: using ncurses or slang on demand
	* mc: using ncurses or slang on demand
	* ncurses.in: adding menudocu to ncurses

2007-01-24  Robert Schwebel <r.schwebel@pengutronix.de>

	* TODO: updates
	* pure-ftpd: fix autotool rerun
	* libxslt: avoid autotools rerun
	* util-linux: avoid autotool rebuilding
	* extract stage: fix relative file:// urls

2007-01-24  Juergen Beisert <j.beisert@pengutronix.de>

	* AppleWM.make: fixing package name because ipkg reject the
	  previous one 
	* TODO: adding uRamdisk note

2007-01-24  Robert Schwebel <r.schwebel@pengutronix.de>

	* Rules.make: extract stage: remove duplicate file URL test
	* Rules.make: extract stage: check for project-local packet directory
	  _before_ we test if PACKET is empty; local directories don't
	  have FOOBAR_SOURCE defined, because it doesn't make sense.
	* dgen: add sanity check for workspace

2007-01-23  Luotao Fu <l.fu@pengutronix.de>

	* startx: now loads xinitrc from etc/X11/xinit *cross 
	  compiling with cross cpp

2007-01-21  Juergen Beisert <j.beisert@pengutronix.de>

	* TODO: local sources - file://- are still doing strange things

2007-01-19  Robert Schwebel <r.schwebel@pengutronix.de>

	* ncurses: fix libraries targetinstall for wide char case
	* chrony.in: removed trailing whitespace
	* xorg-lib-oldX: change paket name to be correct according to
	  the ipkg naming rules.
	* Rules.make: bail out if ipkg packetizing breaks
	* mknbi: removed image options
	* host-mknbi: doesn't work anyway, thrown away. If somebody is
	  interested, please submit a working patch.
	* ptxdist: improve error message for non-existing ptxconfig files
	* libptxdist: source ptxconfig file only if it exists
	* ptxdist: test if ptxdist projects do really exist before
	  doing something with them.

2007-01-17  Ladislav Michl <>

	* uclibc.make: updates

2007-01-16  Juergen Beisert <j.beisert@pengutronix.de>

	* TODO: update

2007-01-15  lmi

	* module-init-tools-3.2.1: Remove
	  patches for obsolete module-init-tools version.

2007-01-15  Robert Schwebel <r.schwebel@pengutronix.de>

	* TODO: updates

2007-01-12  Juergen Beisert <j.beisert@pengutronix.de>

	* sdl: typo fixed
	* xorg-xdm: adding xinerama, when the server supports it

2007-01-12  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* xorg-dirs.make: use IPV6 and ipv6 to disable
	* xorg-font.in: select xorg-font menu per default

2007-01-12  Juergen Beisert <j.beisert@pengutronix.de>

	* TODO: updates

2007-01-12  Luotao Fu <l.fu@pengutronix.de>

	* xorg-server.in: fixed xorg dependency to libdl

2007-01-12  Robert Schwebel <r.schwebel@pengutronix.de>

	* TODO: updates
	* host-umkimage: needs host-zlib; let it find the right include
	  paths.
	* host-umkimage: added zlib dependency

2007-01-12  Juergen Beisert <j.beisert@pengutronix.de>

	* xorg-options.in: Extending help
	* TODO: updates

2007-01-12  Luotao Fu <l.fu@pengutronix.de>

	* xorg-options.in: added dependencies to prevent xorg options
	  selected by default y though no x present at all

2007-01-12  Juergen Beisert <j.beisert@pengutronix.de>

	* rootfs.make: typo fixed that confuses the bash
	* Rules.make: adding a note about CROSS_PATH

2007-01-12  Robert Schwebel <r.schwebel@pengutronix.de>

	* TODO: updates
	* fontconfig.in: removed trailing whitespace

2007-01-11  Juergen Beisert <j.beisert@pengutronix.de>

	* TODO: updates
	* ptxdist: expanding PATH to find local host side tools

2007-01-11  Robert Schwebel <r.schwebel@pengutronix.de>

	* php5: add more --without- workarounds
	* samba: doesn't work on the target yet, so mark as broken
	* php5: mark broken config options as broken
	* samba: added patches
	* mysql: added patches
	* TODO: updates

2007-01-11  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* libptxdist.sh: scripts/libptxdist.sh, bin/ptxdist: put
	  PTXCONF_HOST_PREFIX in path

2007-01-11  Juergen Beisert <j.beisert@pengutronix.de>

	* TODO: updates
	* nano.make: enabling wide char support (also utf8) now depends on
	  ncurses switches, due to autodetection does not work correctly
	  - if ncurses is configured for non-wide characters, also nano
	  is configured for non-utf8 support, otherwise it fails at runtime
	* ncurses: Correct wide char handling
	  - supporting wide chars (also utf8) is now a switch and will be
	  forwarded to configure
	  - correct installing the generated libraries for wide and non
	  wide char support, with additional links for backward compatibility
	* TODO: updates
	* passwd and group:
	  Define new users and groups to be used by some applications at
	  runtime
	  - passwd:
	    + adding user 'messagebus' for dbus with uid of 103
	    + adding user 'nobody' with uid 65534
	  - group:
	    + adding group 'messagebus' with gid 104
	    + adding group 'nogroup' with gid 65534

2007-01-11  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* xorg-lib-Xfont.make: use XORG_OPTIONS_TRANS
	* xorg-app-xdm.make: use XORG_OPTIONS_TRANS
	* xorg-options.in: trans-options: don't depend on ICE
	* xorg-server.make: use XORG_OPTIONS_TRANS
	* xorg-lib-Xfont.in: enable builtin fonts per default
	* fontconfig.in: install configs per default
	* xorg-dirs.make:
	  introduced centralised generation of XORG_OPTIONS_TRANS
	* xorg-lib-SM.make,
	  xorg-lib-Xmu.make, xorg-lib-X11.make, xorg-app-xhost.make,
	  xorg-lib-ICE.make:
	  used centralized XORG_OPTIONS_TRANS option
	* php5.make: removed commented out URL
	* xorg-lib-Xau.make: added PARALLELMFLAGS
	* xorg-lib-Xfontcache.make: add PARALLELMFLAGS
	* xorg-lib-*.make: added PRALLELMFLAGS
	* procps.make: do not install procps
	* zlib.make: fixed install_{copy,link} calls (tnx to lfu)

2007-01-11  Robert Schwebel <r.schwebel@pengutronix.de>

	* libdbus-c++: added patches
	* boost: added patches

2007-01-11  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* xorg-font, xorg-lib-Xfont.in:
	  select Xfont support depending on installed fonts
	* libpng.make: fix typo

2007-01-11  Juergen Beisert <j.beisert@pengutronix.de>

	* libpng: typo fixed; now it installs its config file in the correct path
	* libxslt: typo fixed; now it installs its config file into the correct path
	* libxml2: typo fixed - does now install its config file in the correct path

2007-01-11  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* zlib.make: fixed installed libraries

2007-01-11  Juergen Beisert <j.beisert@pengutronix.de>

	* glibc.in: adding some useful help

2007-01-11  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* configure.ac: fixed localedef version check

2007-01-10  lmi

	* uclibc.make: uClibc is shipped with
	  toolchain, so no need to source its config.

2007-01-10  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* configure.ac:
	  accept more glibc versions

2007-01-10  lmi

	* php5.make: No need to install php-config and phpize on host
	  now...

2007-01-10  Luotao Fu <l.fu@pengutronix.de>

	* make_locale.sh: cleaned debugging and obsolete stuffs
	* install_copy_toolchain.sh: cleared debugging stuffs
	* configure.ac: added recent version number to localedef version check

2007-01-09  Luotao Fu <l.fu@pengutronix.de>

	* Kconfig: cosmetic change
	* Kconfig: core menu hint text
	* locales.in: added default locale language
	* xorg-lib-X11.in: added dependency of xlocale to glibc locale

2007-01-09  Juergen Beisert <j.beisert@pengutronix.de>

	* syslog: startscript - adding stop argument
	  - the script now als can stop this service
	  - stopping is required in order to unmount /var/log when system
	  stops or is going to reboot

2007-01-09  Luotao Fu <l.fu@pengutronix.de>

	* configure.ac: typo fix
	* make_locale.sh: added locale generatio script
	* configure.ac: added localedef as requirement for ptxdist
	* install_copy_toolchain.sh: added locale configuration for 
	  target to ptxdist
	* glibc.make: added glibc i18n rawdata installation
	* libiconv.make: added language extension config parameter
	* glibc.in: change i18n rawdata installation, added new dependencies 
	  of locale utilities

2007-01-09  Juergen Beisert <j.beisert@pengutronix.de>

	* udev.make: first attempt to use the new udev system
	* procps.in: addding help text
	* TODO: updates
	* kernel.make: * kernel.make - typo fixed
	  - if no kernel patch series files is given
	  also no kernel-patches-target/ nor kernel-patches-native/
	  is required any more
	* rootfs:
	  remove generic /etc/resolv.conf
	  - there is no generic solution possible
	  - its useless in the presence of the generic /etc/nsswitch.conf
	  - its also useless if dns is activated (it does not what one
	    expects when one activates dns)
	  - help added, how to get a working dns
	* rootfs: remove /dev/pts creation
	  - this directory is useless since udev uses a ramfs in dev/
	  and creates its own pts/
	  - one who needs static device nodes does need its own creation
	  solution, due to ptxdist does not support it any longer

2007-01-08  Robert Schwebel <r.schwebel@pengutronix.de>

	* TODO: updates

2007-01-08  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* host-apache2: moved host-apache2 into hosttools
	* php4.make: * apache2.in, php4.make, php4.in:
	  fixed deps for php4
	* host-termcap.make: obsolete
	* host-apache2.make: cleaned up install
	* host-termcap.in: removed termcap, obsolete
	* generic/php-4.4.4-arm-cross.diff,
	  generic/scripts_add_sysroot.diff, generic/series:
	  sysroot support for php4-config scirpts
	* cross-gdb.make: removed obsolete
	* xorg-driver-video-fbdev.make: removed needless hacks
	* xorg-server.make: added PARALLELMFLAGS
	* xorg-server.in: fixed deps
	* procps.make: regenerated, get lost of PTXCONF_PREFIX
	* xorg-lib-X11.make: added PARALLELMFLAGS
	* xmlstarlet.in: menu cleanups
	* daemonize.in, gawk.in, gdbserver.in, gdbserver.in:
	  changed config -> menuconfig
	* xorg-lib-X11.in: fixed typo (hongkong -> taiwan)
	* scripts/install_copy_toolchain.sh:
	  added wildcard support

2007-01-06  Robert Schwebel <r.schwebel@pengutronix.de>

	* ipkg, dosfsutils, e2fsprogs: menue alignments fixed
	* php4: fixed menu structure
	* xerces, mysql: menu alignment fixed
	* libpv, libmodbus, gnuplot: fixed menu alignments
	* boost: menu fix
	* filesystem menu: reordered alphabetically
	* samba: added (but doesn't work yet)
	* mysql: added
	* fftw: added
	* xerces: added
	* libiconv: added
	* php5: added
	* boost: added
	* libdbus-cxx: put temporary revison on ptx server

2007-01-05  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* rules/xorg-font*.in: readded fu's font menu layout

2007-01-05  Luotao Fu <l.fu@pengutronix.de>

	* trunks/ptxdist-trunk/rules/xorg-font-adobe-100dpi.in,
	  trunks/ptxdist-trunk/rules/xorg-font-adobe-75dpi.in,
	  trunks/ptxdist-trunk/rules/xorg-font-bh-ttf.in,
	  trunks/ptxdist-trunk/rules/xorg-font-bitstream-type1.in: changed
	  default installation due to mkl's changes in font menu

2007-01-05  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* rules/xorg-fonts.make:
	  added targetinstall stage

2007-01-05  Juergen Beisert <j.beisert@pengutronix.de>

	* syslog-ng: Disabling broken features
	  - ipv4 only: Broken, ipv6 structures are used anyway
	  - sun streams: Broken, configure detecs missing headers, but they
	    are used anyway
	  - sun door: Broken, configure detecs missing headers, but they
	    are used anyway

2007-01-05  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* xorg-font*.in:
	  reintroduced menuconfig for fonts
	* mplayer.make: 
	  added missing PTXCONF to _all_ options
	* apache2.make:
	  added missing PTXCONF to option ROOTFS_HTTPD_USER_DOC
	* xorg-server.make:
	  added missing PTXCONF_PREFIX to option
	  PTXCONF_XORG_LIB_X11_XF86BIGFONT
	* fontconfig.in:
	  config -> menuconfig
	* xorg-font-ttf.in:
	  moved into scaleable
	* xorg-font*:
	  new font stuff

2007-01-05  Juergen Beisert <j.beisert@pengutronix.de>

	* hpanel: Change package's makefile for easier cross compiling
	  - uses make's built in rules
	  - does not strip the executable until installing
	  - uses pkg-config instead of fixed pathes to libraries
	    and header files
	* hpanel: CROSS_ENV added to let pkg_config find its local environment

2007-01-05  Robert Schwebel <r.schwebel@pengutronix.de>

	* fbutils: unbroke for gcc 4.2

2007-01-05  Juergen Beisert <j.beisert@pengutronix.de>

	* xorg-server.in: help added

2007-01-04  Juergen Beisert <j.beisert@pengutronix.de>

	* rootfs.make: typo fixed - telnetd is a nowait service for inetd
	* inetutils: tftpd
	  - cannot start standalone, removing all menu entries
	    that selects standalone startup
	  - always needs inetd to run
	* rootfs.make: typo fixed: tftp is of dgram type

2007-01-04  Robert Schwebel <r.schwebel@pengutronix.de>

	* mtd-utils: removed tools which are not in upstream any more
	* mtd-utils: remove install stage

2007-01-04  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* mtd-utils.make: added missing cpp and ldflags

2007-01-04  Luotao Fu <l.fu@pengutronix.de>

	* xorg-lib-X11.make: added chinese XLOCALE support
	* xorg-app.in: added xset

2007-01-04  Robert Schwebel <r.schwebel@pengutronix.de>

	* sdl_image: marked BROKEN
	* cyclictest: put patch stage into the right order
	* python24: fixed prefix for host-python, which is
	  PTXCONF_HOST_PREFIX now.
	* mkfontscale, mkfontdir: fixed targetinstall path
	* broken: removed obsolete files
	* ntp: comment cleanup
	* ltt: remove obsolete and broken old LTT

2007-01-04  Juergen Beisert <j.beisert@pengutronix.de>

	* TODO: update

2007-01-04  Robert Schwebel <r.schwebel@pengutronix.de>

	* font menu: fixed alignment

2007-01-03  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* scripts/dgen.sh, rules/pre/Virtual.make:
	  improved deps, host-pkg-config is now build as first
	* fontconfig.make:
	  use X default fontpath, fix install lib versions
	* xorg-server.make, pre/xorg-dirs.make:
	  moved XORG_ common path definitions into pre/xorg-dirs.make

2007-01-03  Juergen Beisert <j.beisert@pengutronix.de>

	* ptxdist: Simplify project specific files to integrate
	  - provide a simple rule template to add project specific
	    files into the build environment
	  - intended to be used for non auto generated files
	    (web pages etc.)
	  - "Adding files into the build" application note refers to
	    this feature

2007-01-03  Robert Schwebel <r.schwebel@pengutronix.de>

	* ptxdist: removed bogus ,

2007-01-03  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* freetype.make, fontconfig.make:
	* builds_unix_freetype-config_in_sysroot.diff:
	  fixed sysroot handling

2007-01-03  Robert Schwebel <r.schwebel@pengutronix.de>

	* ptxdist: please also clean ${PTXDIST_WORKSPACE}/local-host and
	  local-cross

2007-01-03  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* host-xorg-proto-bigreqs.make: fixed typo
	* fu will das so
	* *proto*.in: removed prompt
	* scripts/dgen.sh, rules/pre/Rules.make:
	  removed new .extract in packagedir rule

2007-01-03  Robert Schwebel <r.schwebel@pengutronix.de>

	* fontconfig: use pkg-config instead of freetype-config
	* freetype: remove double installation of freetype-config (which
	  we don't use any more, anyway, in favour of pkg-config)
	* freetype: update to freetype-2.2.1, fixed crosscompiling
	  issues

2007-01-03  Juergen Beisert <j.beisert@pengutronix.de>

	* rootfs.in: removing obsolete default n entry at /dev/pts

2007-01-02  Robert Schwebel <r.schwebel@pengutronix.de>

	* libdbus-cxx:
	  finally compiles; the only thing that's missing is a real release 
	  and a download URL.
	* libx11: add documentation for FIXMEs
	* host-libx11:
	  add hack to make it compile again
	* hosttools: added more hosttools

2007-01-02  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* rules/host-xorg-proto-xcmisc.make:
	  fixed type host-proto-xorg -> host-xorg-proto
	* rules/host-xorg-lib-fontenc.in,
	  rules/host-xorg-app-mkfontscale.in:
	  added missing deps

2007-01-02  Robert Schwebel <r.schwebel@pengutronix.de>

	* host-xorg-*: added more host tools
	* xorg-app-mkfontscale:
	  added, because host-xorg-app-mkfontscale needs it
	* pure-ftpd: add default config

2007-01-02  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* kaffe-1.1.7:
	  removed patches, highly experimental stuff

2007-01-02  Robert Schwebel <r.schwebel@pengutronix.de>

	* Toplevel.make:
	  hide command in 'touch' macro
	* ldd: added LDD_DIR - needed by dependency autogenerator
	* mtd utils: prompt changed
	* rootfs: added ROOTFS_DIR - necessary for dependency
	  autogenerator.
	* pureftpd: added generic config (without content yet)
	* zlib: fix library names for zlib-1.2.3-ptx1
	* TODO: update
	* zlib: revert version change, is not on server yet
	* gdbserver: added
	  GDBSERVER_DIR - needed for dependency generator.
	* glibc: add missing GLIBC_DIR - needed for dependency generator.
	* gcclibs: fix missing GCCLIBS_DIR - needed for dependency
	  generator.
	* removed trailing whitespace

2007-01-02  Juergen Beisert <j.beisert@pengutronix.de>

	* Kconfig: add template
	  as mentioned in the application note

2007-01-02  Robert Schwebel <r.schwebel@pengutronix.de>

	* hosttools.in: added host-pkg-config.in
	* zlib: -ptx2 is not on the server, use -ptx1 for now
	* host-pkg-config.in: added missing file

2007-01-02  Luotao Fu <l.fu@pengutronix.de>

	* xorg-font-intl.make: fixed makevars

2007-01-02  Robert Schwebel <r.schwebel@pengutronix.de>

	* fonts: normalized menues
	* cross-pkg-config-wrapper: fix paths. Merged from
	  branches/ptxdist-trunk-mkl by rsc.
	* hosttools.in: add new hosttools.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* Toplevel: take care of pre- and post files.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* ptxdist_vars: take care of pre- and post files.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* Namespaces
	* host-pkg-config: added Merged from 
	  branches/ptxdist-trunk-mkl by rsc.
	* dgen.sh: fixed dependency generation.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* Rules.make: fixed 'host' mechanisms.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* pkg-config-wrapper: use "right" pkg-config.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* host-fakeroot: cleanup.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* ptxdist: unified ptxconfig path; change newpacket method to
	  also work for existing targets; several cleanups.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* xorg-lib-xtrans: fixed duplicate slash.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* xorg-lib-xfont:
	  changed name (X -> x). Merged from
	  branches/ptxdist-trunk-mkl by rsc.
	* xorg-font-adobe-100dpi: fixed duplicate slash, added standard
	  install mechanism. Merged from branches/ptxdist-trunk-mkl by rsc.
	* templates: moved to fit the new 'class' scheme.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* template: add PARALLELMFLAGS.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* host-xorg-*:
	  Added several host tools for building the font
	  utilities. Merged from branches/ptxdist-trunk-mkl by rsc.
	* host-xorg-font-util: added.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* xorg-font-util:
	  removed duplicate slash.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* mkfontdir:
	  moved to xorg namespace for hosttools.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* ucstoany:
	  removed.  Merged from branches/ptxdist-trunk-mkl by rsc.
	* bdftopcf: Moved to xorg namespace for hosttools.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* mkfontscale: moved to xorg namespace.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* freetype: Add hosttool. Merged from branches/ptxdist-trunk-mkl
	  by rsc.
	* rules/xorg-font-adobe-75dpi.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-xfree86-type1.in: fixed dependency wrt.
	  utilities. Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-bh-100dpi.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-misc-cyrillic.in: fixed dependency wrt.
	  utilities. Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-adobe-utopia-75dpi.in: fixed dependency wrt.
	  utilities. Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-winitzki-cyrillic.in: fixed dependency wrt.
	  utilities. Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-bh-75dpi.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-sony-misc.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-schumacher-misc.in: fixed dependency wrt.
	  utilities. Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-misc-ethiopic.in: fixed dependency wrt.
	  utilities. Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-screen-cyrillic.in: fixed dependency wrt.
	  utilities. Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-misc-misc.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-micro-misc.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-bitstream-type1.in: fixed dependency wrt.
	  utilities. Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-util-alias.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-cursor-misc.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-adobe-100dpi.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-daewoo-misc.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-adobe-utopia-100dpi.in: fixed dependency wrt.
	  utilities. Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-isas-misc.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-ibm-type1.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-bh-lucidatypewriter-100dpi.in: fixed dependency
	  wrt. utilities. Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-bh-lucidatypewriter-75dpi.in: fixed dependency
	  wrt. utilities. Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-bitstream-100dpi.in: fixed dependency wrt.
	  utilities. Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-alias.in: fixed dependency wrt. utilities. Merged
	  from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-100dpi-trans.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-adobe-utopia-type1.in: fixed dependency wrt.
	  utilities. Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-bitstream-75dpi.in: fixed dependency wrt.
	  utilities. Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-util.in: fixed dependency wrt. utilities. Merged
	  from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-cronyx-cyrillic.in: fixed dependency wrt.
	  utilities. Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-misc-meltho.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-encodings.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-bitstream-speedo.in: fixed dependency wrt.
	  utilities. Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-jis-misc.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-dec-misc.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-sun-misc.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-mutt-misc.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-75dpi-trans.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-arabic-misc.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* rules/xorg-font-bh-ttf.in: fixed dependency wrt. utilities.
	  Merged from branches/ptxdist-trunk-mkl by rsc.

2007-01-02  Juergen Beisert <j.beisert@pengutronix.de>

	* TODO: update
	* rootfs.in: /dev/pts defaults to 'no'
	  - creating this directory make no sense, as it will be
	    covered at runtime by a ramfs and the udev start script
	    will recreate it
	  - if one don't want to use udev one can enable it (but need
	    some kind of mechanism to create the static device nodes)
	* cvs: improving some features
	  - remove cvs' internal zlib to speed up build
	  - adding support to configure cvs' runtime

2007-01-02  Luotao Fu <l.fu@pengutronix.de>

	* fontconfig.make: fixed missing PTXCONF in ifdef

2007-01-02  Robert Schwebel <r.schwebel@pengutronix.de>

	* Virtual.make:
	  fixed typo in label; changed 'mtd' to
	  'mtd-utils', following this recent change. Merged from
	  branches/ptxdist-trunk-mkl by rsc.
	* images: change dependencies to reflect movement from 'mtd' to
	  'mtd-utils'. Merged from branches/ptxdist-trunk-mkl by rsc.
	* menues: removed prompts for cross and host tools; there's
	  nothing to configure here. Merged from
	  branches/ptxdist-trunk-mkl by rsc.
	* cross-pkg-config-wrapper: fix dependencies. Merged from
	  branches/ptxdist-trunk-mkl by rsc.
	* Kconfig: fix to reflect last changes. Merged from
	  branches/ptxdist-trunk-mkl by rsc.
	* zlib: recreated packet files with ptxdist newpacket; host-zlib
	  prompt was removed, no reason to configure something manually
	  here. Merged from branches/ptxdist-trunk-mkl by rsc.
	* autotools: removed broken packets. Merged from
	  branches/ptxdist-trunk-mkl by rsc.
	* kaffe: added jit fix patch; removed broken in and make files.
	  Merged from branches/ptxdist-trunk-mkl by rsc.
	* mtd-utils: moved 'mtd' to new packet 'mtd-utils', which fits
	  reality better. Merged from branches/ptxdist-trunk-mkl by rsc.
	* ipkg-utils: updated from 1.7 to 050831, which is a newer
	  version. Merged from branch/ptxdist-trunk-mkl by rsc.

2007-01-02  Juergen Beisert <j.beisert@pengutronix.de>

	* udev.conf: removing udev_db entry because nobody cares about it
	  - changing defaults to meet the init.d/udev start script
	    requirements
	  - adding entry to additionaly install user's rule files
	    this entry defaults to 'n', so nothing changes for existing
	    projects
	  - adding some help info to udev's components
	* udev.make:
	  - adding rule file support
	  - adding new udev components for udev versions 096 and above if
	    we are going to update to this version

2007-01-02  Robert Schwebel <r.schwebel@pengutronix.de>

	* libdbus-c++: more changes merged; still not fully working,
	  because upstream has not released yet and I'm waiting for
	  mkl's host/cross-pkg-config fixes.

2007-01-02  Luotao Fu <l.fu@pengutronix.de>

	* xorg-font-intl.make: fixed fontdir

2007-01-01  Robert Schwebel <r.schwebel@pengutronix.de>

	* TODO: update

2007-01-01  Juergen Beisert <j.beisert@pengutronix.de>

	* uml: UML kernel build
	  - typo fixed which results in a wrong and unknown target
	    for UML kernels

2007-01-01  Robert Schwebel <r.schwebel@pengutronix.de>

	* TODO: update

2007-01-01  Juergen Beisert <j.beisert@pengutronix.de>

	* TODO: update
	* fam:
	  - always tries to rebuild the configure file and fails
	    on most systems due to it expects old autotools
	  - currently marked as broken
	* kernel: module build out of tree
	  - using correct variable for current working directory,
	    without it nothing will be built
	  - user must add dependency to KERNEL manually, if not
	    module will be built prior kernel and fails

2006-12-31  Robert Schwebel <r.schwebel@pengutronix.de>

	* mico.in: * added initial support for dbus c++ bindings

2006-12-29  Robert Schwebel <r.schwebel@pengutronix.de>

	* syslogng: fixed remaining dropbear reference; patch by Manfred Gruber
	* syslogng: fixed startscript links; patch by Manfred Gruber

2006-12-22  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* renamed pkg-config-wrapper from host to crosstool

2006-12-22  Juergen Beisert <j.beisert@pengutronix.de>

	* TODO: update

2006-12-22  Robert Schwebel <r.schwebel@pengutronix.de>

	* rootfs: fix install of user defined /etc/inetd.conf
	  Patch by Steven Scholz.

2006-12-21  Juergen Beisert <j.beisert@pengutronix.de>

	* mad: better architecture support
	  - do not guess -march anymore. The compiler already knows it
	  - install libraries locally to be used by other packets
	* trunks/ptxdist-trunk/rules/alsa-utils.in:
	  hint from Gilbert Forkel: alsautils need pthreads library
	* TODO: update

2006-12-21  Robert Schwebel <r.schwebel@pengutronix.de>

	* TODO: update

2006-12-21  Juergen Beisert <j.beisert@pengutronix.de>

	* dhcp: modify dhclient to make it work
	  - support installation of dhclient.conf
	  - installs also the required script dhclient calls
	    to setup the interface
	* Makefile: adding useful compiler warning

2006-12-20  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* host-mkfontscale.in, host-mkfontscale.make:
	* host-mkfontdir.in, host-mkfontdir.make:

2006-12-19  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* bin/ptxdist:
	  don't check compiler in BUILD_TOOLCHAIN
	* Kconfig:
	  removed BUILD_USERLAND
	* Virtual.make:
	* Rules.make:
	  don't set PKG_CONFIG_PATH
	* Definitions.make:
	  add tr_sh def
	* sdl.make:
	  install intro CROSS_PREFIX
	* gtk22.make:
	  cleanups
	* penguzilla.make:
	  kill PREFIX
	* host-pkg-config-wrapper.make:
	  install into CROSS_PREFIX
	* xorg-driver-video-apm.make:
	  let it work w/o patch
	* cramfs.make:
	  kill PREFIX
	* xorg-driver-video-nsc.make:
	  removed CFLAGS hackery
	* konq-e.make:
	  killed PREFIX
	* qt.make:
	  eliminated PREFIX
	* klibc.make:
	  PREFIX -> CROSS_PREFIX

2006-12-19  Luotao Fu <l.fu@pengutronix.de>

	* dropbear.in: fixed dependency

2006-12-19  Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* crosstool.in:
	  removed
	* xorg-driver-video-i810.make:
	  updated to work w/o patches
	* gcclibs.make:
	  removed PTXCONF_GCCLIBS_GCC_S_NOF
	* crosstool.make:
	  obsolete
	* glibc.make:
	  removed PTXCONF_GLIBC_INSTALL
	* alsa-lib.in alsa-utils.in
	  dhcp.in ffmpeg.in gcclibs.in glibc.in host-ipkg-utils.in
	  initng.in libc.in live.in sdl.in target.in:
	  removed BUILD_USERLAND
	* xf86-video-i810-1.6.5:
	  obsolete
	* xf86-video-ati-X11R7.0-6.5.7.3 xf86-video-ati-X11R7.1-6.6.0:
	  obsolete
	* xf86-video-i810-X11R7.1-1.6.0 xf86-video-i810-1.6.1:
	  obsolete
	* font-adobe-utopia-100dpi-X11R7.0-1.0.1:
	  obsolete
	* font-misc-misc-X11R7.0-1.0.0:
	  obsolete
	* generic/SDL-1.2.10-sdl.pc.in.diff:
	  use @name@ instead of vars
	* font-adobe-100dpi-X11R7.0-1.0.0:
	  obsolete
	* font-adobe-utopia-75dpi-X11R7.0-1.0.1:
	  obsolete
	* xf86-video-dummy-X11R7.1-0.2.0:
	  re-added and fixed patch
	* generic/vesa.diff, generic/series:
	  removed pkg-config --variable hacks
	* font-adobe-75dpi-X11R7.0-1.0.0:
	  obsolete
	* xf86-video-dummy-X11R7.1-0.2.0:
	  obsolete
	* pkg-config-wrapper:
	  added handling for --variable
	* Kconfig: removed BUILD_USERLAND
	* settoolchain.sh: obsolete -> removed
	* ptxdist:
	  allow kernelconfig even if no .config for kernel is present
	  (chick and egg problem)
	* rules/glibc.make:
	  don't strip gconv/gconv-modules (which is a textfile)
	* kernel.make:
	  improved ppc/powerpc handling, improved module support,
	  don't apply patches when no series is given
	  bailout if no .config is given
	* trunks/ptxdist-trunk/patches/pure-ftpd-1.0.20:

2006-12-18  Robert Schwebel <r.schwebel@pengutronix.de>

	* kernel: fixed module-init-tools dependency

2006-12-18  Luotao Fu <l.fu@pengutronix.de>

	* trunks/ptxdist-trunk/rules/hosttools.in: deleted mkfontdir and
	  mkfontscale as host tool due to X depedencies
	* trunks/ptxdist-trunk/rules/host-mkfontscale.make: deleted
	  mkfontdir and mkfontscale as host tool due to X depedencies
	* trunks/ptxdist-trunk/rules/host-mkfontdir.in,
	  trunks/ptxdist-trunk/rules/host-mkfontscale.in: added
	  dependencies
	* trunks/ptxdist-trunk/rules/hosttools.in: included mkfontdir and
	  mkfontscale in hosttools
	* trunks/ptxdist-trunk/rules/host-mkfontdir.in,
	  trunks/ptxdist-trunk/rules/host-mkfontdir.make,
	  trunks/ptxdist-trunk/rules/host-mkfontscale.in,
	  trunks/ptxdist-trunk/rules/host-mkfontscale.make: added hosttool
	  fontdir and fontscale

2006-12-18  Juergen Beisert <j.beisert@pengutronix.de>

	* TODO: update

2006-12-17  Robert Schwebel <r.schwebel@pengutronix.de>

	* apache2: fixed
	  help text, added missing brace, let "restart"
	  do what it promises (not reload!)
	* apache2: add
	  error handling to start file
	* apache2: agrrrr...
	  this could never have worked. The default
	  config file searches mime.types in /var/www, whereas
	  apache2.make installs it into /usr/share/apache2. Fixed
	  default configuration.
	* apache2: fixed another nasty typo
	* apache2: fix wrong config variable for pidfile

2006-12-17  Juergen Beisert <j.beisert@pengutronix.de>

	* TODO: update
	* Makefile: project makefile template added
	* pureftpd.make: using correct permissions for pureftpd's config file

2006-12-15  Luotao Fu <l.fu@pengutronix.de>

	* xorg-font-intl: added internalisation fonts
	* xorg-font-util-alias: missed files in last commitment
	* hosttools.in: added host font tools
	* xorg-fonts: redefined target install stage to minimize installation size
	* xorg-font.in: changed xorg fonts install menu structure with more
	  debian flavour for better organisation. defineble targetinstall according 
	  to codepages to minimize installation size
	* fonts: added host font utilsto fix font compililation

2006-12-12  Luotao Fu <l.fu@pengutronix.de>

	* glibc: added glibc locale files installation

2006-12-12  Juergen Beisert <j.beisert@pengutronix.de>

	* tftpd: service from inetutils packet added
	  - starts via inetd or standalone
	  - configurable base directory
	  - extends /etc/services on demand
	  - extends /etc/inetd.conf on demand
	  - provides generic startup script

2006-12-11  Juergen Beisert <j.beisert@pengutronix.de>

	* TODO: update

2006-12-08  Sascha Hauer <s.hauer@pengutronix.de>

	* kernel.make: add kernel ppc <-> powerpc hackery

2006-12-08  Robert Schwebel <r.schwebel@pengutronix.de>

	* ChangeLog: backported from 0.10.5-branch

2006-12-22 Robert Schwebel <r.schwebel@pengutronix.de>

	* rootfs: fix install of user defined /etc/inetd.conf
	  Patch by Steven Scholz.

2006-12-08 Robert Schwebel <r.schwebel@pengutronix.de>

	* general: lots of fixes all over the place, I'll promise to
	  make a better ChangeLog next time :-)
	* release: released 0.10.5

2006-12-07 Juergen Beisert <j.beisert@pengutronix.de>

	* build system: ptxdist now also checks for s specific
	toolchain vendor on demand. So every project now can force
	the use of:
	 - a specific toolchain vendor (name)
	 - a specific toolchain (prefix name)
	 - a specific toolchain version (compiler version)

2006-12-06 Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* kernel: better support for externel kernel modules
	Automatically intergration into the regular kernel module ipkg

2006-12-06 Juergen Beisert <j.beisert@pengutronix.de>

	* rootfs: clean up menu, consistent way to select any startup-script
	and config files. Move other entries into the package they belong
	to

2006-10-20 Robert Schwebel <r.schwebel@pengutronix.de>

	* dbus: added (rsc) and added some patches to fix the
	configuration, by Roland Hostettler

2006-10-17 Robert Schwebel <r.schwebel@pengutronix.de>

	* util-linux: update to 2.13-pre7

2006-07-13 Robert Schwebel <r.schwebel@pengutronix.de>

	* host-e2fsprogs: made host-e2fsprogs' get stage working; patch
	  by Randall Loomis.
	* glibc: removed PTXCONF_GLIBC_DEBUG, as it never worked. Patch
	  by Randall Loomis.
	* etc: fixed path to etc/network/interfaces; patch by Steven
	  Scholz

2006-07-13 Robert Schwebel <r.schwebel@pengutronix.de>

	* nmap: version bumped (4.01 -> 4.11); patch by Chuck Robey
	* rsync: version bumped (2.6.6 -> 2.6.8); patch by Chuck Robey

2006-07-05 Robert Schwebel <r.schwebel@pengutronix.de>

	* configs: PROJECTDIR -> PTXDIST_WORKSPACE; patch by Graeme Brown

2006-07-01 Robert Schwebel <r.schwebel@pengutronix.de>

	* autobuilder: fixed mechanism for multiple subprojects
	* moved ptxdist-0.10-trunk to ptxdist-trunk

2006-07-01 Robert Schwebel <r.schwebel@pengutronix.de>

	* release: released 0.10.4

2006-06-30 Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* ptxdist: write new fast dependency generator

2006-06-30 Robert Schwebel <r.schwebel@pengutronix.de>

	* ChangeLog: added diffs since 0.10.3
	* busybox: update to 1.1.3
	* alsalib, alsautils: update to 1.0.11
	* apache2: update to 2.0.58
	* apache: update to 1.1.36
	* bash: update to 3.1
	* blackbox: mark as broken
	* bridge-utils: ipkgized
	* crosstool: added correct cpu support for x86
	* cyclictest: update to 0.8
	* db41: changed download site
	* db44: added
	* dbench: update to 3.04
	* dhcp: update to 3.0.4
	* e2fsprogs: update to 1.39
	* ffmpeg: added (patch by Erwin Rol)
	* findutils: added (patch by Juergen Beisert)
	* cmake: added
	* host-kconfig, host-lxdialog: removed, obsolete
	* pelts: added (patch by Sascha Hauer)
	* initng: several additions; update to 0.6.7 (Erwin Rol)
	* iproute2: added (Erwin Rol)
	* kernel: make config names configurable; support testing
	  kernels  (Sascha Hauer)
	* live: added (Erwin Rol)
	* mc: added (Sascha Hauer)
	* memedit: update to 0.7
	* mesalib: update to 6.5
	* mtdutils: update to 1.0.0
	* nfsutils: update to 1.0.8
	* qtopia: added (Sascha Hauer, Robert Schwebel)
	* sdl: update to 1.2.10 (Erwin Rol)
	* syslog ng: update to 1.9.11
	* unionfs: added (Marc Kleine-Budde)
	* ptxdist: added 'ptxdist boardsetup' (Robert Schwebel)
	* ptxdist: made more variables local (Marc Kleine-Budde)
	* ptxdist: added 'ptxdist drop' (Robert Schwebel, Michael
	  Olbrich)
  	* ptxdist setup: make xorg mirror configurable
	* ptxdist boardsetup: check if we are on a workspace (Jochen
	  Frieling)

2006-06-30 Juergen Beisert <j.beisert@pengutronix.de>

	* tslib: fixed install paths

2006-06-29 Sascha Hauer <s.hauer@pengutronix.de>

	* pelts_tests: added
	* kernel: copy kernel image to $IMAGEDIR

2006-06-28 Robert Schwebel <r.schwebel@pengutronix.de>

	* pkg-config: use our version instead of host's; this is because
	  we otherwhise may have a chicken & egg problem.

2006-06-28 Sascha Hauer <s.hauer@pengutronix.de>

	* scripts: removed "cannot create node" messages, because they
	  are bogus.
	* udev: allow creation of initial device nodes in rootfs.make,
	  remove creation of /dev/console from udev.make
	* pelts: updated to 1.0.2

2006-06-23 Robert Schwebel <r.schwebel@pengutronix.de>


	* toolchains: updated arm and x86 to use 2.6.17 headers
	* ptxdist: opened 0.10.4 branch

2006-06-20 Robert Schwebel <r.schwebel@pengutronix.de>

	* sysutil: URL fixed; patch by Randall Loomis

2006-05-19 Robert Schwebel <r.schwebel@pengutronix.de>

	* ptxdist: added 'ptxdist boardsetup'

2006-05-17 Robert Schwebel <r.schwebel@pengutronix.de>

	* menues: made menuconfigs without content a simple config;
	  patch by Steven Scholz.
	* ptxdist: check if we are on a workspace for clean and
	  distclean commands.
	* pelts: added Pengutronix Embedded Linux Test Suite

2006-05-09 Robert Schwebel <r.schwebel@pengutronix.de>

	* host-util-linux: added missing touch; patch by Patrick
	  Zwahlen.

2006-05-02 Ladislav Michl <ladis@linux-mips.org>

	* mtd: updated to mtd-utils-1.0.0

2006-04-25 Robert Schwebel <r.schwebel@pengutronix.de>

	* Makefile.in: improved make clean; patch by Ladislav Michl

2006-04-23 Robert Schwebel <r.schwebel@pengutronix.de>

	* release: released 0.10.3

2006-04-21 Robert Schwebel <r.schwebel@pengutronix.de>
	   Marc Kleine-Budde <m.kleine-budde@pengutronix.de>

	* configure.ac: re-add test for gzip, bzip2 etc. in a way that
	  we break if these programs are not there; test for sed >= 4.x.

2006-04-18 Robert Schwebel <r.schwebel@pengutronix.de>

	* ptxdist: we have a check now which makes sure that we don't
	  mix native and non-native builds in one workspace
	* patches: removed old apache-1.3.33 patches; patch by Marc
	  Kleine-Budde.
	* patches: ported common-cpp-1.3.24 patches to 1.3.25; patch by
	  Marc Kleine-Budde.
	* patches: new patches for directfb-0.9.24; patch by Erwin Rol.
	* patches: ported from fontconfig-2.2.92 to 2.3.2; patch by
	  Marc Kleine-Budde. Removed 2.3.94 patches.
	* patches: font-misc-misc-X11R7.0-1.0.0: make sysroot aware.
	  Patch by Erwin Rol.
	* patches: freetype-2.1.10: make sysroot aware; remove patches
	  for 2.1.9. Patch by Marc Kleine-Budde.
	* patches: removed gdb-5.3 patches; patch by Marc Kleine-Budde.
	* patches: init-ng-0.6.0: tweak bash-launcher to work with
	  busybox shells. Patch by Erwin Rol.
	* patches: init-ng-0.6.0: remove begging message; patch by Erwin
	  Rol.
	* patches: init-ng-0.6.0: make mini-shell-script busybox shell
	  aware. Patch by Erwin Rol.
	* patches: init-ng: removed patches for 0.6.0-RC1. Patch by
	  Erwin Rol.
	* patches: jpeg-6b: grabbed from fedora core; patch by Erwin
	  Rol.
	* patches: libxml2: moved config-in-sysroot patch to
	  xml2-config_in_sysroot.diff; patch by Marc Kleine-Budde.
	* patches: libxslt-1.1.14
	* patches: mplayer-1.0pre7try2: made gcc4 aware. Patch by Sascha
	  Hauer.
	* patches: pcmciautils-0.0.6
	* patches: sablevm-1.13: add "-Wl," tweak to configure.ac. Patch
	  by Marc Kleine-Budde.
	* patches: xf86-video-ati-X11R7.0-6.5.7.3: tweak runtime checks
	  out of configure. Patch by Erwin Rol.
	* patches: xf86-video-ati-X11R7.0-6.5.7.3: fix some serious bugs
	  in this ATI driver version. Patch by Erwin Rol.
	* projects-example: allyes-arm: switch on init-ng, gtk, xinit,
	  xf86bigfont, libxrandr, libjpeg
	* generic /etc/init.d/modules: change to use /etc/modules only if
	  it does exist. Patch by Robert Schwebel.
	* generic /etc/init.d/networking: exit with retval 0 if
	  everything went fine. This avoids a useless warning. Patch by
	  Robert Schwebel.
	* generic /etc/init.d/udev: bail out wit useful error message if
	  sysfs was not mounted. Patch by Robert Schwebel.
	* atk: removed atk124 and add generic atk.
	* bonniexx: fix dependencies.
	* boost: added initial boost support. Patch by Robert Schwebel.
	* busybox: changed /bin/busybox permissions from 1555 to 755.
	* cairo: added initial support. Patch by Marc Kleine-Budde.
	* canutils: autodetect version; Patch by Marc Kleine-Budde.
	* check_tools: depend on host-pkg-config-wrapper for all
	  non-toolchain targets. Patch by Robert Schwebel.
	* commoncpp2: version updated from 1.3.24 to 1.3.25. Patch by
	  Robert Schwebel and Marc Kleine-Budde.
	* menues: several menues have been cleaned up.
	* expat: moved libexpat from /lib into /usr/lib. Patch by Marc
	  Kleine-Budde.
	* fontconfig: downgrade to 2.3.2, which is the latest stable
	  version. Patch by Marc Kleine-Budde.
	* freetype: added dependency on zlib. Version updated from 2.1.9
	  to 2.1.10. Marc Kleine-Budde.
	* gettext: fixed missing ";". Patch by Robert Schwebel.
	* glib28: removed and re-added as glib. Patch by Marc
	  Kleine-Budde.
	* glibc: removed bogus dependency on ipkg mechanism.
	* gnuplot: fixed dependencies; added x11 variant. Patch by
	  Marc Kleine-Budde.
	* grub: added zillions of new config options. Patch by Erwin
	  Rol.
	* gtk: update; patch by Marc Kleine-Budde.
	* host-ipkg: The ipkg bundling mechanism is now always on; this
	  is a general policy change to make things easier. We know that
	  the current ipkg implementation is braindamaged, but there is
	  no alternative. Patch by Robert Schwebel.
	* init-ng: version update to 0.6.0. Patch by Erwin Rol.
	* rules/Kconfig: removed generated version file into separate
	  ptxdist-version.in(.in). So we don't have to re-run configure
	  each time something changes in Kconfig. Patch by Marc
	  Kleine-Budde.
	* libdaemon: added. Patch by Robert Schwebel.
	* libelf: added. Patch by Marc Kleine-Budde.
	* libjpeg: added. Patch by Erwin Rol.
	* libpopt: renamed from popt. Patch by Marc Kleine-Budde.
	* libxslt: URL changed.
	* ltrace: added. Patch by Marc Kleine-Budde.
	* mplayer: unbroken to make Sascha happy :-) Fixed URL.
	* ntp: fix dependencies & menu. Patch by Marc Kleine-Budde.
	* pango: update to 1.10.4 & renamed. Patch by Marc Kleine-Budde.
	* pciutils: added. Patch by Erwin Rol.
	* rootfs: select udev if configfile was switched on
	* rootfs: fix client config file. Patch by Erwin Rol.
	* Rules.make: host side ipkg is now mandatory, removed checks.
	  Added sanity checks for install_replace macro which checks if
	  a file does exist before changing.
	* sysfsutils: made default-y. Updated from 1.3.0 to 2.0.0. Patch
	  by Marc Kleine-Budde.
	* tcpdump: fix crypto dependencies. Get --without-crypto option
	  right. Patch by Marc Kleine-Budde.
	* Toplevel.make: Remove bogus quotes from $(SRCDIR). Fix
	  Definitions loading order. Fix conditionals for ipkg-test; due
	  to the fact that host side ipkg is now mandatory we always
	  have to run the test now if we build a userland (not for
	  toolchain). Put tgz image creation into make_image_tgz.sh.
	  Remove obsolete config-test.
	* util-linux: put tools into /bin instead of /sbin. Patch by
	  Erwin Rol.
	* valgrind: updated from 2.4.0 to 3.1.1. Patch by Erwin Rol.
	* xorg-app-xinit: added startx and xinitrc. Patch by Sascha
	  Hauer.
	* xorg-driver-input-evdev: install evdev_drv.so; patch by Sascha
	  Hauer.
	* xorg-driver-input-keyboard: fix installation.
	* xorg-driver-video-ati: several fixes; patch by Erwin Rol.
	* xorg-options: introduced. Patch by Erwin Rol.
	* xf86bigfont extension: added. Patch by Erwin Rol.
	* xorg-lib-xtrans: removed bogus installation candidates.
	  Patch by Erwin Rol.
	* xorg-server: added gazillions of new options. Patch by Erwin
	  Rol.
	* scripts: removed obsolete maintainance script.
	* xorg-driver-input-tslib: added. Patch by Sascha Hauer.
	* syslog-ng: updated to 0.10.

2006-04-12 Robert Schwebel <r.schwebel@pengutronix.de>

	* libdaemon: added

2006-03-24 Robert Schwebel <r.schwebel@pengutronix.de>

	* busybox: made vim an alias to vi; patch by Sascha Hauer
	* toplevel: added real autoconf support and some initial tests
	  for things already mentioned in the todo list
	* configdeps: improved configdep generation. Until now if you
	  had menuconfig entries and a sub-entry selected another
	  packet, but the menuconfig itself was deselected, the
	  configdeps magic incorrectly activated the selected package.
	  Patch by Marc Kleine-Budde.
	* xorg: fixed bug in x.org which broke CAN
	* initng: initial support for initng; patch by Erwin Rol
	* udhcp: fixed; patch by Erwin Rol
	* makefiles: re-activated project specific patches, which have
	  been broken in 0.10 until now. Patch by Sascha Hauer.
	* udev: update from 0.68 to 0.88. Erwin Rol.
	* Xaw: fixed dependency; patch by Erwin Rol.

	* release: released 0.10.2

2006-03-21 Robert Schwebel <r.schwebel@pengutronix.de>

	* release: released 0.10.1

2006-03-20 Robert Schwebel <r.schwebel@pengutronix.de>

	* overall: fixed various examples and configurations, updated to
	  use the 0.10.1 version all over the place
	* changelog: updated since 0.10.0
	* ptxdist: compilercheck reanimated
	* ptxdist: .ptxdistrc has now the version added, to avoid that
	  incompatible versions are clashing.
	* ptxdist: more checks for config files have been added
	* ptxdist: native build works now with --native
	* ptxdist: autobuild reanimated
	* config/: obsolete stuff removed
	* setup: default SF mirror changed

2006-03-19 Robert Schwebel <r.schwebel@pengutronix.de>

	* ptxdist: reanimated 'ptxdist kernelconfig'
	* ptxdist: added 'ptxdist maintainer configversionbump'
	* ptxdist: clone with tar and svn exclusion instead of cp
	* gdb: fixed: source for cross-gdb was not fetched correctly.
	  The gdb version was updated to 6.4.

2006-03-14 Robert Schwebel <r.schwebel@pengutronix.de>

	* libezV24: added
	* toplevel: debian packetized

2006-03-12 Robert Schwebel <r.schwebel@pengutronix.de>

	* toolchains: fixed cross gdb paths to install into the same
	  directory as the crosstool components.

	* ptxdist clone: fixed; thanks to Erwin Rol for the bug report

2006-03-11 Robert Schwebel <r.schwebel@pengutronix.de>

	* autobuild: The statistics functions have been moved to
	  ptxdist, so the autobuild scripts do only contain the
	  call to the build process now.

	* ptxdistrc: $HOME/.ptxdistrc is now versioned, to avoid that
	  people use old and incompatible ones.

	* ptxdistrc: We have a user configurable src directory again,
	  in .ptxdistrc.${FULLVERSION}.

	* projects: separated toolchains and example projects.

2006-03-10 Robert Schwebel <r.schwebel@pengutronix.de>

	* ptxdist: integrated autobuilder in ptxdist

	* toolchains: fixed chicken-egg-problem while building
	  toolchains

	* ipkg: fixed ipkg build mechanism and image creation.

2006-03-09 Robert Schwebel <r.schwebel@pengutronix.de>

	* release: released 0.10.0.

	There are too many features added & cleaned up in the 0.10.0
	release than could be mentioned here. This release is basically
	the last step before an 1.0 series; all functionality has been
	moved to the 'ptxdist' frontend command now, so there is no need
	to call 'make' directly any more.

	PTXdist can now be installed, which means that the standard
	configure && make && make install mechanics works, although the
	configure script is no "real" autoconf script yet. We plan to
	provide one. Several PTXdist versions can be installed in
	parallel now and it should be packageble for distributions.

	One serious bug in the release was already found, the toolchains
	test for the crosscompiler version (chicken-and-egg). Expect a
	0.10.1 release anytime soon, probably before you read this ;)

	All project work is now done in a user- and project centric way.
	You work on your project's "workspace" directory (equivalent to
	the out-of-tree directory in 0.9).

	Packet management has been much more streamlined. You always
	need a .make _and_ .in file for each packet and packet names
	must have a strong relation to their kconfig labels, like this:

		project-foo -> PROJECT_FOO

	All "included" projects have been migrated to the new formats,
	but not all of them have been tested extensively. Expect more
	releases in the near future which restore the old auditing
	mechanisms.

2006-02-03 Robert Schwebel <r.schwebel@pengutronix.de>

	* trunk: opened 0.10 trunk.

	The even/odd version number scheme turned out to be too unflexible; it
	is impossible to tell people that, once they have reached a stable
	state, they still have to switch to a new version line. So the new
	policy is that the latest minor version number is the current
	development series (0.10 from now on) and all earlier series are in bug
	fix mode only. Nevertheless, there may be occasional releases of these
	series when the projects require it.

	The autogenerated dependencies introduced in 0.9 have turned out to be
	working fairly well, it's just a little bit annoying that the creation
	is triggered too often and takes too much time on slow machines. So
	the main goal for the 0.10 series is to write a PTXdist wrapper script
	which does what you did with 'make <action>' before, like
	'ptxdist <action'.  This gives us more possibilities (think of
	'ptxdist copy <existing_project> <new_project>') without adding more
	ifdef hell to the toplevel makefile. In fact, one of the reasons for
	doing this is to cleanup the toplevel makefile which has growin
	into a shell script triggering machine over the time. Additionally, the
	projectdir layout will improve over the 0.10 series, to make it
	easier to do real customer project work with PTXdist.

2006-01-31 Robert Schwebel <r.schwebel@pengutronix.de>

	* genext2fs: update to 1.4rc1 which doesn't need the patches any
	  more (patch by Randall Loomis)
	* openssh: fix autogenerated dependency (patch by Ladislav
	  Michl)
	* release: 0.9.1 released

2006-01-30 Robert Schwebel <r.schwebel@pengutronix.de>

	* mico: added support for MICO.

2006-01-26 Robert Schwebel <r.schwebel@pengutronix.de>

	* overall: this is a technology preview of the upcoming 0.9
	  series of PTXdist. Not everything is working right now,
	  but we have autogenerated dependencies.

2006-01-03 Robert Schwebel <r.schwebel@pengutronix.de>

	* overall: merged destdir branch into 0.9-trunk
	  kernel: replaced DONT_COMPILE_KERNEL by
	  COMPILE_KERNEL

2005-12-28 Robert Schwebel <r.schwebel@pengutronix.de>

	* trunk: migrated destdir branch to new 0.9 trunk
	  The tree is now using destdir/sysroot as it's standard
	  mechanism. It doesn't work in all places, but it's the
	  way to go for the future.

2005-12-20 Robert Schwebel <r.schwebel@pengutronix.de>

	* Rules: remove some bogus mkdir $(IMAGEDIR)s;
	  Patch by Ladislav Michl

	* bash: fixed PATH; patch by Vince Chen

2005-12-14 Robert Schwebel <r.schwebel@pengutronix.de>

	* release: released 0.7.8. This is just an intermediate
	  release. We are working hard towards 1.0, so expect
	  things to be completely broken. You have been warned.

2005-11-30 Robert Schwebel <r.schwebel@pengutronix.de>

	* overall: re-unified TOPDIR and PTXDISTDIR to become
	  PTXDIST_DIR now.
	* makefiles: out-of-tree builds should work now; just
	  make an empty directory, link the PTXdist toplevel
	  Makefile there and do everything you want. This feature
	  probably needs more testing, but it's a beginning.
	* kconfig/lxdialog: migrated to be hosttools, but still
	  with the strange effect that they need to be in
	  scripts/* seen from the Makefile.

2005-11-18 Robert Schwebel <r.schwebel@pengutronix.de>

	* ntpclient: targetinstall fixed; patch by Steven Scholz

2005-11-14 Robert Schwebel <r.schwebel@pengutronix.de>

	* klibc: added

2005-11-01 Robert Schwebel <r.schwebel@pengutronix.de>

	* uml/native: fixed console

2005-10-28 Robert Schwebel <r.schwebel@pengutronix.de>

	* python24: fixed build dir; patch by Mike Wakerly

2005-10-27 Robert Schwebel <r.schwebel@pengutronix.de>

	* dropbear: fix DROPBEAR_CONVERT typo; patch by
	  Mike Wakerly

2005-10-26 Robert Schwebel <r.schwebel@pengutronix.de>

	* rootfs: new fully configurable rootfs/etc templates
	  to avoid duplicate files in ipkg packets.

2005-10-26 Robert Schwebel <r.schwebel@pengutronix.de>

	* release: released PTXdist 0.7.7

2005-10-21 Robert Schwebel <r.schwebel@pengutronix.de>

	* mknbi: added mknbi support; patch by Mike Wakerly.

2005-10-08 Robert Schwebel <r.schwebel@pengutronix.de>

	* epoll: removed rules/epoll.in, seems to be obsolete.
	* rtai: removed rtai in kernel config, could now be done with
	  the patch stack mechanism (in case anybody would be
	  interested)
	* lrzsz: fixed, builds now. Patch by Ladislav Michl, modified
	  to actually build something on targetinstall.
	* dhcp: update from 3.0.1 to 3.0.3; patch by Ulf Samuelsson
	* sysvinit: patch by Oscar Peredo added.
	* zlib: build also static zlib; patch by Kai-Uwe Bloem
	* uclibc: install libthread_db if gdbserver is used; patch by
	  Kai-Uwe Bloem.
	* gettext: fixed stuff all over the place; make ipkg install
	  work. Patch by Kai-Uwe Bloem

2005-09-28 Robert Schwebel <r.schwebel@pengutronix.de>

	* Makefile: more makefile cleanups. New policy: everything is
	  now built in a "workspace"; usually nothing changes, but if
	  you set PTXDISTWORKSPACE we build there. (UPDDATE: this is
	  PTXDIST_WORKSPACE in more recent versions)
	* paths: moved local_patches to patches; as the patch repository
	  is now in the SVN repository there's no need to copy patches
	  around. Policy: look for patches in $(TOPDIR)/patches and in
	  $(PROJECTDIR)/patches.
	* toolchains: added gcc 3.3.3 glibc 2.3.2 toolchain
	  for x86, corresponding to arm. Debian is broken at the moment.


2005-09-28 Robert Schwebel <r.schwebel@pengutronix.de>

	* misc: removed ptx-init-permissions.sh; this is obsolete now that
	  we have the fakeroot based permission mechanism.

2005-09-26 Robert Schwebel <r.schwebel@pengutronix.de>

	* dotgnu: added initial support; patch by Benedikt Spranger
	* busybox: added patch to make gcc 4.x happy; patch by
	  Benedikt Spranger
	* coreutils: added get_patches; patch by Benedikt Spranger
	* grub: update from 0.95 to 0.97; patch by Benedikt Spranger
	* kernel: 2.6.13 is also available on PPC; patch by Benedikt
	  Spranger
	* nmap: update from 3.48 to 3.93; patch by Benedikt Spranger
	* openssl: use cross-ar; patch by Benedikt Spranger
	* rsync: update from 2.6.3 to 2.6.6. Patch by Benedikt Spranger
	* Rules.make: fix LIB for relative paths; patch by Benedikt
	  Spranger
	* Version.make: fix extraversion whitespace handling; patch by
	  Mike Wakerly

2005-09-22 Robert Schwebel <r.schwebel@pengutronix.de>

	* libxmlconfig: version update
	* libpv: version update
	* liblist: version update

2005-09-07 Robert Schwebel <r.schwebel@pengutronix.de>

	* libxslt: added xsltproc

2005-09-02 Robert Schwebel <r.schwebel@pengutronix.de>

	* added apache2

2005-08-09 Robert Schwebel <r.schwebel@pengutronix.de>

	* libpv: added
	* liblist: version update

2005-08-08 Robert Schwebel <r.schwebel@pengutronix.de>

	* rootfs: Without the patch I get an empty /media dir although
	  PTXCONF_ROOTFS_MEDIA is not set. Patch by Steven Scholz.

2005-08-04 Bjoern Buerger <b.buerger@pengutronix.de>

	* busybox: added patch to reduce compile time
	   	   patch submitted by Steven Scholz

	* util-linux: fix install of mount, add option for umount
		      patch by Steven Scholz

	* host-mtd: fixed build of jffs2dump util; patch by Gary Thomas

	* rawrec: added; patch by Christian Gagneraud

2005-08-03 Robert Schwebel <r.schwebel@pengutronix.de>

	* rootfs: add mechanism for /media mountpoints

2005-07-28 Bjoern Buerger <b.buerger@pengutronix.de>

	* iptables: fixed install stage; patch by Alexandre Bastos
	* netkit-ftp: added; patch by Gilad Ben-Yossef
	* cfgsh: added; patch by Gilad Ben-Yossef

2005-07-27 Robert Schwebel <r.schwebel@pengutronix.de>

	* release: released 0.7.6

2005-07-27 Bjoern Buerger <b.buerger@pengutronix.de>

	* busybox: (udhcpc) reordered config; patch by Steven Scholz

2005-07-26 Bjoern Buerger <b.buerger@pengutronix.de>

	* ntpclient: added; patch by David Updegraff

2005-07-22 Bjoern Buerger <b.buerger@pengutronix.de>

	* busybox: (udhcpc) make busybox udhcpc.script optional;
		   patch by Steven Scholz + some helptext

	* minor documentation fixes

2005-07-22 Robert Schwebel <r.schwebel@pengutronix.de>

	* libxmlconfig: added

2005-07-21 Bjoern Buerger <b.buerger@pengutronix.de>

	* busybox: (udhcpc) install fix; patch by  Brian Murphy

2005-07-19 Bjoern Buerger <b.buerger@pengutronix.de>

	* pcmciautils: added initial version; patch by Steven Scholz

2005-07-16 Robert Schwebel <r.schwebel@pengutronix.de>

	* ncurese: fixed install names for forms; patch by
	  Steven Scholz.
	* tcpwrapper: There is a needless builtin dependency
	  in Portmap_4 for tcpwrapper. Which at the very
	  least causes excess downloads&compiles. This
	  patch by David Updegraff detects whether
	  tcpwrapper was infact explicitly selected or not
	  and deals with it.
	* udev: fixed PTXCONF_ macros. Patch by David Updegraff.
	* host/cross: fix host paths; patch by Ladislav Michl
	* kernel: use find instead of ls to find files; patch
	  by Ladislav Michl
	* Virtual.make: add hosttool-mtd if we want to build a
	  jffs2 root image; patch by Steven Scholz

2005-07-14 Bjoern Buerger <b.buerger@pengutronix.de>

	* nfs-utils: bugfix, ipkgized some config files.

2005-07-14 Robert Schwebel <r.schwebel@pengutronix.de>

	* chrony: autotoolized and added workaround for broken kernel headers
	* patches: moved primary patch repository into $(TOPDIR)/local_patches

2005-07-13 Bjoern Buerger <b.buerger@pengutronix.de>

	* libxslt: added missing configure options
	  fixed libxml2-prefix

	* host-tools: switched HOSTTOOLS to HOST_PACKAGES;
	  patch by Ladislav Michl

2005-07-12 Bjoern Buerger <b.buerger@pengutronix.de>

	* e2fsprogs: update to 1.38, documentaion fixup
	  tune2fs, findfs, e2label added to install stage.

2005-07-11 Robert Schwebel <r.schwebel@pengutronix.de>

	* libxml2: several typos fixed; missing options added
	* libxslt: added
	* xmlstarlet: added

2005-07-09 Robert Schwebel <r.schwebel@pengutronix.de>

	* libnet: removed bogus -C; patch by Oscar Peredo P.

2005-07-07 Robert Schwebel <r.schwebel@pengutronix.de>

	* liblist: added

2005-07-05 Robert Schwebel <r.schwebel@pengutronix.de>

	* thttpd: fixed installation
	* gnuplot: didn't compile correctly

2005-07-04 Robert Schwebel <r.schwebel@pengutronix.de>

	* ipkg-test: use PTXCONF_ROOT instead of $TOPDIR/root; patch
	  by Steven Scholz

2005-07-03 Robert Schwebel <r.schwebel@pengutronix.de>

	* kernel: use modutils for 2.4, module-init-tools for 2.6
	* Makefiles: first bunch of Christian Gagneraud's host/cross
	  consolidation patches
	* libcgicc: added; Patch by Alessio Igor Bogani
	* kernel: build umkimage only if needed; patch by Steven Scholz
	* kernel: fixed typo; patch by Steven Scholz
	* config: change PTXCONF_EXP to PTXCONF_EXPERIMENTAL and
	  PTXCONF_EXP_M to PTXCONF_EXPERIMENTAL_MORE. Patch by
	  Steven Scholz.
	* kernel: added 2.6.12; patch by Ladislav Michl
	* umkimage: convert XCHAIN_UMKIMAGE to HOSTTOOL_UMKIMAGE and upgrade
	  mkimage to version 1.1.2; patch by Ladislav Michl.
	* ipkg: update to 0.99.151; this fixed the problems which
	  previously have been marked by some FIXMEs. Patch by Steven
	  Scholz. UPDATE: patch reverted (rsc); this new version tries
	  to install .list and .control files on host side paths inside
	  the root directory.
	* ipkg-push: install ipkg.py which was missing; patch by Steven
	  Scholz.
	* ipkg-push: "wc -w" will never return "1" but "      1".
	  patch by Steven Scholz
	* sysfsutils: update to 1.3.0; patch by Steven Scholz
	* Makefile: fixed svn-up and svn-stat targets
	* ssmtp: update to 2.61-3, clean up URLs; patch by
	  Steven Scholz
	* module-init-tools: update to 3.2-pre7; patch
	  by Steven Scholz

2005-06-30 Bjoern Buerger <b.buerger@pengutronix.de>

	* ntpd: fixed dependencies

	* openntpd: fixed install paths, dependencies

	* chrony: added version 1.20

2005-06-30 Robert Schwebel <r.schwebel@pengutronix.de>

	* thttpd: update to 2.25b; fixed install path

2005-06-21 Robert Schwebel <r.schwebel@pengutronix.de>

	* kernel: split kernel and modules into two ipkgs, make
	  external kernel installable remove unnecessary compile
	  step when DONT_COMPILE_KERNEL is selected; patch by
	  Steven Scholz

	* scripts: use old style syntax for mktemp; patch by
	  Steven Scholz, modified by Robert Schwebel

	* joe: added; patch by Oscar Peredo P.

	* Rules.make: if you have relative, cross-directory symlinks in
	  your target library area, 'make install' will fail:
	  - LIB_DIR=`dirname $$LIB`;
	  + LIB_DIR=`dirname $${LIB_DIR}/$$LIB`;
	  Patch by Oscar Peredo P. and David Updegraff

	* *.make: added Emacs syntax hints; patch by Christian Gagneraud

	* ipkg: since "you need ipkg-cl in your path" when creating ipgk files
	  for the target HOSTTOOL_IPKG must be selected when IMAGE_IPKG is
	  selected. Patch by Steven Scholz

	* Rules.make: remove old _root macros; patch by Ladislav Michl.

2005-06-18 Robert Schwebel <r.schwebel@pengutronix.de>

	* jffs2: fixed macro names; patch by Steven Scholz

2005-06-13 Robert Schwebel <r.schwebel@pengutronix.de>

	* pcmcia-cs: update and fix of targetinstall rules; patch
	  by Steven Scholz
	* makefile: added svn-stat and svn-up targets
	* Kconfig: restructured menues

2005-06-10 Robert Schwebel <r.schwebel@pengutronix.de>

	* valgrind: added; patch by Shahar Livne
	* cppunit: added; patch by Shahar Livne

2005-06-06 Robert Schwebel <r.schwebel@pengutronix.de>

	* inetutils: added "real" syslogd
	* release: released 0.7.5

2005-06-05 Robert Schwebel <r.schwebel@pengutronix.de>

	* e2fsprogs: fix hosttools vs. hosttool; patch by Christian
	  Gagneraud

2005-06-03 Robert Schwebel <r.schwebel@pengutronix.de>

	* tcpdump: update to 3.9.1

2005-06-01 Robert Schwebel <r.schwebel@pengutronix.de>

	* dosfstools: added; patch by Steven Scholz
	* NATIVE: use COMPILER_PREFIX instead of
	  PTXCONF_COMPILER_PREFIX

2005-05-30 Robert Schwebel <r.schwebel@pengutronix.de>

	* overall: replaced all HOSTTOOLS by HOSTTOOL;
	  patch by Steven Scholz
	* memedit: update to 0.6
	* ltp: added more test menus

2005-05-27 Robert Schwebel <r.schwebel@pengutronix.de>

	* dbench: added

2005-05-26 Bjoern Buerger <b.buerger@pengutronix.de>

	* netcat: changed from hobbit netcat to gnu netcat 0.7.1

2005-05-25 Robert Schwebel <r.schwebel@pengutronix.de>

	* fakeroot: update to 1.3.0; patch by Oscar Peredo P.
	* lilo: update to 22.5.9; patch by Oscar Peredo P.

2005-05-22 Robert Schwebel <r.schwebel@pengutronix.de>

	* ltp: initial LTP support
	* glibc: install libc.so.6 instead of libc.so; this does
	  also work with the NATIVE method.
	* ntp: remove duplicate ntpdc
	* proftpd: update to 1.3.0rc1; patch didn't work
	  with new NATIVE mechanism; fixed.
	* gdb: select glibc libs only if GLIBC_INSTALL
	* memedit: use default autoconf variables
	* util-linux: update to 2.12j
	* ipkg: added 'make ipkg-push' which updates an ipkg archive
	  from freshly created packets
	* ipkgs: version number is now fixed against PTXdist version;
	  this is necessary because changing options results in
	  different ipkg packets. We now have a project revision
	  number as well, which does also go into the ipkg packet.
	* ntp: added ntpd, tools
	* Kconfig: added mechanism for tests

2005-05-19 Robert Schwebel <r.schwebel@pengutronix.de>

	* grub: fixed installation of grub binary;
	  patch by Shahar Livne

2005-05-18 Robert Schwebel <r.schwebel@pengutronix.de>

	* rootfs.in: typo fixed; patch by Steven Scholz
	* wireless: update to version 27, config option
	  to build shared version; patch by Steven Scholz

2005-05-17 Robert Schwebel <r.schwebel@pengutronix.de>

	* busybox: fix static building; patch by Gary Thomas

2005-05-13 Robert Schwebel <r.schwebel@pengutronix.de>

	* hotplug: fixed permissions for agents
	* release: released 0.7.4

2005-05-11 Robert Schwebel <r.schwebel@pengutronix.de>

	* expat: fixed links; patch by Ladislav Michl
	* Makefile: added check for ncurses.h

2005-05-10 Robert Schwebel <r.schwebel@pengutronix.de>

	* wget: added

2005-05-09 Robert Schwebel <r.schwebel@pengutronix.de>

	* Makefile: added missing jffs2 extra args; patch
	  by Steven Scholz
	* Makefile: fixed output on images clean
	* Rules.make: sanity check for local patch URLs

2005-05-08 Robert Schwebel <r.schwebel@pengutronix.de>

	* uclibc, crosstool: ported to crosstool 0.32 and fixed
	  the remaining problems. uClibc does now also use the
	  mechanism from glibc which directly copies the C library
	  from the toolchain to the target.

2005-05-05 Robert Schwebel <r.schwebel@pengutronix.de>

	* ssmtp: added packet; patch by Steven Scholz
	* Makefiles: sets the KERNEL_VERSION_xxx variables even
	  when anexternal kernel is used; patch by Steven Scholz
	* openssl: update to 0.9.7g (RSC); fixed configure
	  option for i686 (patch by Oscar Peredo)

2005-05-02 Robert Schwebel <r.schwebel@pengutronix.de>

	* coreutils: added patchin; patch by Benedikt Spranger
	* hosttool-ipkg: typo; patch by Steven Scholz
	* bonnie++: path fix; patch by Steven Scholz
	* rootfs: added configurable arch for ipkgs; patch
	  by Steven Scholz
	* Makefile: added documentation for make images; patch
	  by Thibaut Varene
	* apache, php: added support for apache and PHP; patch by
	  Jiri Nesladek
	* fltk: fixed wildcard install; patch by Steven Scholz
	* troll-ftpd: fixed typo; patch by Pauli Anttila
	  and Ladislav Michl
	* mgetty: fixed path; patch by Pauli Anttila and Ladislav Michl
	* modutils: fixed URL; patch by Pauli Anttila and Ladislav Michl

2005-04-28 Robert Schwebel <r.schwebel@pengutronix.de>

	* libnet: fixed download path
	* util-linux: patch to compile cfdisk, by Garry Thomas

2005-04-27 Robert Schwebel <r.schwebel@pengutronix.de>

	* memstat: added
	* TODO: updated
	* ipkg: several packets ipkgized
	* Makefile: added ipkg consistency test

2005-04-26 Robert Schwebel <r.schwebel@pengutronix.de>

	* ipkgized: gcclibs, strace, utelnetd, zlib,
	  tcpdump, sysutils
	* xchain: removed obsolete kernel xchain stuff;
	  patch by Ladislav Michl
	* smtpclient: fixed permissions; patch by Ladislav Michl
	* hotplug: fixed permissions for directories
	* gnupg: added; patch by Jiri Nesladek

2005-04-25 Robert Schwebel <r.schwebel@pengutronix.de>

	* freetype: freetype214 is now freetype (patch by Steven Scholz)

2005-04-24 Robert Schwebel <r.schwebel@pengutronix.de>

	* ipkg: converted rest of the packets which already used
	  copy_root & friends.
	* glibc: ipkgized; converted macros for toolchain copy
	* proftpd: moved config from rootfs to proftpd packet

2005-04-18 Robert Schwebel <r.schwebel@pengutronix.de>

	* ipkg: adding PTXCONF_IMAGE_IPKG_EXTRA_ARGS; Now one can tell
	  ipkg-build to use tar instead of ar and more. Patch by Steven
	  Scholz
	* sqlite: ipkgized; patch by Ladislav Michl
	* Makefile: changed PROJECT_RULES into PROJECTRULES (typo);
	  patch by Ladislav Michl
	* fltk: config option for fluid cross compilation; patch by
	  Steven Scholz.
	* Rules.make: whitespace cleanup; patch by Ladislav Michl
	* freetype: removed unnecessary dependencies; patch
	  by Steven Scholz

2005-04-14 Robert Schwebel <r.schwebel@pengutronix.de>

	* ipkg: fixed ipkg path; patch by Steven Scholz

2005-04-13 Steven Scholz <steven.scholz@imc-berlin.de>

	* fltk:
	  - update to version 1.1.6
	  - add configuration options
	  - allow cross compile
	  - replaced = by += for autotools options

2005-04-13 Robert Schwebel <r.schwebel@pengutronix.de>

	* makefile: added support for local rules

2005-04-13 Gary Thomas <gary@mlbassoc.com>

	* check_version: fixed macro to work even for fedora and other
	  uggly distributions.

2005-04-12 Ladislav Michl <ladis@linux-mips.org>

	* flex: added for host
	* makefile: fix missing bits of support for custom menues

2005-04-12 Gary Thomas <gary@mlbassoc.com>

	* rules/[mtd,lilo,xfree430,netcat,hosttool-e2fsprogs,e2fsprogs].make:
	  Clear up distinction between toolchain triplet (PTXCONF_GNU_TARGET)
	  and compiler prefix (PTXCONF_COMPILER_PREFIX) as they are not
	  always related 1-1.

2005-04-11 Ladislav Michl <ladis@linux-mips.org>>

	* util-linux: added mount

2005-04-08 Gary Thomas  <gary@mlbassoc.com>

	* rules/bridge-utils.in:
	* rules/bridge-utils.make:
	* rules/networking.in: Add bridge-utils package.
	* rules/rsync.make: Upgrade to latest [available] package.
	* rules/util-linux.in:
	* rules/util-linux.make:
	* local_patches/util-linux+cfdisk.patch:
	  Support building sfdisk, cfdisk for target.

2005-04-08 Robert Schwebel <r.schwebel@pengutronix.de>

	* ipkg: added initial support for ipkg packets
	* menus: added support for custom menues

2005-04-06 Robert Schwebel <r.schwebel@pengutronix.de>

	* setup: add proxy support to 'make setup'.

2005-03-28 Gary Thomas  <gary@mlbassoc.com>

	* rules/wireless.make: Build tools to run on target system.

2005-03-28 Robert Schwebel <r.schwebel@pengutronix.de>

	* shorewall: update to 2.2; patch by Rex Tsai

2005-03-22 Robert Schwebel <r.schwebel@pengutronix.de>

	* 0.7.3 released

2005-03-21 Sascha Hauer <s.hauer@pengutronix.de>

	* configs: the PS1 prompt somehow gets mangled from time
	  to time. We cannot reproduce when it happens, but fix
	  it for the release.

2005-03-20 Robert Schwebel <r.schwebel@pengutronix.de>

	* setup: we now use ~/.ptxdistrc
	* module-init-tools: added variant for hosttools; the
	  kernel tries to depmod the modules, but at least on
	  debian depmod claims that the modules are for the
	  wrong architecture.

2005-03-19 Robert Schwebel <r.schwebel@pengutronix.de>

	* offline building: we have a new mechanism for offline
	  building now. Site configurations, like where the sources
	  directory, patches and feature patches can be found, are
	  now configurable via 'make setup' and a .setup file.
	  Note that the default paths are now $(TOPDIR)/local_src,
	  $(TOPDIR)/local_patches and $(TOPDIR)/local_featurepatches
	* bootdisk: moved content of bootdisk/ into images/
	* expat: added in file for libexpat, to make it selectable

2005-03-13 Robert Schwebel <r.schwebel@pengutronix.de>

	* dropbear: fixed make environment; thanks to
	  Manfred Gruber for showing up the problem.
	* mtd-utils: fixed missing CPPFLAGS
	* Makefile: fixed bogus error messages
	* crosstool: added support for gcc-3.4.3 and
	  glibc-2.3.4 into crosstool patches

2005-03-11 Sascha Hauer <s.hauer@pengutronix.de>

	* 0.7.2 released

2005-03-01 Robert Schwebel <r.schwebel@pengutronix.de>

	* mgetty: add patching support (patch by Steven Scholz)

2005-02-28 Robert Schwebel <r.schwebel@pengutronix.de>

	* images: added support for UBoot ramdisk images; patch
	  by Steven Scholz
	* efax: path fix; patch by Steven Scholz
	* mgetty+sendfax: moved to communication utilities; patch
	  by Steven Scholz.

2005-02-09 Robert Schwebel <r.schwebel@pengutronix.de>

	* general: support for OMAP added (Ladislav Michl)
	* fakeroot: update to 1.2.4 (Robert Schwebel)
	* openssh: update to 3.9p1 (patch by Ladislav Michl)
	* rootfs: make /tmp accessable for all and make it
	  sticky (patch by Ladislav Michl)

2005-02-08 Robert Schwebel <r.schwebel@pengutronix.de>

	* smtpclient: added 1.0.0 (Robert Schwebel)

2005-01-31 Robert Schwebel <r.schwebel@pengutronix.de>

	* libexpat: update to 1.95.8, patch by Benedikt Spranger
	* freetype: update to 2.1.9, patch by Benedikt Spranger
	* glibc: fixed NPTL config dependencies; patch by Benedikt Spranger
	* glibc: support for 2.3.4; patch by Bendikt Spranger
	* libxml2: build without python support by default; patch
	  by Benedikt Spranger
	* netcat: new URL; patch by Benedikt Spranger
	* module-init-tools: added; patch by Ladislav Michl
	* Makefiles: Consolidate CROSS_ENV_; patch by Ladislav Michl

2005-01-20 Robert Schwebel <r.schwebel@pengutronix.de>

	* jffs2: make adding extra arguments to mkfs.jffs2
	  possible (patch by Steven Scholz)
	* mgetty: install callback as suid root (patch
	  by Steven Scholz)
	* source options: add unified path for programs
	  hosted on debian mirrors. Patch by Thibaut Varene.
	* kconfig/lxdialog: updated to version from 2.6.10;
	  kconfig has a unified prefix (PTXCONF_) macro now.
	  Patch by Thibaut Varene.
	* arm0815: added generic arm project (Benedikt Spranger)
	* bash: update to 3.0 (Benedikt Spranger)
	* glibc: support for NPTL and TLS (Benedikt Spranger)
	* procps: added support for more tools (Benedikt Spranger)

2005-01-11 Robert Schwebel <r.schwebel@pengutronix.de>

	* cuckoo-test: remove false positives for terminfo files
	* make xconfig: fixed and works now.
	* fakeroot: update to 1.2.2
	* memedit: renamed fpgaedit to memedit
	* Decided that we need a ChangeLog again :-)
	* scripts/collect-sources.sh: fixes to make this script work (MKL)
	* CVS directory magic: not needed any more on SVN
	* fs2: image creation done by default mechanism
	* efco: use standard mechanisms for etc copying
	* frako: removed relais driver
	* rayonic: fixed configuration, added to audit runs
	* innokom: activated getty, run-parts
	* nge: use coreutils dd instead of busybox; added fpgaedit
	* troll-ftpd: added
	* dropbear: update to 0.43
	* nc: make installable
	* gdb: update to 6.3 and fixed cross compilation (MKL)
	* openssl: fixed crosscomp stuff
	* mgetty: added sendfax support
	* fpgaedit: added
	* procps: update (2.0.16 -> 3.0.4)
	* readline: added
	* coreutils: added dd
	* dialog: added snapshot release

2004-11-16 Robert Schwebel <r.schwebel@pengutronix.de>

	* 0.7.1 released

2004-09-27 Robert Schwebel <r.schwebel@pengutronix.de>

	* 0.7.1 released

2004-02-13 Robert Schwebel <r.schwebel@pengutronix.de>

	* configs: updated to current Kconfig scenario
	* rules/util-linux.in: 'PTXdist goes stoneage': clock added (BSP)
	* mgetty+sendfax: added (BSP)
	* thttpd: cosmetics... (BSP)
	* innokom: udhcpd.conf, init.d/usbnet: Add udhcp config
	  options and USB net start script.
	* dhcp.make: update to later version, but still does not
	  crosscompile.
	* innokom/inittab: Add USB network port.
	* config/innokom.ptxconfig: Enable udhcpd.
	* Makefile: Update version number
	* busybox: Update to BB 1.0.0-pre7
	* kernel: Finally fix feature patch stack mechanism.
	  Should work now as expected...
	* config/innokom.ptxconfig: Fixup configuration for ppp & patch
	  stack
	* config/innokom.ptxconfig: fix correct config file
	* config/kernel/kernel-2.4.19-innokom: fix correct kernel config

	* 0.5.2 released

2004-02-05 Robert Schwebel <r.schwebel@pengutronix.de>
	* xchain: lots of tweaks to make innokom work again
	* glibc: compile with softfloat when target does not have floating
	  point support
	* penguzilla: some bug fixes (BSP)
	* xchain-gcc: made softfloat and multilib configurable options,
	  necessary if you want to build 3.3.2 toolchain for targets
	  without FPU; added gcc-3.3.2 support for x86 target; added new
	  standard target for building a gcc-2.95.3 standalone toolchain
	* grub: added reiserfs tweak; some bugfixing; more network chips
	  supported
	* kernel: don't simply answer yes when oldconfig fails
	* Makefile: fix multiple inclusion of Rules.make & friends
	* rules: fix CROSS_ENV_* variables for preprocessor and cc
	* kconfig: added PTXCONF_PROJECT to have the name available

	* 0.5.1 released

2004-01-05 Robert Schwebel <r.schwebel@pengutronix.de>
	* general: feature patch is merged
	* general: lots of added packages all over the place
	* general: added 'configs' target
	* general: audited supported configurations
	* uclibc: removed for now; it did not configure and
	  compile cleanly. Will be re-added after the problems
	  have been fixed.

	* 0.5.0 released

2003-11-xx Robert Schwebel <r.schwebel@pengutronix.de>

	* distcc: added support (Dan Kegel)

2003-10-23 Robert Schwebel <r.schwebel@pengutronix.de>

	* 0.4.0 released: this is the same as 0.3.25, but starts
	  a new stable series. Next step is that we merge the
	  feature-branch into cvs head and open up a new series.

2003-10-09 Robert Schwebel <r.schwebel@pengutronix.de>

	* glibc: tweaked xchain to not install target binaries in crosschain
	  bin directory (thanks to Kai-Uwe Bloem, Auerswald.
	* 0.3.25 released

2003-10-07 Robert Schwebel <r.schwebel@pengutronix.de>

	* etc: moved innokom directory to new scheme
	  without time stamp (not necessary any more)

2003-10-07 Kai-Uwe Bloem <linux-development@auerswald.de>

	* cramfs tools: added
	* innokom: configuration update

2003-10-xx Robert Schwebel <r.schwebel@pengutronix.de>

	* nmap: Fix nmap to care for the PTXCONF_OPENSSL
	  switch. (Milan Bobde, Ixia)

2003-09-25 Robert Schwebel <r.schwebel@pengutronix.de>

	* Documentation: added attempt of a documentation dir
	* Toplevel Makefile: fixed "dot" detecttion (thanks
	  to Dan Kegel)
	* pcmcia-cs: added initial support, although untested.
	* inetutils: added. (Milan Bobde, Ixia)
	* general: lots of new handy macros (Marc Kleine-Budde)
	* genext2fs: added, untested. (Milan Bobde, Ixia)
	* ltt: fixed cross compilation (Kai-Uwe Bloem, Auerswald)

2003-09-19 Robert Schwebel <r.schwebel@pengutronix.de>

	* Rules.make: fixed get_patches.
	  Kai-Uwe Bloem <linux-development@auerswald.de>
	* rootdir: replaced platform dependend links in rootdir by new
	  mechanism: run a per-platform makefile (rules/vendor-tweaks/*)
	  which is configurable. Idea by Kai-Uwe Bloem, Implementation
	  Robert Schwebel
	* ltt: changed visualizer to be compiled for host; fix by
	  Kai-Uwe Bloem.

2003-09-18 Robert Schwebel <r.schwebel@pengutronix.de>
	* forgotten topics for 0.3.24 changelog (sorry 'bout that):
	* pdksh: added;  Kai-Uwe Bloem <linux-development@auerswald.de>
	* ltt: added; Kai-Uwe Bloem
	* gdb/gdbserver: Kai-Uwe Bloem
	* strace: Kai-Uwe Bloem

2003-09-17 Robert Schwebel <r.schwebel@pengutronix.de>
	* patch system: added generic patch system which gets patches
	  from a web repository; inserted all of Dan Kegel's patches
	* ltt: added support for Linux Trace Toolkit
	* general: Execute dot only when available and avoid error otherwhise.
	* general: made root/ directory configurable
	* general: introduced generic architecture support file in
	  config/arch/
	* configs: added configurations for roi-eics, scII-bmwm, scII-cameron;
	  updated innokom configs
	* toplevel make: added getclean target; fixes in archive mechanism
	* config: support for extra CFLAGS and CXXFLAGS
	* general: add customer specific "addons" directory
	* kernel: support for linux-2.4.22
	* rtai: support for rtai-24.1.11
	* mtd: added mkjffs2 tools
	* libnet: added support for libnet
	* mips: support for big and little endian
	* busybox: update to 1.00-pre3; configuration allows multiple bbs now.
	* XFree86: added
	* Mozilla-Firebird: added
	* NEWPACKET: added script to support creation of new rules files
	* 0.3.24 released

2003-08-14 Robert Schwebel <r.schwebel@pengutronix.de>
	* Preparation for release
	* glibc: some fixes to find out where the _G_config.h problem comes
	  from. This is still not resolved but I release anyway to test it
	  on other systems; currently the generic configuration is reported
	  to work on Debian stable and testing systems but fails on unstable
	  here. More research has to be done...
	* 0.3.23 released

2003-08-08 Robert Schwebel <r.schwebel@pengutronix.de>
	* Config: i386-generic-glibc configuration added
	* rayonic config: use GNU libio (workaround for _G_config.h not
	  being found under uncontrolled conditions...)
	* Makefile: .rtaiconfig added, also to distclean; bootimage removal
	  fixed; logfile removal fixed.
	* rules/bootdisk.make: fixed Rayonic bootdisk to work again.
	* rules/zebra.make; rules/wireless.make; rules/flash.make added

2003-06-24 Kai-Uwe Bloem <linux-development@auerswald.de>
	* innokom configs:  updated
	* innokom /etc template: largely reworked
	* added: pdksh
	* added: strace
	* added: gdb and gdbserver

2003-04-28 Marc Kleine-Budde <kleine-budde@gmx.de>
	* openssl.make: openssl.prepare: deps on gccstage2.install if
	xcompiler is selected
	* openssl.make: added support for 386 and i586 targets

2003-04-27 Marc Kleine-Budde <kleine-budde@gmx.de>
	* Config.in: added 586 target
	* e2fsprogs.make: target clean cleans now builddir
	* grub.make: the crosscompiler is now used
	* grub.make: fix typo: --disable-enable-cs89x0

2003-04-25 Marc Kleine-Budde <kleine-budde@gmx.de>
	* xchain-kernel.make: introduced xchain_kernel_extact_deps, only
	depending on MTD if wanted (saves us downloding MTD if not needed)
	* xchain-gccstage1.make: changed GCC_PREFIX to PTXCONF_GNU_TARGET
	* xchain-gccstage2.make: xchain-gccstage2_prepare: made threads in
	gcc depending on glibc threads
	* xchain-gccstage2.make: xchain-gccstage2_compile: removed -Os
	from CXXFLAGS_FOR_TARGET, because gcc doesn't like opts.
	[see: http://www.linuxfromscratch.org/view/3.3/chapter06/gcc.html]

2003-04-24 Marc Kleine-Budde <kleine-budde@gmx.de>

	* xchain-glibc.make: glibc.targetinstall: changed the names of the
	libs, they have the same name as beeing installed by glibc's make
	install
	* bash.make: bash-prepare: added deps to gccstage2 if defined
	xchain
	* e2fsprogs.make: e2fsprogs-prepare: added deps to gccstage2 if
	defined xchain
	* Makefile: target clean and rootclean, are deleting now
	* xchain-glibc.make: glibc_get: changed dep from glibc-base.get to
	glibc.get, to get the patches too

2003-04-23 Marc Kleine-Budde <kleine-budde@gmx.de>

	* xchain-kernel.make: xchain-kernel.prepare: removed touch of
	autoconf.h, that's done already in xchain-kernel.extract
	* xchain-gccstage1.make: xchain-gccstage1.prepare: removed touch
	of autoconf, and 'construction' of version.h, that's done already
	in xchain-kernel.extract
	* xchain-glibc.make: glibc-prepare: removed optimisation from
	GLIBC_CFLAGS (like -mpcu)
	[see: http://www.linuxfromscratch.org/view/3.3/chapter05/gcc.html]
	* Config.in: make GRUB dependend on X86

2003-04-22 Marc Kleine-Budde <kleine-budde@gmx.de>

	* openssh.make: changed URL, points now to existing sources
	* openssl.make: changed URL, points now to existing sources

2003-04-20 Marc Kleine-Budde <kleine-budde@gmx.de>

	* Config.in: added Kernel image format vmlinux
	* xchain-kernel.make: handles now vmlinux kernel format
	* xchain-kernel.make: added arch to KERNEL_TARGET_PATH for zImage
	and bzImage
	* xchain-kernel.make: removed double rule
	$(STATEDIR)/xchain-kernel.get
	* xchain-kernel.make: xchain-kernel.extract: version.h is now
	automatically generated by kernel's make
	* xchain-kernel.make: kernel.prepare: ARCH in kernel's Makefile is
	now always setted to PTXCONF_ARCH
	* xchain-kernel.make: kernel.prepare: CROSS_COMPILE in kernel's
	Makefile is now always setted to PTXCONF_GNU_TARGET
	* xchain-kernel.make: kernel.targetinstall: copying the kernel to
	rootdir is now arch independent, using KERNEL_TAGET_PATH
	* bootdisk.make: copying the kernel to bootdisk is now arch
	independent, using KERNEL_TARGET_PATH
	* bootdisk.make: added link from menu.lst to grub.conf, cause new
	grub version use grub.conf

2003-04-19 Robert Schwebel <r.schwebel@pengutronix.de>

	* Rules.make: added GNU_HOST to get rid of hardcoded x86 compilers
	* config system: ARM architecture dependency fixed
	* glibc: libutil strip fixed
	* general: 0.3.22 released

2003-04-03 Robert Schwebel <r.schwebel@pengutronix.de>

	* openssh/openssl: added configuration option
	* x86: configuration re-tested; minor bugs fixed for portmap,
	  glibc, mtdtools etc., to make this configuration compile again.
	* general: 0.3.21 released

2003-03-15 Robert Schwebel <r.schwebel@pengutronix.de>

	* portmapper: added version 4
	* tcpwrapper: added version 7.6
	* autoconf257: added autoconf version 2.57, for nfs-utils
	* nfs-utils: version 1.0.1 added
	* general: several typos fixed
	* bash: fixed ruleset for bash; tested config options
	* general: 0.3.20 finalized

2003-03-05  Robert Schwebel <r.schwebel@pengutronix.de>

	* kernel: zImage was accidently always copied to the target
	* rootfs: fixed directory creation bugs
	* rootfs: fixes to make it work with several templates
	* general: 0.3.19 finalized

2003-03-04  Robert Schwebel <r.schwebel@pengutronix.de>

	* rules: fix for .get dependencies, introduced get target
	* general: 0.3.18 finalized

2003-03-04  Robert Schwebel <r.schwebel@pengutronix.de>

	* kernel: workaround for xchain-kernel kernel sources
	* zlib: dependency bug fixed; separated into zlib and xchain-zlib.
	* general: 0.3.17 finalized

2003-03-02  Robert Schwebel <r.schwebel@pengutronix.de>

	* config system: updated to the linux-2.5.63 version of kconfig and
	  lxdialog. Fixed missing 'make clean' for lxdialog.
	* kernel: new config options for choosing which kernel image format
	  shall be used. The kernel can now optionally be installed on the
	  target system (e.g. for jffs partitions).
	* kernel: split kernel package into kernel and xchain-kernel. This
	  avoids that the complete toolchain is recompiled when you change
	  something for the kernel (like patching it with RTAI).
	* mtd: added package for MTD CVS snapshots, including the MTD user
	  space utilities.
	* general: 0.3.16 finalized

2003-02-17  Robert Schwebel <r.schwebel@pengutronix.de>

	* ncurses: made ncurses compile with i386 cross environment
	* rtai: separated rtai-patches from other rtai stuff
	* glibc: fixed gcc-2.95.3 bug for x86
	* general: 0.3.15 finalized

2003-01-28  Robert Schwebel <r.schwebel@pengutronix.de>

	* openssl,openssh: added initial support (untested)
	* busybox: fixed configuration for strange register dump problem.
	  XScale environment can be compiled now.
	* general: 0.3.14 finalized


2003-01-14  Robert Schwebel <r.schwebel@pengutronix.de>

	* busybox: kconfig transition finished. This should work now.

	* general: 0.3.13 finalized

2003-01-11  Robert Schwebel <r.schwebel@pengutronix.de>

	* busybox: busybox-0.61.pre-ptx3 added, based on CVS snapshot
	  from 2002/12/10. This version of busybox is based on kconfig,
	  so it is possible to integrate this into our config system again.

	* general: 0.3.12 finalized; this is an intermediate release; don't
	  use it for production systems.

2002-11-16  Robert Schwebel <r.schwebel@pengutronix.de>

	* general: fixed everything to make it work with the new
	  configuration system

	* config system: ported to use the latest version from linux-2.5.47.
	  I assume this will be the way to go in the future, as lkc doesn't
	  seem to be supported as a separate package any more.

	* config system: fixed .config load bug

	* general: 0.3.11 finalized

2002-11-08  Robert Schwebel <r.schwebel@pengutronix.de>

	* config system: added lkc support

	* general: 0.3.10 finalized


2002-10-27  Robert Schwebel <r.schwebel@pengutronix.de>

	* ptxflash: /tmp and /home directory added

	* general: 0.3.9 finalized.


2002-10-13  Robert Schwebel <r.schwebel@pengutronix.de>

	* glibc: now we install libnss_* to the target, which (surprise!) was
	the reason why proftpd didn't want to let our users login until now.

	* general: 0.3.8 finalized.

2002-10-12  Robert Schwebel <r.schwebel@pengutronix.de>

	* proftpd: added to the distribution.

	* glibc: support for glibc-2.2.3 added

	* general: 0.3.7 finalized.

2002-10-07  Robert Schwebel <r.schwebel@pengutronix.de>

	* menuconfig: bug fixed: use correct config file as default

	* lsh: key generation for target does work now.

	* glibc: option for libm installation added.

	* general: bugfixing; 0.3.6 finalized.

2002-10-04  Robert Schwebel <r.schwebel@pengutronix.de>

	* ptxflash: Utility to make a self contained bootstrap;
	this is currently highly specific to the MOPSlcd4 board...

	* grub: GNU GRUB can now be installed; you can choose to
	build a bootdisk for the target system in $PTXDIST/bootdisk.

	* e2fsprog: integrated, so we have mke2fs now. Has to be
	better configurable.

	* Makefile: rootclean target re-introduced.

	* rtai: RTAI is now integrated. Needs more testing.

	* config system: version number fixed. The archive target gives a
	warning now, we should change this to a permanent fix.

	* lsh: lsh added. This requires packets for zlib, libgmp,
	liboop and nettle which have been installed.

2002-09-30  Robert Schwebel <r.schwebel@pengutronix.de>

	* busybox: works now for ARM. The route applet has a bug and
	cannot be compiled, but this is an upstream problem.

	* toolchain: first release with a working toolchain! gcc stage
	two is now able to compile kernel 2.4.18, busybox 0.61-pre-ptx1
	and glibc-2.2.5.

	* general: 0.3.4 finalized.

2002-09-26  Robert Schwebel <r.schwebel@pengutronix.de>

	* busybox: added a makefile for busybox, currently only for an
	unstable version from CVS. This will be changed to stable once
	Erik Andersen has made a release.

	* x86 port: backported makefiles to support compilation for a x86 based
	target system.

	* toolchain: the cross toolchain does still have major bugs
	concerning the compiled in paths.


2002-09-20  Robert Schwebel <r.schwebel@pengutronix.de>

	* general: several bugs fixed which prevented the system from being
	compiled without having a toolchain right from the beginning.

	* general: 0.3.2 finalized. This is the first version which has all
	the infrastructure for making a complete cross toolchain for ARM.