summaryrefslogtreecommitdiffstats
path: root/c/src/ChangeLog
blob: c4dc9ca9abc1813d4d5015f33d770011ecb8bbef (plain) (blame)
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
2004-09-24	Ralf Corsepius <ralf_corsepius@rtems.org>

	* configure.ac: Require automake > 1.9.

2004-09-24	Ralf Corsepius <ralf_corsepius@rtems.org>

	* aclocal/rtems-cpu-subdirs.m4: Add avr.

2004-09-21	Ralf Corsepius <ralf_corsepius@rtems.org>

	* aclocal/gcc-weak.m4: New (Extracted from cpukit/configure.ac).
	* configure.ac: Add RTEMS_CHECK_GCC_WEAK.

2004-08-17	Ralf Corsepius <ralf_corsepius@rtems.org>

	* aclocal/ppc.m4 (RTEMS_PPC_EXCEPTIONS): Quote ac_popdir uses.
	* aclocal/target.m4 (_RTEMS_POP_BUILDDIR): Ditto.

2004-08-17	Ralf Corsepius <ralf_corsepius@rtems.org>

	* acinclude.m4 (_RTEMS_CONFIG_SUBDIR): Quote ac_popdir uses.

2004-07-28  Joel Sherrill <joel@OARcorp.com>

    * aclocal/version.m4: Updated to rtems-4.6.99.1.

2004-07-25	Joel Sherrill <joel@OARcorp.com>

	* libchip/network/if_fxp.c: Add include of <sys/errno.h>.

2004-05-21  Till Strauman <strauman@slac.stanford.edu>

	PR 625/networking
	* libchip/network/dec21140.c, ... : Prevent name clashes by making
	'ld_le32()' etc.  static inlines.  Let dec21140 attach routine return
	an error rather than panic if no chip is detected (thus allowing
	for probing).
	* libchip/network/elnk.c: Let elnk bail out if autoneg never completes
	instead of looping forever.  Avoid divide by zero (crashed my PC).
	* libchip/network/if_fxp.c: Enable more fxp chip variants but warn that
	they are UNTESTED.

2004-05-10	Ralf Corsepius <ralf_corsepius@rtems.org>

	* aclocal/check-cxx.m4: Remove CPLUS_LD_LIBS.

2004-04-20	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libchip/network/dec21140.c, libchip/network/elnk.c:
	#include <errno.h>.

2004-04-20	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libchip/network/if_media.h: Update from FreeBSD.
	* libchip/network/open_eth.c, libchip/network/cs8900.c, 
	libchip/network/i82586.c: #include <errno.h>.

2004-04-14	Ralf Corsepius <ralf_corsepius@rtems.org>

	* aclocal/rtems-top.4: Remove RTEMS_ROOT (Obsolete).

2004-04-14	Ralf Corsepius <ralf_corsepius@rtems.org>

	* aclocal/rtems-top.m4: Add project_top/with_project_top processing.

2004-04-09	Ralf Corsepius <ralf_corsepius@rtems.org>

	* optman/Makefile.am: Set EXEEXT = <empty> (Work around to a bug in
	automake).

2004-04-03	Wilfried Busalski <w.busalski@lancier-monitoring.de>

	PR 599/pppd
	* libnetworking/pppd/chat.c: Free memory that is allocated to fix leak.

2004-04-02	Ralf Corsepius <ralf_corsepius@rtems.org>

	* optman/rtems/no-region.c: Reflect having changed
	rtems_region_get_segment_size.

2004-04-01	Ralf Corsepius <ralf_corsepius@rtems.org>

	* librdbg/src/i386/rdbg_cpu_asm.S: Include <rtems/asm.h> instead of <asm.h>.
	* librdbg/src/m68k/rdbg_cpu_asm.S: Include <rtems/asm.h> instead of <asm.h>.
	* librdbg/src/powerpc/rdbg_cpu_asm.S: Include <rtems/asm.h> instead of <asm.h>.
	* libchip/ide/ata.c: Include <rtems/chain.h> instead of <chain.h>.
	* libchip/ide/ide_controller.c: Include <rtems/chain.h> instead of <chain.h>.
	* libchip/shmdr/shm_driver.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
	* libchip/serial/ns16550.c: Include <rtems/ringbuf.h> instead of <ringbuf.h>.

2004-03-31	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libchip/ide/ata.c, libchip/network/dec21140.c,
	libchip/network/elnk.c, libchip/network/i82586.c,
	libchip/network/if_fxp.c, libchip/network/if_fxpvar.h,
	libchip/network/open_eth.c, libchip/network/sonic.c,
	libchip/rtc/icm7170.c, libchip/serial/ns16550.c,
	libchip/serial/z85c30.c, libchip/shmdr/cnvpkt.c,
	libchip/shmdr/init.c, libchip/shmdr/intr.c,
	libchip/shmdr/shm_driver.h: Cosmetics.

2004-03-31	Ralf Corsepius <ralf_corsepius@rtems.org>

	* optman/rtems/no-dpmem.c, optman/rtems/no-mp.c,
	optman/rtems/no-msg.c, optman/rtems/no-part.c,
	optman/rtems/no-region.c, optman/rtems/no-rtmon.c,
	optman/rtems/no-sem.c, optman/rtems/no-timer.c,
	optman/sapi/no-ext.c, optman/sapi/no-io.c: Convert to using c99
	fixed size types.

2004-03-31	Ralf Corsepius <ralf_corsepius@rtems.org>

	* configure.ac: Explicitly pass --includedir and --libdir to
	cpukit/configure.

2004-03-30	Ralf Corsepius <ralf_corsepius@rtems.org>

	* librdbg/Makefile.am: Fix rpcgen rules.
	* librdbg/src/i386/any/remdeb_xdr.c,
	librdbg/src/m68k/any/remdeb_xdr.c,
	librdbg/src/powerpc/new_exception_processing/remdeb_xdr.c:
	Reflect changes to librdbg/Makefile.am.

2004-03-29	Ralf Corsepius <ralf_corsepius@rtems.org>

	* configure.ac: Reflect changes testsuites/configure.ac and
	cpukit/configure.ac.

2004-03-26	Ralf Corsepius <ralf_corsepius@rtems.org>

	* aclocal/rtems-top.m4:  Add 2nd arg to RTEMS_TOP.
	Rework with_project_root/PROJECT_ROOT and with_project_top/PROJECT_TOPdir.

2004-03-25	Ralf Corsepius <ralf_corsepius@rtems.org>

	* configure.ac: Reflect changes to testsuites's configuration.

2004-03-23	Ralf Corsepius <ralf_corsepius@rtems.org>

	PR/589 rtems
	* libchip/network/pci.h: Remove (Moved to cpukit).

2004-03-23	Ralf Corsepius <ralf_corsepius@rtems.org>

	* libchip/ide/ata.c, libchip/ide/ata_internal.h,
	libchip/ide/ide_controller.c, libchip/ide/ide_ctrl_cfg.h,
	libchip/ide/ide_ctrl_io.h, libchip/network/cs8900.c,
	libchip/network/dec21140.c, libchip/network/elnk.c,
	libchip/network/if_fxp.c, libchip/network/open_eth.c,
	libchip/network/open_eth.h, libchip/network/sonic.c,
	libchip/network/sonic.h, libchip/rtc/icm7170.c, libchip/rtc/icm7170.h,
	libchip/rtc/icm7170_reg.c, libchip/rtc/icm7170_reg2.c,
	libchip/rtc/icm7170_reg4.c, libchip/rtc/icm7170_reg8.c,
	libchip/rtc/m48t08.c, libchip/rtc/m48t08.h, libchip/rtc/m48t08_reg.c,
	libchip/rtc/m48t08_reg2.c, libchip/rtc/m48t08_reg4.c,
	libchip/rtc/m48t08_reg8.c, libchip/rtc/rtc.h, libchip/serial/mc68681.c,
	libchip/serial/mc68681.h, libchip/serial/mc68681_reg.c,
	libchip/serial/mc68681_reg2.c, libchip/serial/mc68681_reg4.c,
	libchip/serial/mc68681_reg8.c, libchip/serial/ns16550.c,
	libchip/serial/ns16550_p.h, libchip/serial/serial.h,
	libchip/serial/z85c30.c, libchip/serial/z85c30.h,
	libchip/serial/z85c30_p.h, libchip/serial/z85c30_reg.c,
	libchip/shmdr/addlq.c, libchip/shmdr/cnvpkt.c, libchip/shmdr/dump.c,
	libchip/shmdr/fatal.c, libchip/shmdr/getlq.c, libchip/shmdr/init.c,
	libchip/shmdr/initlq.c, libchip/shmdr/intr.c, libchip/shmdr/poll.c,
	libchip/shmdr/send.c, libchip/shmdr/shm_driver.h: Convert to using c99
	fixed-size types.

2004-03-14	Chris Johns  <chrisj@rtems.org>

	* libchip/network/cs8900.c.bsp, libchip/network/cs8900.h.bsp: Updated
	the BSP example code.
	* libchip/network/cs8900.c, libchip/network/cs8900.h: Changes made to
	support the DIMMPC. This is a pc386 target with IO port support. Minor
	formating clean up. Add documentation to the header file.
	* libchip/network/README.cs8900: The CS8900 driver is documented in the
	cs8900.h header file.

2004-03-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libchip/network/dec21140.c: Use __PPC__ instead of __PPC.
	Cosmetics.

2004-03-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/canonicalize-tools.m4: Revert Joel's 2004-03-04's patch.
	There are no application level Makefiles in here.

2004-03-04	Joel Sherrill <joel@OARcorp.com>

	* aclocal/canonicalize-tools.m4: Add SIZE, NM, and OBJCOPY so
	they can be used in application level makefiles.

2004-03-05	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/rtems_webserver/ejparse.c,
	libnetworking/rtems_webserver/emfdb.c,
	libnetworking/rtems_webserver/sock.c,
	libnetworking/rtems_webserver/socket.c,
	libnetworking/rtems_webserver/sym.c,
	libnetworking/rtems_webserver/webs.c,
	libnetworking/rtems_webserver/websuemf.c: Remove warnings.
2004-03-05	Joel Sherrill <joel@OARcorp.com>

	* libchipnetwork/open_eth.c: Remove warnings by conditionally
	compiling this file only only those CPU families with supported
	exception models.

2004-02-20	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* acinclude.m4: Fix loosing arguments when configuring cpukit and
	testsuites (Was exposed with --enable-multilib, only).
	Remove RTEMS_SUBCONFIGURE_ARGS_QUOTE. RTEMS_CONFIG_SUBDIR.
	 Add RTEMS_BSP_CONFIG_SUBDIR.
	* configure.ac: Reflect changes to acinclude.m4. Reflect new args to
	testsuites's configure.
	* aclocal/rtems-top.m4: Remove ENDIF hack. 
	Rework and fix setting up PROJECT_TOPdir (PACKHEX wasn't found).

2004-02-20	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libchip/Makefile.am, librdbg/Makefile.am, optman/Makefile.am, 
	wrapup/Makefile.am: Fix automake problems having been introduced 
	in previous patch.

2004-02-19	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libchip/Makefile.am, librdbg/Makefile.am, optman/Makefile.am:
	Preinstall dirs.
	* wrapup/Makefile.am: Preinstall dirs. Cosmetics.
	* aclocal/check-multiprocessing.m4: Cosmetics.
	* aclocal/env-rtemsbsp.m4: Remove RTEMS_ROOT.
	* aclocal/project-root.m4: Remove obsolete comments. Remove PACKHEX.

2004-02-17	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* librdbg/Makefile.am: Merge-in librdbg/include/Makefile.am,
	librdbg/src/Makefile.am.
	* librdbg/include/Makefile.am, librdbg/src/Makefile.am: Remove.
	* configure.ac: Reflect changes above. 
	Unconditionally apply RTEMS_CHECK_MULTIPROCESSING.
	* wrapup/Makefile.am: Reflect changes above.
	* Makefile.am: Add DIST_SUBDIRS = @BSP_SUBDIRS@.

2004-02-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/check-rdbg.m4: Don't AC_SUBST(HAS_RDBG).

2004-02-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: DISTCLEANFILES += @CUSTOM_CFG_FILES.

2004-02-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Reflect new location of librdbg.a.

2004-02-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* librdbg/src/i386/Makefile.am, librdbg/src/m68k/Makefile.am,
	librdbg/src/powerpc/Makefile.am: Remove.
	* librdbg/src/Makefile.am: Merge-in librdbg/src/i386/Makefile.am, 
	librdbg/src/m68k/Makefile.am, librdbg/src/powerpc/Makefile.am.
	* configure.ac: Reflect changes above.

2004-02-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>


2004-02-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/canonicalize-tools.m4: Don't check for NM, OBJCOPY, SIZE,
	STRIP.

2004-02-13	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* librdbg/include/Makefile.am: Merge-in
	librdbg/include/rdbg/i386/Makefile.am,
	librdbg/include/rdbg/m68k/Makefile.am, librdbg/include/rdbg/Makefile.am,
	librdbg/include/rdbg/powerpc/Makefile.am.
	* librdbg/include/rdbg/i386/Makefile.am,
	librdbg/include/rdbg/m68k/Makefile.am, librdbg/include/rdbg/Makefile.am,
	librdbg/include/rdbg/powerpc/Makefile.am: Remove.
	* configure.ac: Reflect changes above.

2004-02-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Use AS_HELP_STRING(ada).

2004-02-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/bspopts.m4: Use AS_HELP_STRING.
	* aclocal/bsp-configure.m4: Require autoconf-2.59.
	Use AC_CONFIG_HEADERS.
	* aclocal/check-custom-bsp.m4: Add bspkit-support.
	* aclocal/enable-rtemsbsp.m4: Use AS_HELP_STRING.

2004-02-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: include local.am.

2004-02-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/version.m4: 4.6.99.0.

2004-02-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Don't include host.am.
	* automake/compile.am: Further cleanups.

2004-02-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/lib.am: Remove (Unused).

2004-02-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Don't include lib.am.
	* automake/compile.am: Use automake compilation rules.

2004-02-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/pppd/Makefile.am,
	libnetworking/rtems_servers/Makefile.am,
	libnetworking/rtems_telnetd/Makefile.am,
	libnetworking/rtems_webserver/Makefile.am, optman/Makefile.am,
	support/Makefile.am: Don't include lib.am.

2004-02-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libchip/Makefile.am: Don't include lib.am.
	* librdbg/src/i386/Makefile.am,	librdbg/src/m68k/Makefile.am, 
	librdbg/src/powerpc/Makefile.am: Don't include lib.am. Remove
	unnecessary EXTRA_DISTs.

2004-02-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Add powerpc's <bsp>/wrapup/Makefile.am detection
	hack.

2004-02-03	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/rtems_webserver/Makefile.am: Add PREINSTALL_DIRS.
	* libnetworking/rtems_telnetd/Makefile.am: Add PREINSTALL_DIRS.
	* libnetworking/rtems_servers/Makefile.am: Add PREINSTALL_DIRS.
	* libnetworking/pppd/Makefile.am: Add PREINSTALL_DIRS.

2004-02-02	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/check-multiprocessing.m4: Remove AC_SUBST(HAS_MP).
	Add AM_CONDITIONAL(HAS_MP).
	* wrapup/Makefile.am: Fix path to ../libchip/shmdr.rel.
	* configure.ac: Remove AM_CONDITIONAL(HAS_MP).
	* aclocal/enable-cxx.m4, aclocal/enable-itron.m4,
	aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4,
	aclocal/enable-posix.m4, aclocal/enable-rdbg.m4,
	aclocal/multilib.m4: Use AS_HELP_STRING instead of AC_HELP_STRING
	(Deprecated by autoconf 2.59).

2004-01-27	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Add AM_CONDITIONAL HAS_WRAPUP_LIBBSP.
	* wrapup/Makefile.am: Add AM_CONDITIONAL HAS_WRAPUP_LIBBSP.

2004-01-23	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* ChangeLog: Merge-in libnetworking/ChangeLog.
	* libnetworking/ChangeLog: Remove.
	* ChangeLog: Merge-in librdbg/ChangeLog.
	* librdbg/ChangeLog: Remove.
	* ChangeLog: Merge-in libchip/ChangeLog.
	* libchip/ChangeLog: Remove.
	* ChangeLog: Merge-in optman/ChangeLog.
	* optman/ChangeLog: Remove.

2004-01-21	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Reflect changes to cpukit.
	* wrapup/Makefile.am: Reflect changes to librdbg.
	* aclocal/enable-bare.m4: Convert to autoconf-2.59.
	* libchip/Makefile.am: Add PREINSTALL_DIRS.
	* librdbg/include/rdbg/Makefile.am: Add PREINSTALL_DIRS.
	* librdbg/include/rdbg/i386/Makefile.am: Add PREINSTALL_DIRS.
	* librdbg/include/rdbg/m68k/Makefile.am: Add PREINSTALL_DIRS.
	* librdbg/include/rdbg/powerpc/Makefile.am: Add PREINSTALL_DIRS.
	* librdbg/src/i386/Makefile.am: Add PREINSTALL_DIRS.
	* librdbg/src/m68k/Makefile.am: Add PREINSTALL_DIRS.
	* librdbg/src/powerpc/Makefile.am: Add PREINSTALL_DIRS.

2004-01-17	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/rtems-top.m4: Remove check for version.m4.
	* automake/compile.am: Remove LINK_OBJS, LINK_FILES (Unused).

2004-01-15	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Add RTEMS_RELLDFLAGS. Remove XLDFLAGS.
	* wrapup/Makefile.am: Reflect changes to libchip/*.
	* support/Makefile.am: Use automake compilation rules.
	* wrapup/Makefile.am: Reflect changes to support/*.
	* configure.ac: Remove libnetworking/wrapup/Makefile.
	* wrapup/Makefile.am: Reflect change to libnetworking/*. Use
	libnetworking/*/lib*.a instead of libnetapps.a.
	* configure.ac: Add subdir-objects to AUTOMAKE_OPTIONS. Require
	automake-1.8.2. Add RTEMS_PROG_CCAS. Add AM_PROG_CC_C_O.
	* optman/Makefile.am: Use automake compilation rules.
	* libchip/Makefile.am: Fix typo in previous patch.
	* libchip/Makefile.am: Use automake compilation rules.
	* libnetworking/Makefile.am: Remove wrapup.
	* libnetworking/pppd/Makefile.am: Build libpppd. Use
	automake-compilation rules.
	* libnetworking/rtems_servers/Makefile.am: Build libftpd. Use
	automake-compilation rules.
	* libnetworking/rtems_telnetd/Makefile.am: Build libtelnetd. Use
	automake-compilation rules.
	* libnetworking/rtems_webserver/Makefile.am: Build libhttpd. Use
	automake-compilation rules.
	* libnetworking/wrapup/Makefile.am: Remove (Unused).

2004-01-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES. Add
	PRE/TMPINSTALL_FILES to CLEANFILES.
	* automake/lib.am: Remove TMPINSTALL_FILES.
	* optman/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES. Add
	PRE/TMPINSTALL_FILES to CLEANFILES.
	* libchip/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES. Add
	PRE/TMPINSTALL_FILES to CLEANFILES.
	* librdbg/include/rdbg/Makefile.am: Re-add dirstamps to
	PRE/TMPINSTALL_FILES. Add PRE/TMPINSTALL_FILES to CLEANFILES.
	* librdbg/include/rdbg/i386/Makefile.am: Ditto.
	* librdbg/include/rdbg/m68k/Makefile.am: Ditto.
	* librdbg/include/rdbg/powerpc/Makefile.am: Ditto.
	* librdbg/src/i386/Makefile.am: Ditto.
	* librdbg/src/m68k/Makefile.am: Ditto.
	* librdbg/src/powerpc/Makefile.am: Ditto.
	* libnetworking/pppd/Makefile.am: Re-add dirstamps to
	PRE/TMPINSTALL_FILES. Add PRE/TMPINSTALL_FILES to CLEANFILES.
	* libnetworking/rtems_servers/Makefile.am: Ditto.
	* libnetworking/rtems_telnetd/Makefile.am: Ditto.
	* libnetworking/rtems_webserver/Makefile.am: Ditto.

2004-01-07	Joel Sherrill <joel@OARcorp.com>

	* aclocal/rtems-cpu-subdirs.m4: mips64orion port removed as mips port
	more completely covers the MIPS family.

2003-12-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Reflect changes to shmdr.
	* libchip/Makefile.am: Add shmdr. Use noinst_DATA instead of TMP_LIBS.

2003-12-18	Joel Sherrill <joel@OARcorp.com>

	* libchip/shmdr/addlq.c, libchip/shmdr/cnvpkt.c, libchip/shmdr/dump.c,
	libchip/shmdr/fatal.c, libchip/shmdr/getlq.c, libchip/shmdr/getpkt.c,
	libchip/shmdr/init.c, libchip/shmdr/initlq.c, libchip/shmdr/intr.c,
	libchip/shmdr/mpci.h, libchip/shmdr/mpisr.c, libchip/shmdr/poll.c,
	libchip/shmdr/README, libchip/shmdr/receive.c, libchip/shmdr/retpkt.c,
	libchip/shmdr/send.c, libchip/shmdr/setckvec.c,
	libchip/shmdr/shm_driver.h: Copied from libbsp/shmdr.

2003-12-17	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-20031217-test.

2003-12-17	

	* c/src/aclocal/version.m4: Updated to rtems-20031217-test.
	* c/src/aclocal/version.m4: Updated to rtems-20031217-test.

2003-12-15	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Remove LINK_LIBS (Unused).
	* configure.ac: Reflect changes to RTEMS_CONFIG_SUBDIR.

2003-12-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
	* wrapup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
	* acinclude.m4: Rework RTEMS_CONFIG_SUBDIR.
	* Makefile.am: Reflect changes to RTEMS_CONFIG_SUBDIR.
	* support/Makefile.am: Pass @RTEMS_BSP@ to AM_CPPFLAGS.

2003-12-13	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/env-rtemsbsp.m4: Add PROJECT_LIB.
	* wrapup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
	* optman/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
	* libchip/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
	* librdbg/src/i386/Makefile.am:
	s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
	* librdbg/src/m68k/Makefile.am:
	s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
	* librdbg/src/powerpc/Makefile.am:
	s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.

2003-12-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
	* aclocal/lead-dot.m4: Remove (Provided by automake-1.8).
	* automake/compile.am: Use mkdir_p instead of mkinstalldirs.
	* automake/lib.am: Use mkdir_p instead of mkdir. Remove
	$(PROJECT_RELEASE)/lib/$(dirstamp) handling.
	* aclocal/env-rtemsbsp.m4: Remove bsplibdir. Cleanups.
	* configure.ac: Require automake >= 1.8, autoconf >= 2.59.
	* optman/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
	* optman/Makefile.am: Remove project_libdir.
	* libchip/Makefile.am: Use mkdir_p. Remove dirs from
	PRE/TMPINSTALL_FILES.
	* librdbg/include/rdbg/Makefile.am: Use mkdir_p. Remove dirs from
	PRE/TMPINSTALL_FILES.
	* librdbg/include/rdbg/i386/Makefile.am: Use mkdir_p. Remove dirs from
	PRE/TMPINSTALL_FILES.
	* librdbg/include/rdbg/m68k/Makefile.am: Use mkdir_p. Remove dirs from
	PRE/TMPINSTALL_FILES.
	* librdbg/include/rdbg/powerpc/Makefile.am: Use mkdir_p. Remove dirs
	from PRE/TMPINSTALL_FILES.
	* librdbg/src/i386/Makefile.am: Use mkdir_p. Remove dirs from
	PRE/TMPINSTALL_FILES.
	* librdbg/src/m68k/Makefile.am: Use mkdir_p. Remove dirs from
	PRE/TMPINSTALL_FILES.
	* librdbg/src/powerpc/Makefile.am: Use mkdir_p. Remove dirs from
	PRE/TMPINSTALL_FILES.
	* libnetworking/pppd/Makefile.am: Use mkdir_p. Remove dirs from
	PRE/TMPINSTALL_FILES.
	* libnetworking/rtems_servers/Makefile.am: Use mkdir_p. Remove dirs from
	PRE/TMPINSTALL_FILES.
	* libnetworking/rtems_telnetd/Makefile.am: Use mkdir_p. Remove dirs from
	PRE/TMPINSTALL_FILES.
	* libnetworking/rtems_webserver/Makefile.am: Use mkdir_p. Remove dirs
	from PRE/TMPINSTALL_FILES.

2003-12-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/env-rtemsbsp.m4: AC_SUBST(project_libdir).
	* automake/lib.am: Remove project_libdir.
	* wrapup/Makefile.am: Reworked.

2003-12-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Reflect changes to librdbg.
	* optman/Makefile.am: Add tmpinstall dirstamp support.
	* libchip/Makefile.am: Fix variant-tmpinstall support.
	* librdbg/src/powerpc/new_exception_processing/Makefile.am: Remove.
	* librdbg/src/powerpc/Makefile.am: Merge-in former
	new_exception_processing/Makefile.am.
	* librdbg/src/m68k/any/Makefile.am: Remove.
	* librdbg/src/m68k/Makefile.am: Merge-in former any/Makefile.am.
	* librdbg/src/i386/any/Makefile.am: Remove.
	* librdbg/src/i386/Makefile.am: Merge-in former any/Makefile.am.
	* librdbg/src/Makefile.am: Cosmetics.
	* librdbg/include/Makefile.am: Cosmetics.
	* librdbg/Makefile.am: Cosmetics.
	* libnetworking/Makefile.am: Cosmetics.
	* libnetworking/pppd/Makefile.am: Cosmetics.
	* libnetworking/wrapup/Makefile.am: Cosmetics.

2003-12-05	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Cosmetics.
	* automake/lib.am: Add project_libdir. Add preinstallation dirstamp
	support.

2003-12-04	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Remove $(ARCH):-rule.

2003-12-03	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Remove lib/libbsp/shared/Makefile,
	lib/libbsp/shmdr/Makefile.

2003-12-02	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Remove libchip/ide/Makefile, libchip/network/Makefile,
	libchip/serial/Makefile, libchip/rtc/Makefile.
	* support/Makefile.am: Remove all-local: $(ARCH).
	* wrapup/Makefile.am: Remove all-local: $(ARCH).
	* automake/compile.am: Add $(ARCH)/$(dirstamp) rules.
	* optman/Makefile.am: Add dependencies to $(ARCH)/$(dirstamp). Reformat.
	* optman/Makefile.am: Remove all-local: $(ARCH).
	* libchip/ide/Makefile.am, libchip/network/Makefile.am,
	libchip/rtc/Makefile.am, libchip/ serial/Makefile.am: Remove.
	* libchip/Makefile.am: Merge-in Makefile.am above. Add preinstallation +
	compilation dirstamp support.
	* libchip/ide/Makefile.am: Remove all-local: $(ARCH).
	* libchip/network/Makefile.am: Remove all-local: $(ARCH).
	* libchip/rtc/Makefile.am: Remove all-local: $(ARCH).
	* libchip/serial/Makefile.am: Remove all-local: $(ARCH).
	* librdbg/src/i386/any/Makefile.am: Remove all-local: $(ARCH).
	* librdbg/src/m68k/any/Makefile.am: Remove all-local: $(ARCH).
	* librdbg/src/powerpc/new_exception_processing/Makefile.am: Remove
	all-local: $(ARCH).
	* libnetworking/pppd/Makefile.am: Remove all-local: $(ARCH).
	* libnetworking/rtems_servers/Makefile.am: Remove all-local: $(ARCH).
	* libnetworking/rtems_telnetd/Makefile.am: Remove all-local: $(ARCH).
	* libnetworking/rtems_webserver/Makefile.am: Remove all-local: $(ARCH).
	* libnetworking/wrapup/Makefile.am: Remove all-local: $(ARCH).

2003-12-01	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/lead-dot.m4: New (from automake-1.7f).
	* aclocal/rtems-top.m4: Require AM_SET_LEADING_DOT. Add
	AC_SUBST(dirstamp).
	* libchip/ide/Makefile.am: Use dirstamps for preinstallation. Reformat.
	* libchip/network/Makefile.am, libchip/rtc/Makefile.am,
	libchip/serial/Makefile.am: Ditto.
	* librdbg/Makefile.am: Reformat. Apply dirstamps to preinstallation.
	* librdbg/include/Makefile.am: Ditto.
	* librdbg/include/rdbg/Makefile.am: Ditto.
	* librdbg/include/rdbg/i386/Makefile.am: Ditto.
	* librdbg/include/rdbg/m68k/Makefile.am: Ditto.
	* librdbg/include/rdbg/powerpc/Makefile.am: Ditto.
	* librdbg/src/Makefile.am: Ditto.
	* librdbg/src/i386/Makefile.am: Ditto.
	* librdbg/src/i386/any/Makefile.am: Ditto.
	* librdbg/src/m68k/Makefile.am: Ditto.
	* librdbg/src/m68k/any/Makefile.am: Ditto.
	* librdbg/src/powerpc/Makefile.am: Ditto.
	* librdbg/src/powerpc/new_exception_processing/Makefile.am: Ditto.
	* libnetworking/Makefile.am: Reformat. Apply dirstamps to
	preinstallation.
	* libnetworking/pppd/Makefile.am: Ditto.
	* libnetworking/rtems_servers/Makefile.am: Ditto.
	* libnetworking/rtems_telnetd/Makefile.am: Ditto.
	* libnetworking/rtems_webserver/Makefile.am: Ditto.
	* libnetworking/wrapup/Makefile.am: Ditto.

2003-11-26	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/bsp-arg-enable.m4, aclocal/canonical-target-name.m4,
	aclocal/canonicalize-tools.m4, aclocal/check-custom-bsp.m4,
	aclocal/check-posix.m4, aclocal/check-rdbg.m4, aclocal/check-tool.m4,
	aclocal/config-subdirs.m4, aclocal/enable-bare.m4,
	aclocal/enable-cxx.m4, aclocal/enable-itron.m4,
	aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4,
	aclocal/enable-posix.m4, aclocal/enable-rdbg.m4,
	aclocal/enable-rtemsbsp.m4, aclocal/env-rtemsbsp.m4,
	aclocal/gcc-isystem.m4, aclocal/gcc-pipe.m4, aclocal/gcc-specs.m4,
	aclocal/i386-gas-code16.m4, aclocal/multilib.m4, aclocal/path-ksh.m4,
	aclocal/prog-cc.m4, aclocal/prog-cxx.m4, aclocal/project-root.m4,
	aclocal/rtems-top.m4, aclocal/target.m4, aclocal/tool-paths.m4: Fix
	underquoting to silence automake-1.8.

2003-11-10	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Reflect having moved tests to ../../testsuites.

2003-10-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/bsp-configure.m4: AC_PREREQ(2.57). Remove RTEMS_CANONICAL_HOST.
	* aclocal/canonical-host.m4: Remove.
	* aclocal/canonical-target-name.m4: Merge-in aclocal/canonical-host.m4.
	* configure.ac: Remove RTEMS_CANONICAL_HOST.

2003-10-21	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/check-cpu.m4: Remove.
	* configure.ac: Merge-in former aclocal/check-cpu.m4.
	* aclocal/canonical-target-name.m4: Add m4-quotes.
	* aclocal/check-cxx.m4: Add m4-quotes. Don't require RTEMS_CHECK_CPU.
	* aclocal/check-multiprocessing.m4: Add m4-quotes. Require
	RTEMS_CANONICAL_TARGET_CPU instead of RTEMS_CHECK_CPU.
	* aclocal/check-networking.m4: Add m4-quotes. Require
	RTEMS_CANONICAL_TARGET_CPU instead of RTEMS_CHECK_CPU.
	* aclocal/check-posix.m4: Add m4-quotes. Require
	RTEMS_CANONICAL_TARGET_CPU instead of RTEMS_CHECK_CPU.
	* aclocal/check-rdbg.m4: Add m4-quotes. Require
	RTEMS_CANONICAL_TARGET_CPU instead of RTEMS_CHECK_CPU.
	* libchip/network/open_eth.c: Remove #define OPEN_ETH_SUPPORTED (Unused).

2003-10-20	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/check-multiprocessing.m4: Remove RTEMS_BSP_ALIAS.
	* aclocal/bsp-alias.m4: Remove.

2003-10-19	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Make presence of tests/ optional.

2003-10-17	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/path-perl.m4: Remove (Unused).

2003-10-01	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/force-preinstall.am: Remove.

2003-09-26	Cedric Aubert <cedric_aubert@yahoo.fr>

	PR 499/rtems_misc
	* libchip/serial/mc68681.c:  Miscellaneous corrections: - Correction of
	ACR_BIT[7] (Baudrate table) Configuration - Correction of Parity Bit
	Configuration (Odd was forced) - Correction of Stop Bit configuration
	(inversed) - Correction of ISR Handler to call 
	rtems_termios_dequeue_character() only if is a Tx Empty IRQ. - Add RTS
	CTS Hardware flow control Configuration.

2003-09-04	Joel Sherrill <joel@OARcorp.com>

	* lib/libcpu/shared/include/cache.h,
	lib/libcpu/shared/src/cache_aligned_malloc.c,
	lib/libcpu/shared/src/cache_manager.c, support/version.c: URL for
	license changed.
	* optman/rtems/no-dpmem.c, optman/rtems/no-event.c,
	optman/rtems/no-mp.c, optman/rtems/no-msg.c, optman/rtems/no-part.c,
	optman/rtems/no-region.c, optman/rtems/no-rtmon.c,
	optman/rtems/no-sem.c, optman/rtems/no-signal.c,
	optman/rtems/no-timer.c, optman/sapi/no-ext.c, optman/sapi/no-io.c: URL
	for license changed.
	* libchip/ide/ata.c, libchip/ide/ata.h, libchip/ide/ata_internal.h,
	libchip/ide/ide_controller.c, libchip/ide/ide_ctrl.h,
	libchip/ide/ide_ctrl_cfg.h, libchip/ide/ide_ctrl_io.h,
	libchip/network/cs8900.c, libchip/network/cs8900.c.bsp,
	libchip/network/cs8900.h, libchip/network/dec21140.c,
	libchip/network/elnk.c, libchip/network/open_eth.c,
	libchip/network/sonic.c, libchip/network/sonic.h, libchip/rtc/icm7170.c,
	libchip/rtc/icm7170.h, libchip/rtc/icm7170_reg.c,
	libchip/rtc/icm7170_reg2.c, libchip/rtc/icm7170_reg4.c,
	libchip/rtc/icm7170_reg8.c, libchip/rtc/m48t08.c, libchip/rtc/m48t08.h,
	libchip/rtc/m48t08_reg.c, libchip/rtc/m48t08_reg2.c,
	libchip/rtc/m48t08_reg4.c, libchip/rtc/m48t08_reg8.c, libchip/rtc/rtc.h,
	libchip/rtc/rtcprobe.c, libchip/serial/mc68681.c,
	libchip/serial/mc68681.h, libchip/serial/mc68681_p.h,
	libchip/serial/mc68681_reg.c, libchip/serial/mc68681_reg2.c,
	libchip/serial/mc68681_reg4.c, libchip/serial/mc68681_reg8.c,
	libchip/serial/serial.h, libchip/serial/z85c30.c,
	libchip/serial/z85c30.h, libchip/serial/z85c30_p.h,
	libchip/serial/z85c30_reg.c: URL for license changed.

2003-09-03	Jiri Gaisler <jiri@gaisler.com>

	PR 477/networking
	* libchip/network/Makefile.am: Add driver for OpenCores NIC.
	* libchip/network/README.open_eth, libchip/network/open_eth.c,
	libchip/network/open_eth.h: New files.

2003-08-28	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/rtems-top.m4: Add RTEMS_API.
	AC_DEFAULT_PREFIX([/opt/rtems-][RTEMS_API]).

2003-08-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* librdbg/src/i386/any/Makefile.am, librdbg/src/m68k/any/Makefile.am,
	librdbg/src/powerpc/new_exception_processing/Makefile.am: Don't include
	@RTEMS_BSP@.cfg.

2003-08-21	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libchip/ide/Makefile.am: Don't include @RTEMS_BSP@.cfg.

2003-08-20	Joel Sherrill <joel@OARcorp.com>

	* libchip/network/cs8900.c: Correct copyright statements.

2003-08-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/check-itron.m4: Remove.
	* aclocal/enable-inlines.m4: Remove.
	* Makefile.am: Reflect having moved aclocal/.
	* aclocal/bsp-alias.m4: New (Copied from ../../aclocal).
	* aclocal/bsp-arg-enable.m4: New (Copied from ../../aclocal).
	* aclocal/bsp-configure.m4: New (Copied from ../../aclocal).
	* aclocal/bspopts.m4: New (Copied from ../../aclocal).
	* aclocal/canonical-host.m4: New (Copied from ../../aclocal).
	* aclocal/canonicalize-tools.m4: New (Copied from ../../aclocal).
	* aclocal/canonical-target-name.m4: New (Copied from ../../aclocal).
	* aclocal/check-cpu.m4: New (Copied from ../../aclocal).
	* aclocal/check-custom-bsp.m4: New (Copied from ../../aclocal).
	* aclocal/check-cxx.m4: New (Copied from ../../aclocal).
	* aclocal/check-itron.m4: New (Copied from ../../aclocal).
	* aclocal/check-multiprocessing.m4: New (Copied from ../../aclocal).
	* aclocal/check-networking.m4: New (Copied from ../../aclocal).
	* aclocal/check-posix.m4: New (Copied from ../../aclocal).
	* aclocal/check-rdbg.m4: New (Copied from ../../aclocal).
	* aclocal/check-tool.m4: New (Copied from ../../aclocal).
	* aclocal/config-subdirs.m4: New (Copied from ../../aclocal).
	* aclocal/enable-bare.m4: New (Copied from ../../aclocal).
	* aclocal/enable-cxx.m4: New (Copied from ../../aclocal).
	* aclocal/enable-inlines.m4: New (Copied from ../../aclocal).
	* aclocal/enable-itron.m4: New (Copied from ../../aclocal).
	* aclocal/enable-multiprocessing.m4: New (Copied from ../../aclocal).
	* aclocal/enable-networking.m4: New (Copied from ../../aclocal).
	* aclocal/enable-posix.m4: New (Copied from ../../aclocal).
	* aclocal/enable-rdbg.m4: New (Copied from ../../aclocal).
	* aclocal/enable-rtemsbsp.m4: New (Copied from ../../aclocal).
	* aclocal/env-rtemsbsp.m4: New (Copied from ../../aclocal).
	* aclocal/gcc-isystem.m4: New (Copied from ../../aclocal).
	* aclocal/gcc-pipe.m4: New (Copied from ../../aclocal).
	* aclocal/gcc-specs.m4: New (Copied from ../../aclocal).
	* aclocal/i386-gas-code16.m4: New (Copied from ../../aclocal).
	* aclocal/multilib.m4: New (Copied from ../../aclocal).
	* aclocal/path-ksh.m4: New (Copied from ../../aclocal).
	* aclocal/path-perl.m4: New (Copied from ../../aclocal).
	* aclocal/ppc.m4: New (Copied from ../../aclocal).
	* aclocal/prog-ccas.m4: New (Copied from ../../aclocal).
	* aclocal/prog-cc.m4: New (Copied from ../../aclocal).
	* aclocal/prog-cxx.m4: New (Copied from ../../aclocal).
	* aclocal/project-root.m4: New (Copied from ../../aclocal).
	* aclocal/quoting.m4: New (Copied from ../../aclocal).
	* aclocal/rtems-cpu-subdirs.m4: New (Copied from ../../aclocal).
	* aclocal/rtems-flags.m4: New (Copied from ../../aclocal).
	* aclocal/rtems-top.m4: New (Copied from ../../aclocal).
	* aclocal/target.m4: New (Copied from ../../aclocal).
	* aclocal/tool-paths.m4: New (Copied from ../../aclocal).
	* aclocal/version.m4: New (Copied from ../../aclocal).

2003-08-17	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Remove stray comments.
	* automake/local.am, automake/host.am: Remove "debug".

2003-08-16	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Reflect having moved automake/.
	* lib/Makefile.am: Reflect having moved automake/.
	* support/Makefile.am: Reflect having moved automake/.
	* wrapup/Makefile.am: Reflect having moved automake/.
	* automake/compile.am, automake/force-preinstall.am, automake/host.am,
	automake/lib.am, automake/local.am, automake/subdirs.am: New (copied
	from ../../automake).
	* optman/Makefile.am: Reflect having moved automake/.
	* libchip/Makefile.am: Reflect having moved automake/.
	* libchip/ide/Makefile.am: Reflect having moved automake/.
	* libchip/network/Makefile.am: Reflect having moved automake/.
	* libchip/rtc/Makefile.am: Reflect having moved automake/.
	* libchip/serial/Makefile.am: Reflect having moved automake/.
	* librdbg/Makefile.am: Reflect having moved automake/.
	* librdbg/include/Makefile.am: Reflect having moved automake/.
	* librdbg/include/rdbg/Makefile.am: Reflect having moved automake/.
	* librdbg/include/rdbg/i386/Makefile.am: Reflect having moved automake/.
	* librdbg/include/rdbg/m68k/Makefile.am: Reflect having moved automake/.
	* librdbg/include/rdbg/powerpc/Makefile.am: Reflect having moved
	automake/.
	* librdbg/src/Makefile.am: Reflect having moved automake/.
	* librdbg/src/i386/Makefile.am: Reflect having moved automake/.
	* librdbg/src/i386/any/Makefile.am: Reflect having moved automake/.
	* librdbg/src/m68k/Makefile.am: Reflect having moved automake/.
	* librdbg/src/m68k/any/Makefile.am: Reflect having moved automake/.
	* librdbg/src/powerpc/Makefile.am: Reflect having moved automake/.
	* librdbg/src/powerpc/new_exception_processing/Makefile.am: Reflect
	having moved automake/.
	* libnetworking/Makefile.am: Reflect having moved automake/.
	* libnetworking/pppd/Makefile.am: Reflect having moved automake/.
	* libnetworking/rtems_servers/Makefile.am: Reflect having moved
	automake/.
	* libnetworking/rtems_telnetd/Makefile.am: Reflect having moved
	automake/.
	* libnetworking/rtems_webserver/Makefile.am: Reflect having moved
	automake/.
	* libnetworking/wrapup/Makefile.am: Reflect having moved automake/.

2003-08-13	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Add bsp.pc.in.
	* bsp.pc.in: New (pkgconfig support).

2003-08-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Use rtems-bugs@rtems.com as bug report email address.

2003-08-08	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* lib/Makefile.am: New (Required by 'make dist').
	* lib/ChangeLog: Remove.
	* lib/.cvsignore: Cleanup.
	* configure.ac: Reflect having added lib/Makefile.am.
	* configure.ac: Merge-in lib/libcpu/configure.ac. Merge-in
	lib/libbsp/configure.ac.
	* librdbg/include/rdbg/Makefile.am: Add DIST_SUBDIRS = $(RTEMS_CPU).
	* librdbg/src/Makefile.am: Add DIST_SUBDIRS = $(RTEMS_CPU).

2003-07-25	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Use relative dir to make/${RTEMS_BSP}.cache.
	* configure.ac: Merge-in librdbg/configure.ac.
	* configure.ac: Merge-in libnetworking/configure.ac. Merge-in parts of
	librdbg/configure.ac.
	* libchip/ide/Makefile.am, libchip/network/Makefile.am,
	libchip/rtc/Makefile.am, libchip/ serial/Makefile.am: Add conditional
	LIBCHIP. Conditionally build include-dirs.
	* libchip/network/if_fxp.c: Replace deprecated b* funcs by mem* funcs.
	* librdbg/configure.ac: Remove (Merged into ../configure.ac).
	* librdbg/Makefile.am, librdbg/include/Makefile.am,
	librdbg/include/rdbg/Makefile.am, librdbg/include/rdbg/i386/Makefile.am,
	librdbg/include/rdbg/m68k/Makefile.am,
	librdbg/include/rdbg/powerpc/Makefile.am, librdbg/src/Makefile.am,
	librdbg/src/i386/Makefile.am, librdbg/src/i386/any/Makefile.am,
	librdbg/src/m68k/Makefile.am, librdbg/src/m68k/any/Makefile.am,
	librdbg/src/powerpc/Makefile.am, librdbg/
	src/powerpc/new_exception_processing/Makefile.am: Reflect having merged
	configure.ac into ../configure.ac.
	* libnetworking/configure.ac: Remove (Merged into ../configure.ac).
	* libnetworking/.cvsignore, libnetworking/Makefile.am,
	libnetworking/pppd/Makefile.am, libnetworking/rtems_servers/Makefile.am,
	libnetworking/rtems_telnetd/Makefile.am,
	libnetworking/rtems_webserver/Makefile.am,
	libnetworking/wrapup/Makefile.am: Reflect having merged configure.ac
	into ../configure.ac.

2003-07-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	PR 427/rtems
	* librdbg/src/rdbg.c: Use memset instead of bzero (deprecated).
	* librdbg/src/servtsp.c: Ditto.

2003-07-18	Greg Menke <gregory.menke@gsfc.nasa.gov>

	PR 429/bsps
	PR 432/bsps
	* libchip/network/elnk.c: Due to a bug in the driver, if multiple
	packets are queued onto an elnk board, the ISR will deadlock the device
	with a tx complete interrupt.  Lighter tx loads are not affected as they
	end up submitting single packets to the device.

2003-07-10	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Merge-in libchip/configure.ac. Merge-in
	optman/configure.ac.
	* optman/configure.ac: Remove (Merged into ../configure.ac).
	* optman/Makefile.am: Reflect having merged configure.ac into
	../configure.ac.
	* libchip/configure.ac: Remove (Merged into ../configure.ac).
	* libchip/Makefile.am, libchip/ide/Makefile.am,
	libchip/network/Makefile.am, libchip/rtc/Makefile.am,
	libchip/serial/Makefile.am: Reflect having merged configure.ac into
	../configure.ac.

2003-07-08	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* support/version.c: Reflect having remove "rtems-" from RTEMS_VERSION.

2003-06-30	Greg Menke <gregory.menke@gsfc.nasa.gov>

	* libchip/network/dec21140.c, libchip/network/elnk.c: Update to compile
	on i386.

2003-06-13	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/pppd/chat.c: Removed warnings.

2003-06-13	Greg Menke <gregory.menke@gsfc.nasa.gov>

	* libchip/network/README.3com: New file missed in previous commit.
	PR 405/bsps
	PR 393/networking
	* libchip/network/dec21140.c: Fix leak also known as PR393.
	* libchip/network/elnk.c, libchip/network/if_media.h,
	libchip/network/mii.h: New files.
	* libchip/network/Makefile.am: Reflect new files.

2003-06-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Remove support for profile-variant.

2003-05-16	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	PR 397/pppd
	* libnetworking/pppd/fsm.c: Make peer_mru global again.
	* libnetworking/pppd/magic.c: Remove *rand48.
	* libnetworking/pppd/chap.c: Remove prototypes of *rand48.

2003-04-29	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Add libide.a.

2003-04-15	Joel Sherrill <joel@OARcorp.com>

	PR 387/rtems_misc
	* libchip/ide/ata.c: Removed warning and moved to use of simpler libc
	routines.
	* libchip/ide/ata_internal.h: Added missing newline and end of file.

2003-04-11	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/rtems_webserver/cgi.c,
	libnetworking/rtems_webserver/sockGen.c,
	libnetworking/rtems_webserver/umui.c,
	libnetworking/rtems_webserver/websSSL.c,
	libnetworking/rtems_webserver/websSSL.h,
	libnetworking/rtems_webserver/websda.c,
	libnetworking/rtems_webserver/websda.h: New files. Not included in
	previous commit.

2003-04-10	Joel Sherrill <joel@OARcorp.com>

	PR 371/pppd
	* libnetworking/pppd/auth.c, libnetworking/pppd/chat.c,
	libnetworking/pppd/demand.c, libnetworking/pppd/fsm.c,
	libnetworking/pppd/lcp.c, libnetworking/pppd/options.c,
	libnetworking/pppd/pppd.h, libnetworking/pppd/rtemsmain.c,
	libnetworking/pppd/rtemspppd.c: Change many symbols to static. There are
	still global symbols in rtemspppd.h which might need to be changed or
	converted into member of a structure which is dereferenced with a
	pointer that is managed as a per task variable. But this patch should
	avoid many conflicts.

2003-03-27	Joel Sherrill <joel@OARcorp.com>

	* libchip/ide/Makefile.am: ATA code depends upon libchip/ide which is
	not allowed in the cpukit source code since it must be buildable
	independent of any BSP. These files were moved to libchip/ide.
	* libchip/ide/ata.c, libchip/ide/ata.h, libchip/ide/ata_internal.h: New
	files.

2003-03-25	Thomas Doerfler <Thomas.Doerfler@imd-systems.de>

	PR 368/filesystems
	* libchip/ide/Makefile.am, libchip/ide/ide_ctrl_cfg.h: General
	improvements which now work on pc386 and mbx8xx.
	* libchip/ide/ide_controller.c: New file.

2003-03-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/pppd/utils.c: Remove strlcpy, strlcat.

2003-03-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Remove AC_CONFIG_AUX_DIR.
	* configure.ac: Add support/.
	* support/.cvsignore: New.
	* support/Makefile.am: New.
	* support/version.c: New.
	* wrapup/Makefile.am: Add support/libsupport.a.
	* optman/configure.ac: Remove AC_CONFIG_AUX_DIR.
	* libchip/configure.ac: Remove AC_CONFIG_AUX_DIR.
	* librdbg/configure.ac: Remove AC_CONFIG_AUX_DIR.
	* libnetworking/configure.ac: Remove AC_CONFIG_AUX_DIR.

2003-03-04	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Use SRC += instead of make-vars.

2003-02-20	Till Straumann <strauman@slac.stanford.edu>

	PR 354/networking
	* libchip/network/if_fxp.c (Intel eepro network driver): re-enabled the
	chip against a table of supported chips. The untested ones are still
	commented out, however.

2003-02-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
	* configure.ac: AC_PREREQ(2.57).
	* optman/configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
	* optman/configure.ac: AC_PREREQ(2.57).
	* libchip/configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
	* libchip/configure.ac: AC_PREREQ(2.57).
	* librdbg/configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
	* librdbg/configure.ac: AC_PREREQ(2.57).
	* libnetworking/configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
	* libnetworking/configure.ac: AC_PREREQ(2.57).

2003-02-06	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/pppd/chat.c: Convert routines with common names to
	static. This included get_char(), put_char(), and character() among
	others.

2003-02-03	Joel Sherrill <joel@OARcorp.com>

	PR 338/filesystem
	* optman/sapi/no-io.c: Side-effect of fixing reentrancy problem with 
	rtems_io_lookup_name() (API change).  Unused function removed.

2003-01-15	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
	* libnetworking/wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
	* libnetworking/pppd/Makefile.am: Don't include @RTEMS_BSP@.cfg.
	Eliminate *_O_FILES.
	* libnetworking/rtems_servers/Makefile.am,
	libnetworking/rtems_webserver/Makefile.am,
	libnetworking/rtems_telnetd/Makefile.am: Ditto.

2002-12-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Use install-data-local to install librtemsbsp.a.
	Let all-local: depend on $(LIB).
	* wrapup/Makefile.am, configure.ac: Remove libmisc.
	* optman/Makefile.am: Apply install-data-local to install *.rels.

2002-12-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* optman/Makefile.am: Eliminate *_O_FILES. Don't create $ARCH in %.o:
	%.c rules.
	* optman/Makefile.am: Use .$(OBJEXT) instead of .o.
	* libchip/network/Makefile.am: Eliminate C_O_FILES.
	* libchip/rtc/Makefile.am: Ditto.
	* libchip/serial/Makefile.am: Ditto.

2002-12-10	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libchip/serial/Makefile.am: Don't include @RTEMS_BSP@.cfg. Don't use
	LIBC_DEFINES.
	* libchip/rtc/Makefile.am: Don't include @RTEMS_BSP@.cfg. Don't use
	LIBC_DEFINES.
	* libchip/network/Makefile.am: Don't include @RTEMS_BSP@.cfg. Don't use
	LIBC_DEFINES.

2002-12-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* optman/Makefile.am: Introduce sapi_C_FILES, rtems_C_FILES.

2002-12-07	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Append RTEMS_CPU_MODEL to ac_configure_args. Resort
	cache-checking.
	* optman/Makefile.am: Don't include @RTEMS_BSP@.cfg.

2002-12-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Expand RTEMS_CHECK_BSP_CACHE.
	* configure.ac: Append CPU_CFLAGS, CFLAGS_OPTIMIZE_V, CFLAGS_DEBUG_V,
	CFLAGS_PROFILE_V, RTEMS_BSP_FAMILY to ac_configure_args.
	* optman/configure.ac: Remove RTEMS_CHECK_BSP_CACHE.
	* librdbg/configure.ac: Remove RTEMS_CHECK_BSP_CACHE.

2002-11-20	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* optman/Makefile.am: Merge-in rtems/Makefile.am and sapi/Makefile.am.
	* optman/sapi/Makefile.am, optman/rtems/Makefile.am, optman/rel.am:
	Remove.
	* optman/configure.ac: Add RTEMS_BSP_CHECK_CACHE. Reflect changes above.

2002-11-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Use test "$RTEMS_BSP_FAMILY" != "bare" to setup
	HAS_LIBBSP conditional (Solaris/bash incompatibility fix).

2002-11-13	Jay Monkman <jtm@smoothsmoothie.com>

	* libchip/network/cs8900.c: I don't know why we have to SelfST register
	twice on the EDB7312, but it doesn't work on the EDB7312 if we don't.

2002-11-08	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* optman/rtems/Makefile.am, optman/sapi/Makefile.am: Reworked.
	* optman/rel.am: New.

2002-11-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Use "'"-quotes to pass args to bsp.mak.
	* configure.ac: Use "'"-quotes for args to RTEMS_CONFIG_SUBDIRS. Fix
	braino in comment on "exec". Extend --enable-ada handling.

2002-11-04	Joel Sherrill <joel@OARcorp.com>

	* librdbg/src/_servtgt.c: Removed warning by adding support for ITRON
	tasks and rolling multiple loops into 1.
	* librdbg/src/m68k/rdbg_f.c: Removed warning.
	* libnetworking/pppd/auth.c, libnetworking/rtems_webserver/uemf.h:
	Removed warnings.

2002-10-31	Joel Sherrill <joel@OARcorp.com>

	* libchip/network/dec21140.c: Removed warnings.
	* librdbg/src/i386/any/remdeb_xdr.c: Removed warnings.
	* librdbg/src/rdbg.c, librdbg/src/servtsp.c, librdbg/src/m68k/rdbg_f.c,
	librdbg/src/m68k/any/remdeb_xdr.c,
	librdbg/src/powerpc/new_exception_processing/remdeb_xdr.c: Removed
	warnings.
	* libnetworking/rtems_webserver/socket.c,
	libnetworking/rtems_webserver/uemf.h: Removed warnings.

2002-10-28	Eugeny S. Mints <Eugeny.Mints@oktet.ru>

	* libchip/ide/Makefile.am, libchip/ide/ide_ctrl_cfg.h,
	libchip/ide/ide_ctrl_io.h, libchip/ide/ide_ctrl.h: New files.
	* libchip/configure.ac, libchip/Makefile.am: Modified to reflect changes
	above.

2002-10-21	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* .cvsignore: Reformat. Add autom4te*cache. Remove autom4te.cache.
	* wrapup/.cvsignore: Remove autom4te.cache.
	* optman/.cvsignore: Reformat. Add autom4te*cache. Remove autom4te.cache.
	* libchip/.cvsignore: Reformat. Add autom4te*cache. Remove
	autom4te.cache.
	* librdbg/.cvsignore: Reformat. Add autom4te*cache. Remove
	autom4te.cache.
	* libnetworking/.cvsignore: Reformat. Add autom4te*cache. Remove
	autom4te.cache.

2002-10-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* acinclude.m4: Apply RTEMS_CONFIGURE_ARGS_QUOTE.

2002-10-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* optman/.cvsignore: Add autom4te.cache.

2002-09-14	Joel Sherrill <joel@OARcorp.com>

	* libchip/serial/z85c30.c: Eliminated warning by clarifying statement.

2002-09-07	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/pppd/ipcp.c, libnetworking/rtems_servers/ftpd.c: Add
	include files to resolve warnings.

2002-09-07	Chris Johns <ccj@acm.org>

	* libchip/network/Makefile.am, libchip/network/README.cs8900,
	libchip/network/cs8900.c, libchip/network/cs8900.h: Significant update
	which corrects the problem  where the cs8900.c file was actually the BSP
	glue.  Joel did some hacking so this file will compile.  Previously it
	required providing a target.h file to compile.
	* libchip/network/cs8900.c.bsp: New file.

2002-09-02	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/rtems_webserver/md5.h: Add missing newline.

2002-08-31	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/rtems_webserver/webmain.c: Commented out rootWeb to
	eliminate warning.

2002-08-28	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Add ada-tests.

2002-08-21	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Add preinstall-stamp.

2002-08-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/rtems_servers/ftpd.c: Remove unused variable buf.
	* libnetworking/pppd/md5.c: #include <string.h> to make gcc31 happy.
	* libnetworking/rtems_telnetd/telnetd.c: #include <string.h> to make
	gcc31 happy.
	* libnetworking/rtems_webserver/webmain.c: Remove unused variable dir,
	cp.

2002-08-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Add AM_CONDITIONAL(LIBCHIP). Pass RTEMS_HOST to
	make/bsp.mak.
	* Makefile.am: Pass RTEMS_HOST to make/bsp.mak.
	* wrapup/Makefile.am: Apply AM_CONDITIONAL(LIBCHIP).

2002-08-12	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/pppd/utils.c: Include i960 in varargs conditional to
	avoid error.

2002-08-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
	* configure.ac: Add BSP_SUBDIRS.
	* Makefile.am: Use BSP_SUBDIRS to setup SUBDIRS.
	* optman/rtems/Makefile.am: Use .$(OBJEXT) instead of .o.
	* optman/sapi/Makefile.am: Use .$(OBJEXT) instead of .o.
	* libchip/network/Makefile.am: Use .$(OBJEXT) instead of .o.
	* libchip/rtc/Makefile.am: Use .$(OBJEXT) instead of .o.
	* libchip/serial/Makefile.am: Use .$(OBJEXT) instead of .o.
	* librdbg/configure.ac: Remove RTEMS_BSP_ALIAS. Add
	RTEMS_CHECK_BSP_CACHE.
	* librdbg/src/i386/any/Makefile.am: Use .$(OBJEXT) instead of .o.
	* librdbg/src/m68k/any/Makefile.am: Use .$(OBJEXT) instead of .o.
	* librdbg/src/powerpc/new_exception_processing/Makefile.am: Use
	.$(OBJEXT) instead of .o.
	* libnetworking/pppd/Makefile.am,
	libnetworking/rtems_servers/Makefile.am,
	libnetworking/rtems_telnetd/Makefile.am,
	libnetworking/rtems_webserver/Makefile.am,
	libnetworking/wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.

2002-08-10	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Remove AC_CONFIG_SUBDIR(wrapup). Cosmetic cleanups.
	* wrapup/Makefile.am: Pick up ../libchip/rtc/$(ARCH)/librtcio.a and
	../libchip/serial/$(ARCH)/libserialio.a.
	* libchip/serial/Makefile.am: Don't tmp-install lib.
	* libchip/rtc/Makefile.am: Don't tmp-install lib.

2002-08-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Add rtems_makedir.
	* configure.ac: Merge wrapup/configure.ac. Cosmetic cleanups.
	* Makefile.am: Add wrapup-SUBDIR.
	* wrapup/ChangeLog: Remove.
	* wrapup/configure.ac: Remove.
	* Makefile.am: Append BARE_CPU_MODEL to make/@RTEMS_BSP@.cache creation
	(Make the bare BSP happy).
	* configure.ac: Ditto.
	* Makefile.am: Create make/@RTEMS_BSP@.cache. Handle make/custom/*.cfgs.
	Create make/custom/default.cfg.
	* configure.ac: Add creation of make/custom/*.cfg. Create
	make/${RTEMS_BSP}.cache. Read make/${RTEMS_BSP}.cache.

2002-08-01	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Clean $(PROJECT_RELEASE).

2002-07-25	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/pppd/chap.c, libnetworking/pppd/fsm.c,
	libnetworking/pppd/fsm.h, libnetworking/pppd/upap.c: Per PR255 fix
	prototype mismatches.

2002-07-23	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* optman/sapi/Makefile.am: Add bsplib_DATA = $(PGMS). Remove ASM4FLAGS.
	* optman/rtems/Makefile.am: Add bsplib_DATA = $(PGMS).

2002-07-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* acinclude.m4: Add test "$multilib" != "yes".
	* config-ml.in: Remove.
	* acinclude.m4: Cleanups.
	* configure.ac: Build ${srcdir}/../../cpukit/ as ./exec/ instead of
	${srcdir}/exec/. Further adaptations to autoconf >= 2.50.
	* optman/configure.ac: Remove RTEMS_ENABLE_MULTIPROCESSING, 
	RTEMS_ENABLE_POSIX, RTEMS_ENABLE_ITRON, RTEMS_ENABLE_INLINES,
	RTEMS_ENABLE_RTEMS_DEBUG, RTEMS_CHECK_RTEMS_DEBUG, RTEMS_CHECK_NEWLIB.

2002-07-16	Eric Norum <eric.norum@usask.ca>

	* New driver for the Intel EtherExpressPro (82559ER) chip.
	* libchip/network/if_fxp.c, libchip/network/if_fxpreg.h,
	libchip/network/if_fxpvar.h, libchip/network/pci.h: New file.
	* libchip/network/Makefile.am: Modified to reflect above.

2002-07-05	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* acinclude.m4: New.
	* Makefile.am: Remove tar-installation.  Prepend @exec@ to SUBDIRS.
	* configure.ac: Switch to AC_CONFIG_SRCDIR([optman]). Add
	RTEMS_ENABLE_MULTIPROCESSING. Add RTEMS_CONFIG_SUBDIR([exec]...).

2002-07-01	Joel Sherrill <joel@OARcorp.com>

	* librdbg/src/_servtgt.c, librdbg/src/ptrace.c: Corrected use of
	_Objects_Information_table now that it is a two dimensional array based
	upon API and class.
	* libnetworking/rtems_webserver/misc.c: Per PR236 eliminate definition
	of strnlen().

2002-06-26	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/wrapup/Makefile.am: Build libnetapps.a.  Don't
	preinstall libnetapps.a.

2002-06-25	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Remove librpc.

2002-06-25	Joel Sherrill <joel@OARcorp.com>

	* Per PR233, moved librpc to exec.
	* configure.ac, wrapup/Makefile.am: Modified.
	* librpc, librpc/ChangeLog: Removed.

2002-06-15	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* optman/Makefile.am: Remove multilib support.
	* optman/configure.ac: Ditto.
	* optman/sapi/Makefile.am: Ditto.

2002-05-30	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/Makefile.am: Remove headers. Remove CHANGELOG.
	* libnetworking/configure.ac: Use AC_CONFIG_SRCDIR([pppd]).

2002-05-29	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	Move networking libraries to c/src/exec/libnetworking
	* libnetworking/configure.ac, libnetworking/Makefile.am,
	libnetworking/wrapup/Makefile.am: Reflect Moval.

2002-05-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Remove CONFIG_SUBDIRS libblock, libfs.
	* libnetworking/rtems_telnetd/pty.c: Remove bsp.h. Include
	<rtems/bspIo.h>.

2002-05-16	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/rtems/mkrootfs.c: Add (relocated from libmisc/rootfs).
	* libnetworking/rtems/mkrootfs.h: Ditto.
	* libnetworking/rtems/Makefile.am: Reflect changes above.

2002-05-15	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Remove lib.

2002-05-14	Thomas Doerfler <Thomas.Doerfler@imd-systems.de>

	* librdbg/src/m68k/rdbg_cpu_asm.S: Per PR163, Fix incorrect assumption
	that exception stack frames on M68K members with VBR always are 6 byte
	long. The incorrect assumption resulted in some gdb commands like "next"
	to fail on the 68360.

2002-05-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* config-ml.in: Take out arm and sh variants RTEMS does not support.
	PR 220
	* librdbg/src/i386/any/remdeb_svc.c, librdbg/src/m68k/any/remdeb_svc.c,
	librdbg/ src/powerpc/new_exception_processing/remdeb_svc.c: Remove from
	CVS.
	* libnetworking/sys/ioctl.h, libnetworking/sys/sockio.h,
	libnetworking/sys/filio.h: Remove.
	* libnetworking/sys/Makefile.am: Reflect changes above.

2002-05-07	Chris Johns <ccj@acm.org>

	* libchip/c/src/libchip/network/i82586.c: Per PR210, adjust the mbuf
	lengths to remove the ethernet header as the FreeBSD (RTEMS) stack
	requires it to be stripped.

2002-05-01	Eric Norum <eric.norum@usask.ca>

	* libnetworking/machine/in_cksum.h: Per PR200 fix multi-line inline
	assembly  to satisfy gcc 3.1 and newer.

2002-04-26	Eric Norum <eric.norum@usask.ca>

	* libnetworking/netinet/in_cksum_i386.c: Add volatile so the more
	agressive optimization in gcc 3.1 does not reorder things.

2002-04-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libchip/network/dec21140.c: Reflect changes to powerpc's
	rtems/score/cpu.h. Use __PPC__ for gcc-3.x compliance.
	* librdbg/src/powerpc/rdbg_cpu_asm.S: Reflect changes to
	<rtems/score/cpu.h>.
	* librdbg/src/powerpc/rdbg_f.c: Ditto.
	* libnetworking/pppd/utils.c: Adapt to gcc-3.x.

2002-04-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* optman/configure.ac: Remove ENABLE_GCC28.

2002-04-11	Chris Johns <ccj@acm.org>

	* libchip/network/rtems_bsdnet.h: To address PR59, added the drv_ctrl
	driver control block field to the ifconfig network driver structure.
	This field is needed by the i82586 driver which was ported from NetBSD
	as it had better hardware abstraction.
	* libnetworking/c/src/libnetworking/rtems/rtems_bsdnet.h: To address
	PR59, added the drv_ctrl driver control block field to the ifconfig
	network driver structure. This field is needed by the i82586 driver
	which was ported from NetBSD as it had better hardware abstraction.

2002-04-10	Mike Siers <mikes@poliac.com>

	* libnetworking/rtems_webserver/NOTES,
	libnetworking/rtems_webserver/asp.c,
	libnetworking/rtems_webserver/balloc.c,
	libnetworking/rtems_webserver/default.c,
	libnetworking/rtems_webserver/ej.h,
	libnetworking/rtems_webserver/ejIntrn.h,
	libnetworking/rtems_webserver/ejlex.c,
	libnetworking/rtems_webserver/ejparse.c,
	libnetworking/rtems_webserver/emfdb.c,
	libnetworking/rtems_webserver/emfdb.h,
	libnetworking/rtems_webserver/form.c, libnetworking/rtems_webserver/h.c,
	libnetworking/rtems_webserver/handler.c,
	libnetworking/rtems_webserver/license.txt,
	libnetworking/rtems_webserver/md5.h,
	libnetworking/rtems_webserver/md5c.c,
	libnetworking/rtems_webserver/mime.c,
	libnetworking/rtems_webserver/misc.c,
	libnetworking/rtems_webserver/ringq.c,
	libnetworking/rtems_webserver/rom.c,
	libnetworking/rtems_webserver/security.c,
	libnetworking/rtems_webserver/sock.c,
	libnetworking/rtems_webserver/sym.c,
	libnetworking/rtems_webserver/uemf.c,
	libnetworking/rtems_webserver/uemf.h,
	libnetworking/rtems_webserver/um.c, libnetworking/rtems_webserver/um.h,
	libnetworking/rtems_webserver/url.c,
	libnetworking/rtems_webserver/value.c,
	libnetworking/rtems_webserver/wbase64.c,
	libnetworking/rtems_webserver/webcomp.c,
	libnetworking/rtems_webserver/webpage.c,
	libnetworking/rtems_webserver/webrom.c,
	libnetworking/rtems_webserver/webs.c,
	libnetworking/rtems_webserver/webs.h,
	libnetworking/rtems_webserver/websuemf.c,
	libnetworking/rtems_webserver/wsIntrn.h: Update to GoAhead Webserver
	2.1.4.

2002-04-04	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libchip/network/i82586.c: Include <string.h>.
	* libchip/network/sonic.c: Ditto.

2002-04-01	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libchip/configure.ac: AC_DEFINE(CPU_U32_FIX) for sparc.

2002-03-30	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/libc/rcmd.c: Replace __rtems w/ __rtems__.

2002-03-27	Thomas.Doerfler@imd-systems.de

	PR 144
	* libnetworking/nfs/bootp_subr.c bootpc_init(): Performs a write to
	memory address 0 when called for the first time. This is done when
	trying to clear the variable "dhcp_hostname".

2002-03-27	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
	AM_INIT_AUTOMAKE([no-define foreign 1.6]).
	* Makefile.am: Remove AUTOMAKE_OPTIONS.
	* optman/configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
	AM_INIT_AUTOMAKE([no-define foreign 1.6]).
	* optman/rtems/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* optman/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* optman/sapi/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libchip/configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
	AM_INIT_AUTOMAKE([no-define foreign 1.6]).
	* libchip/network/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libchip/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libchip/rtc/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libchip/serial/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* librdbg/configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
	AM_INIT_AUTOMAKE([no-define foreign 1.6]).
	* librdbg/include/rdbg/i386/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* librdbg/include/rdbg/m68k/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* librdbg/include/rdbg/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* librdbg/include/rdbg/powerpc/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* librdbg/include/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* librdbg/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* librdbg/src/i386/any/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* librdbg/src/i386/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* librdbg/src/m68k/any/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* librdbg/src/m68k/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* librdbg/src/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* librdbg/src/powerpc/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* librdbg/src/powerpc/new_exception_processing/Makefile.am: Remove
	AUTOMAKE_OPTIONS.
	* libnetworking/configure.ac:
	AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define
	foreign 1.6]).
	* libnetworking/arpa/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libnetworking/kern/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libnetworking/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libnetworking/lib/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libnetworking/libc/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libnetworking/machine/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libnetworking/net/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libnetworking/netinet/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libnetworking/nfs/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libnetworking/pppd/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libnetworking/rtems/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libnetworking/rtems_servers/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libnetworking/rtems_telnetd/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libnetworking/rtems_webserver/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libnetworking/sys/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libnetworking/vm/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* libnetworking/wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.

2002-03-27	Ilya Alexeev <ilya@continuum.ru>

	PR 162
	* libnetworking/net/if_ppp.c ppp_txdaemon(),
	libnetworking/net/if_pppvar.h pppstart(): Local variables must not be
	used in a device write routines.  Now ppp_softc structure have own
	character for writing to device (sc_outchar).  I think that converting
	local variables to static is not a right solution, because problems will
	occur in the case of two or more ppp instances.
	* libnetworking/net/ppp_tty.c pppstart(): Type of the ioffset variable
	must be u_long, otherwise in the case of the big output packet endless
	loop may occur.

2002-03-21	Ilya Alexeev <ilya@continuum.ru>

	* libnetworking/net/if_ppp.c, libnetworking/net/ppp_tty.c: Initial
	preparations for multiple PPPD connections.

2002-03-20	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	PR 149
	* librdbg/src/i386/any/Makefile.am: s/$(SED)/sed/.
	* librdbg/src/m68k/any/Makefile.am: s/$(SED)/sed/.
	* librdbg/src/powerpc/new_exception_processing/Makefile.am:
	s/$(SED)/sed/. (Reported by Till Straumann <strauman@SLAC.Stanford.EDU>).

2002-02-28	Victor V. Vengerov <vvv@oktet.ru>

	* DOS filesystem including FAT12, FAT16, and FAT32 support submitted.
	* configure.ac: Modified to reflect addition.

2002-02-27	Ilya Alexeev <ilya@continuum.ru>

	* libnetworking/net/if_ppp.c, libnetworking/pppd/auth.c,
	libnetworking/pppd/chat.c, libnetworking/pppd/pppd.h,
	libnetworking/pppd/sys-rtems.c: Add server with pap-authorization 
	capabilities as well as eliminate some warnings.

2002-02-27	Eric Norum <eric.norum@usask.ca>

	* libnetworking/net/radix.c: Properly handle fetching the default route
	when there is no route.  This was a bug in the original FreeBSD code and
	this fix is from an updated version of their code.

2002-02-16	Eric Norum <eric.norum@usask.ca>

	* libnetworking/lib/tftpDriver.clib/tftpDriver.c: Fix TFTP block number
	checking.

2002-02-05	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/pppd/sys-rtems.c: Remove unused variable status from
	dodefaultroute.

2002-02-04	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/lib/tftpDriver.c: Remove set_errno_and_return_minus_one,
	include <rtems/seterr.h>.

2002-02-01	Mike Siers <mikes@poliac.com>

	* libnetworking/pppd/rtemspppd.c (rtems_pppd_disconnect): Modified to
	avoid bringing the link down too fast. NOTE: Mike reports successfully
	running at 56K baud on a direct link.

2002-02-01	Eric Valette <valette@crf.canon.fr>

	* librdbg/So many patches have been posted recently on the mailing list
	and  because we were unable to find correct solution to compile on
	various  linux distros (due to rpcgen incompatibilities), librdbg/and
	because the coding  style of rdbg was rather inconsistant among various
	pieces of code, librdbg/I  decided to: 1) make some cleaning regarding
	global coding style (using indent + manual edits), 2) incorporate/review
	the paches send by various people (S. Holford, T. Strauman), 3) Fix the
	bug due to varying rpcgen code generation in remdeb_svc.c, 4) Remove
	some dead code, 5) Apply a patches enabling to call enterRdbg imediately
	after rdbg initialization is done, NB : the paches is huge but it is
	mainly due to coding styke chnages.  Only few lines of codes have been
	really changed and they do not impact  rdbg functionnality (AFAIKT).
	* librdbg/include/rdbg/servrpc.h, librdbg/include/rdbg/i386/rdbg_f.h,
	librdbg/include/rdbg/m68k/rdbg_f.h,
	librdbg/include/rdbg/powerpc/rdbg_f.h, librdbg/src/_servtgt.c,
	librdbg/src/awk.svc, librdbg/src/excep.c, librdbg/src/ptrace.c,
	librdbg/src/rdbg.c, librdbg/src/remdeb.x, librdbg/src/servbkpt.c,
	librdbg/src/servcon.c, librdbg/src/servrpc.c, librdbg/src/servtgt.c,
	librdbg/src/servtsp.c, librdbg/src/servutil.c,
	librdbg/src/i386/excep_f.c, librdbg/src/i386/rdbg_f.c,
	librdbg/src/i386/any/Makefile.am, librdbg/src/i386/any/remdeb.h,
	librdbg/src/i386/any/remdeb_svc.c, librdbg/src/i386/any/remdeb_xdr.c,
	librdbg/src/m68k/excep_f.c, librdbg/src/m68k/rdbg_f.c,
	librdbg/src/m68k/any/Makefile.am, librdbg/src/m68k/any/remdeb.h,
	librdbg/src/m68k/any/remdeb_svc.c, librdbg/src/m68k/any/remdeb_xdr.c,
	librdbg/src/powerpc/excep_f.c, librdbg/src/powerpc/rdbg_f.c,
	librdbg/src/powerpc/new_exception_processing/Makefile.am,
	librdbg/src/powerpc/new_exception_processing/remdeb.h,
	librdbg/src/powerpc/new_exception_processing/remdeb_svc.c,
	librdbg/src/powerpc/new_exception_processing/remdeb_xdr.c: Modified.

2002-01-31	Mike Siers <mikes@poliac.com>

	* libnetworking/pppd/rtemsdialer.h: New file missed in previous commit.
	* Nice Update of PPPD support which eliminates the requiremetn that
	drivers be in the termios TASK_DRIVEN mode. Mike did significant testing
	and reports that it seems to be more stable and handle larger packets
	better.  This patch replaces the termios tasks with more general pppd
	network driver tasks.  The functions pppinput() and pppstart() get 
	called from the interrupt service routine.
	* libnetworking/Makefile.am, libnetworking/configure.ac,
	libnetworking/net/Makefile.am, libnetworking/net/bpf.h,
	libnetworking/net/ethernet.h, libnetworking/net/if.c,
	libnetworking/net/if.h, libnetworking/net/if_arp.h,
	libnetworking/net/if_dl.h, libnetworking/net/if_ethersubr.c,
	libnetworking/net/if_llc.h, libnetworking/net/if_loop.c,
	libnetworking/net/if_ppp.h, libnetworking/net/if_pppvar.h,
	libnetworking/net/if_types.h, libnetworking/net/netisr.h,
	libnetworking/net/ppp-comp.h, libnetworking/net/ppp_defs.h,
	libnetworking/net/pppcompress.h, libnetworking/net/radix.c,
	libnetworking/net/radix.h, libnetworking/net/raw_cb.c,
	libnetworking/net/raw_cb.h, libnetworking/net/raw_usrreq.c,
	libnetworking/net/route.c, libnetworking/net/route.h,
	libnetworking/net/rtsock.c, libnetworking/pppd/Makefile.am,
	libnetworking/pppd/README, libnetworking/pppd/STATUS,
	libnetworking/pppd/auth.c, libnetworking/pppd/cbcp.c,
	libnetworking/pppd/ccp.c, libnetworking/pppd/ccp.h,
	libnetworking/pppd/chap.c, libnetworking/pppd/chap.h,
	libnetworking/pppd/chap_ms.c, libnetworking/pppd/chap_ms.h,
	libnetworking/pppd/chat.c, libnetworking/pppd/demand.c,
	libnetworking/pppd/fsm.c, libnetworking/pppd/fsm.h,
	libnetworking/pppd/ipcp.c, libnetworking/pppd/ipcp.h,
	libnetworking/pppd/ipxcp.c, libnetworking/pppd/ipxcp.h,
	libnetworking/pppd/lcp.c, libnetworking/pppd/lcp.h,
	libnetworking/pppd/magic.c, libnetworking/pppd/magic.h,
	libnetworking/pppd/options.c, libnetworking/pppd/patchlevel.h,
	libnetworking/pppd/pathnames.h, libnetworking/pppd/pppd.8,
	libnetworking/pppd/pppd.h, libnetworking/pppd/rtemsmain.c,
	libnetworking/pppd/rtemspppd.c, libnetworking/pppd/rtemspppd.h,
	libnetworking/pppd/sys-rtems.c, libnetworking/pppd/upap.c,
	libnetworking/pppd/upap.h, libnetworking/pppd/utils.c,
	libnetworking/pppd/example/README,
	libnetworking/pppd/example/netconfig.h,
	libnetworking/wrapup/Makefile.am: Modified.
	* libnetworking/net/bsd-comp.c, libnetworking/net/if_ppp.c,
	libnetworking/net/ppp-deflate.c, libnetworking/net/ppp.h,
	libnetworking/net/ppp_tty.c, libnetworking/net/pppcompress.c,
	libnetworking/net/zlib.c, libnetworking/net/zlib.h: New file.
	* libnetworking/modem/, libnetworking/modem/.cvsignore,
	libnetworking/modem/Makefile.am, libnetworking/modem/ppp.c,
	libnetworking/modem/ppp.h, libnetworking/modem/ppp_tty.c,
	libnetworking/modem/pppcompress.c: Subdirectory removed.

2002-01-21	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/rtems_telnetd/pty.c: Move config.h to were it belongs.
	Remove printf (Reported by Till Straumann <strauman@SLAC.Stanford.EDU>).

2002-01-18	Till Straumann <strauman@slac.stanford.edu>

	* librdbg/src/powerpc/excep_f.c: This patch addresses the following
	issues: - exception handler needs to enable MSR_FP if the interrupted
	thread is FP enabled. - printk message for MSR fixed and added
	stacktrace. NOTE: this requires the stacktrace patch to
	lib/libbsp/powerpc/shared/vectors/vector_init.c (#ifdef DDEBUG only,
	however).

2002-01-06	Joel Sherrill <joel@OARcorp.com>

	* optman/.cvsignore: Added aclocal.m4 and configure.
	* optman/.cvsignore: New file.

2002-01-03	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libchip/network/cs8900.c: Include rtems/bspIo.h instead of bspIo.h.

2002-01-02	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Add AC_CONFIG_SUBDIRS(optman). Remove AC_CONFIG_COMMANDS.
	* optman/ChangeLog: New.
	* optman/configure.ac: New.
	* optman/Makefile.am: New.
	* optman/rtems/*: Copied from c/src/exec/rtems/optman.
	* optman/sapi/*: Copied from c/src/exec/sapi/optman.

2001-12-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* config-ml.in: New file. Imported from gcc and modified for RTEMS.

2001-12-18	Eric Norum <eric.norum@usask.ca>

	* libnetworking/lib/tftpDriver.c: Allow chdir() to work on TFTP
	`directories' (path names with a / at the end) while disallowing open()
	operations on TFTP `directories'.

2001-12-07	Eric Norum <eric.norum@usask.ca>

	* libnetworking/lib/tftpDriver.c: Restore write capability.

2001-11-26	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libchip/network/sonic.h: Fix typo.
	* libnetworking/arpa/Makefile.am: Remove stray lines.

2001-10-30	Victor V. Vengerov <vvv@oktet.ru>

	* librdbg/src/m68k/rdbg_cpu_asm.S: Now compiles on ColdFire.

2001-10-18	Eric Norum <eric.norum@usask.ca>

	* libnetworking/lib/tftpDriver.c: Properly handles ../ components in
	chdir() and open() operations within the TFTP file system.

2001-10-17	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* librdbg/configure.ac: Fix latent bug exposed by removal of
	config.cache's which prevented powerpc targets librdbg from building.

2001-10-16	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Use SUBDIRS = @subdirs@, require automake-1.5.
	* configure.ac: Replace hst_subdirs with AC_CONFIG_SUBDIRS to make
	autoconf-2.52 happy.

2001-10-12	Mike Siers <mikes@poliac.com>

	* libnetworking/Update to stable working state.  Congratulations Mike!
	:).
	* libnetworking/modem_example: Directory removed.
	* libnetworking/modem_example/16550.h,
	libnetworking/modem_example/README, libnetworking/modem_example/modem.c,
	libnetworking/modem_example/modem.h, libnetworking/modem_example/ppp.c,
	libnetworking/modem_example/ppp.h,
	libnetworking/modem_example/pppcompress.c: Files removed.
	* libnetworking/pppd/example/pppd.options: New file.
	* libnetworking/pppd/README, libnetworking/pppd/STATUS,
	libnetworking/pppd/cbcp.c, libnetworking/pppd/cbcp.h,
	libnetworking/pppd/chat.c, libnetworking/pppd/pppd.h,
	libnetworking/pppd/rtemsmain.c: Updated.

2001-10-12	Joel Sherrill <joel@OARcorp.com>

	* libchip/serial/z85c30.c: Fixed typo.

2001-10-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* .cvsignore: Add autom4te.cache for autoconf > 2.52.
	* configure.in: Remove.
	* configure.ac: New file, generated from configure.in by autoupdate.
	* libchip/.cvsignore: Add autom4te.cache for autoconf > 2.52.
	* libchip/configure.in: Remove.
	* libchip/configure.ac: New file, generated from configure.in by
	autoupdate.
	* librdbg/.cvsignore: Add autom4te.cache for autoconf > 2.52.
	* librdbg/configure.in: Remove.
	* librdbg/configure.ac: New file, generated from configure.in by
	autoupdate.
	* libnetworking/.cvsignore: Add autom4te.cache for autoconf > 2.52.
	* libnetworking/configure.in: Remove.
	* libnetworking/configure.ac: New file, generated from configure.in by
	autoupdate.

2001-09-28	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libchip/rtc/Makefile.am: Use 'PREINSTALL_FILES ='.
	* libchip/network/Makefile.am: Use 'PREINSTALL_FILES ='.
	* libchip/serial/Makefile.am: Use 'PREINSTALL_FILES ='.

2001-09-27	Joel Sherrill <joel@OARcorp.com>

	* libchip/ChangeLog: Fixed typo in date.

2001-09-27	Eric Norum <eric.norum@usask.ca>

	* libnetworking/lib/tftpDriver.c: Add limited chdir() support to the
	TFTP  filesystem.

2001-09-23	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* librdbg/include/rdbg/i386/Makefile.am: Use 'PREINSTALL_FILES ='.
	* librdbg/include/rdbg/m68k/Makefile.am: Use 'PREINSTALL_FILES ='.
	* librdbg/include/rdbg/powerpc/Makefile.am: Use 'PREINSTALL_FILES ='.
	* librdbg/include/rdbg/Makefile.am: Use 'PREINSTALL_FILES ='.
	* librdbg/src/i386/any/Makefile.am: Use 'PREINSTALL_FILES ='.
	* librdbg/src/m68k/any/Makefile.am: Use 'PREINSTALL_FILES ='.
	* librdbg/src/powerpc/new_exception_processing/Makefile.am: Use
	'PREINSTALL_FILES ='.
	* libnetworking/machine/Makefile.am: Use 'PREINSTALL_FILES ='.
	* libnetworking/net/Makefile.am: Use 'PREINSTALL_FILES ='.
	* libnetworking/netinet/Makefile.am: Use 'PREINSTALL_FILES ='.
	* libnetworking/vm/Makefile.am: Use 'PREINSTALL_FILES ='.
	* libnetworking/pppd/Makefile.am: Use 'PREINSTALL_FILES ='.
	* libnetworking/sys/Makefile.am: Use 'PREINSTALL_FILES ='.
	* libnetworking/rtems_servers/Makefile.am: Use 'PREINSTALL_FILES ='.
	* libnetworking/arpa/Makefile.am: Use 'PREINSTALL_FILES ='.
	* libnetworking/nfs/Makefile.am: Use 'PREINSTALL_FILES ='.
	* libnetworking/rtems_webserver/Makefile.am: Use 'PREINSTALL_FILES ='.
	* libnetworking/rtems/Makefile.am: Use 'PREINSTALL_FILES ='.
	* libnetworking/rtems_telnetd/Makefile.am: Use 'PREINSTALL_FILES ='.

2001-09-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* librdbg/src/i386/any/Makefile.am: Move MAINTAINERCLEANFILES before the
	includes and use MAINTAINERCLEANFILES = to make automake-1.5 happy.
	* librdbg/src/m68k/any/Makefile.am: Ditto.
	* librdbg/src/powerpc/new_exception_processing/Makefile.am: Ditto.
	* libnetworking/Makefile.am: Use PREINSTALL_FILES = to make automake-1.5
	happy.

2001-09-21	Joel Sherrill <joel@OARcorp.com>

	* libchip/network/Makefile.am: Fixed typo on file name.
	* libchip/network/i82586.c: Commented out line 318 which is referencing 
	a member of a structure that is not currently there.  This needs to be
	worked out with Chris Johns <ccj@acm.org>. Switched C++ style comments
	to C style.

2001-09-19	Eric Norum <eric.norum@usask.ca>

	* libnetworking/lib/tftpDriver.c: Add some debugging capability.

2001-09-19	Chris Johns <ccj@acm.org>

	* libchip/network/README.i82586, libchip/network/i82586.c,
	libchip/network/i82586reg.h, libchip/network/i82586var.h: New files. 
	Network driver for Intel i82586.
	* nfs/bootp_subr.c, rtems/rtems_bootp.c, rtems/rtems_bsdnet.h,
	rtems/rtems_bsdnet_internal.h Added support for populating the initial
	"root" filesystem with information obtained via the DHCP response.

2001-09-14	Eric Norum <eric.norum@usask.ca>

	* librdbg/include/rdbg/rdbg.h, librdbg/src/ptrace.c: Modifications to
	make gcc 3.x happy.

2001-08-16	Mike Siers <mikes@poliac.com>

	* libnetworking/pppd/STATUS: Updated by Joel based upon email from Mike.
	* libnetworking/pppd/cbcp.c, libnetworking/pppd/cbcp.h: Readded files. 
	These support callback functionality that has not even been compiled
	under RTEMS yet.
	* libnetworking/Update of PPPD to 2.3.11 from 2.3.5 and addition of an
	example application.  Mike's notes on the modifications: - renamed
	error() function because of namespace problems - removed calls to the
	exit() funciton - removed extra files from the pppd source directory -
	defined pppd task constant values in rtemspppd.h - modifyied example
	code to get actual tick per second value - placed the pppd 2.3.11 man
	page file (pppd.8) into the pppd directory.
	* libnetworking/pppd/cbcp.c, libnetworking/pppd/cbcp.h,
	libnetworking/pppd/main.c, libnetworking/pppd/ppp_tty.c,
	libnetworking/pppd/pppmain.c, libnetworking/pppd/rtems-ppp.c,
	libnetworking/pppd/rtems-ppp.c: Deleted.
	* libnetworking/pppd/pppd.8, libnetworking/pppd/rtemsmain.c,
	libnetworking/pppd/rtemspppd.c, libnetworking/pppd/rtemspppd.h,
	libnetworking/pppd/sys-rtems.c, libnetworking/pppd/utils.c,
	libnetworking/pppd/example/Makefile, libnetworking/pppd/example/README,
	libnetworking/pppd/example/init.c,
	libnetworking/pppd/example/netconfig.h,
	libnetworking/pppd/example/ppp.conf,
	libnetworking/pppd/example/pppdapp.c,
	libnetworking/pppd/example/system.h: New files.
	* libnetworking/modem/ppp_tty.c, libnetworking/net/if_ppp.h,
	libnetworking/pppd/Makefile.am, libnetworking/pppd/README,
	libnetworking/pppd/STATUS, libnetworking/pppd/auth.c,
	libnetworking/pppd/ccp.c, libnetworking/pppd/ccp.h,
	libnetworking/pppd/chap.c, libnetworking/pppd/chap.h,
	libnetworking/pppd/chap_ms.c, libnetworking/pppd/chap_ms.h,
	libnetworking/pppd/chat.c, libnetworking/pppd/demand.c,
	libnetworking/pppd/fsm.c, libnetworking/pppd/fsm.h,
	libnetworking/pppd/ipcp.c, libnetworking/pppd/ipcp.h,
	libnetworking/pppd/ipxcp.c, libnetworking/pppd/ipxcp.h,
	libnetworking/pppd/lcp.c, libnetworking/pppd/lcp.h,
	libnetworking/pppd/magic.c, libnetworking/pppd/magic.h,
	libnetworking/pppd/options.c, libnetworking/pppd/patchlevel.h,
	libnetworking/pppd/pathnames.h, libnetworking/pppd/pppd.h,
	libnetworking/pppd/upap.c, libnetworking/pppd/upap.h: Modified.

2001-08-16	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/pppd/example/Makefile: Removed.
	* libnetworking/pppd/example/Makefile-user: Added was Makefile.  Renamed
	to avoid bootstrap -c clobbering it.
	* libnetworking/rtems_telnetd/.cvsignore: New file.

2001-08-09	Fernando-Ruiz Casas <correo@fernando-ruiz.com>

	* libnetworking/Makefile.am, libnetworking/configure.in,
	libnetworking/rtems_servers/Makefile.am,
	libnetworking/rtems_servers/telnetd.c,
	libnetworking/rtems_servers/telnetd.h,
	libnetworking/rtems_telnetd/Makefile.am,
	libnetworking/rtems_telnetd/README, libnetworking/rtems_telnetd/icmds.c,
	libnetworking/rtems_telnetd/pty.c, libnetworking/rtems_telnetd/pty.h,
	libnetworking/rtems_telnetd/telnetd.c,
	libnetworking/rtems_telnetd/telnetd.h, libnetworking/wrapup/Makefile.am:
	- pty and telnetd have a new subdir rtems_telnetd to avoid the side
	effect when ftpd change. - the tcp/ip stats have been implemented into
	icmds.c and started when telnetd daemon is started.
	* libnetworking/rtems_servers/telnetd.c,
	libnetworking/rtems_servers/telnetd.h: Removed.
	* libnetworking/rtems_telnetd: New directory.
	* libnetworking/rtems_telnetd/Makefile.am,
	libnetworking/rtems_telnetd/README, libnetworking/rtems_telnetd/icmds.c,
	libnetworking/rtems_telnetd/pty.c, libnetworking/rtems_telnetd/pty.h,
	libnetworking/rtems_telnetd/telnetd.c,
	libnetworking/rtems_telnetd/telnetd.h: New files.

2001-06-14	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/rtems_servers/telnetd.c, libnetworking/shell/telnetd.h:
	Moved from libmisc/shell so the network stack to address network
	depenendency.
	* libnetworking/rtems_servers/Makefile.am: Modified to reflect above.

2001-05-26	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/rtems_servers/Makefile.am: Deleted blank lines.

2001-05-15	Joel Sherrill <joel@OARcorp.com>

	* librdbg/src/i386/any/remdeb_svc.c, librdbg/src/m68k/any/remdeb_svc.c,
	librdbg/src/powerpc/new_exception_processing/remdeb_svc.c: Readding as I
	accidentally deleted the incorrectly empty versions.

2001-05-14	Till Straumann <strauman@slac.stanford.edu>

	* libchip/bootloader/Makefile.am, libchip/console/Makefile.am,
	libchip/pci/Makefile.am: Per PR215 address the following issues: -
	_IO_BASE, _ISA_MEM_BASE and PCI_DRAM_OFFSET are no longer defined by
	libcpu (powerpc/shared/include/io.h) but by the BSP (who is the only one
	to know the values) - the affected BSP (shared/motorola) headers have
	been fixed in a separate "libbsp/powerpc/shared" patch. - the DEC 21140
	driver (libchip/network/dec21140.c) has been fixed to use
	PCI_DRAM_OFFSET instead of PREP_PCI_DRAM_OFFSET. and PCI_MEM_BASE
	instead of PREP_ISA_MEM_BASE. PCI_MEM_BASE is to be defined by the BSP
	who is using this driver. - the DEC driver also has been fixed to use
	the newer rtems_bsp_delay_in_bus_cycles() instead of the obsolete
	delay_in_bus_cycles().

2001-05-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/libc/Makefile.am: Remove -D__STRICT_ANSI__.

2001-04-27	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libchip/configure.in: Add [-ansi -fasm] to RTEMS_PROG_CC_FOR_TARGET.

2001-04-24	Eric Norum <eric.norum@usask.ca>

	* libnetworking/lib/rtems_bsdnet_ntp.c: Modifications to make the RTEMS
	NTP synchronization a little more robust -- no NTP daemon yet, but at
	least it trys a little harder when the primary NTP server is down.

2001-04-20	Radzislaw Galler  <rgaller@et.put.poznan.pl>

	* libnetworking/modem/ppp.c, libnetworking/pppd/main.c,
	libnetworking/pppd/pppmain.c, libnetworking/pppd/rtems-ppp.c,
	libnetworking/pppd/modem_example/modem.c,
	libnetworking/pppd/modem_example/ppp.c: Translated Polish comments and
	other strings into English.
	* libnetworking/pppd/STATUS: updated to reflect the changes.

2001-04-20	Jake Janovetz <janovetz@uiuc.edu>

	* libnetworking/rtems_servers/ftpd.c: Correct argument so hooks work
	again.

2001-04-20	Eric Valette <valette@crf.canon.fr>

	* mcp750 directory renamed new_exception processing as it supports many
	more CPU models.
	* librdbg/configure.in, librdbg/src/powerpc/Makefile.am,
	librdbg/src/powerpc/new_exception_processing/Makefile.am,
	librdbg/src/powerpc/new_exception_processing/remdeb_f.x: New files
	formerly in mcp750 plus modifications.
	* librdbg/src/powerpc/mcp750/.cvsignore,
	librdbg/src/powerpc/mcp750/Makefile.am,
	librdbg/src/powerpc/mcp750/remdeb.h,
	librdbg/src/powerpc/mcp750/remdeb_f.x,
	librdbg/src/powerpc/mcp750/remdeb_svc.c,
	librdbg/src/powerpc/mcp750/remdeb_xdr.c: Removed when moved to
	new_exception_processing.
	* librdbg/configure.in, librdbg/src/powerpc/Makefile.am,
	librdbg/src/powerpc/new_exception_processing/Makefile.am,
	librdbg/src/powerpc/new_exception_processing/remdeb_f.x: Modified as
	part of this effort to add support for the MPC8xx.

2001-04-19	Joel Sherrill <joel@OARcorp.com>

	* librdbg/src/powerpc/rdbg_f.c: Always include <rtems.h> instead of 
	internal include files.

2001-03-20	Till Straumann <strauman@SLAC.Stanford.EDU>

	PR 158
	* libnetworking/libc/rcmd.c, libnetworking/libc/rcmd.c: Enable the
	rcmd() library call by commenting out the parts that deal with signals. 
	This enables RTEMS to 'rsh' command to a server connecting fd to remote
	stdio. The 'server-side' parts of this file which deal with
	authentication are disabled since they are not needed.

2001-03-15	Ralf Corsepius <corsepius@faw.uni-ulm.de>

	* libnetworking/include/.cvsignore: Remove dangling file.

2001-03-14	Joel Sherrill <joel@OARcorp.com>

	* libchip/serial/Makefile.am, libchip/serial/mc68681.c,
	libchip/serial/ns16550.c, libchip/serial/serprobe.c,
	libchip/serial/z85c30.c: Now install sersupp.h to <libchip/sersupp.h> so
	libchip style serial drivers can be written in libcpu or libbsp.

2001-03-01	Joel Sherrill <joel@OARcorp.com>

	* libchip/network/cs8900.c, libchip/network/cs8900.h,
	libchip/network/sonic.c, libchip/network/sonic.h,
	libchip/rtc/icm7170_reg.c, libchip/rtc/icm7170_reg2.c,
	libchip/rtc/icm7170_reg4.c, libchip/rtc/icm7170_reg8.c,
	libchip/rtc/m48t08_reg.c, libchip/rtc/m48t08_reg2.c,
	libchip/rtc/m48t08_reg4.c, libchip/rtc/m48t08_reg8.c,
	libchip/serial/mc68681_reg.c, libchip/serial/mc68681_reg2.c,
	libchip/serial/mc68681_reg4.c, libchip/serial/mc68681_reg8.c,
	libchip/serial/z85c30.c, libchip/serial/z85c30.h,
	libchip/serial/z85c30_p.h, libchip/serial/z85c30_reg.c: Corrected header.

2001-02-04	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* librdbg/include/rdbg/Makefile.am,
	librdbg/include/rdbg/i386/Makefile.am,
	librdbg/include/rdbg/m68k/Makefile.am,
	librdbg/include/rdbg/powerpc/Makefile.am: Cleanup including more proper
	style on include files.

2001-02-03	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libchip/network/Makefile.am, libchip/rtc/Makefile.am,
	libchip/serial/Makefile.am:  Apply include_*HEADERS instead of H_FILES,
	replace ${..} with $(..).
	* libnetworking/Makefile.am, libnetworking/arpa/Makefile.am,
	libnetworking/machine/Makefile.am, libnetworking/net/Makefile.am,
	libnetworking/ netinet/Makefile.am, libnetworking/nfs/Makefile.am,
	libnetworking/rtems/Makefile.am, libnetworking/
	rtems_servers/Makefile.am, libnetworking/rtems_webserver/Makefile.am,
	libnetworking/ sys/Makefile.am, libnetworking/vm/Makefile.am: Apply
	include_*HEADERS instead of H_FILES.
	* libnetworking/include/Makefile.am: Remove.
	* libnetworking/Makefile.am: Add handling of *.h files.
	* libnetworking/configure.in: Remove include/Makefile.

2001-02-02	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: install to $(exec_prefix)/@RTEMS_BSP@.

2001-01-31	Sergei Organov <osv@javad.ru>

	* libnetworking/rtems_servers/ftp.d: Following changes: - Hacks with
	current dir and root dir removed in favor of new libio support for
	task-local current and root directories. - Bug in `close_data_socket()'
	introduced by previous change fixed. - `command_pasv()' changed to set
	timeout on socket we are listening on and code fixed to don't close
	socket twice on error. - `serr()' changed to clear `errno'. -
	`data_socket()' changed to clear `errno' before `bind()'. - `session()'
	changed to clear `errno' before processing session. -
	`close_data_socket()' fixed to close both active and passive sockets -
	Initialize info->data_socket to -1 in `daemon()' - Initialize `fname' to
	empty string  in `exec_command()'.

2001-01-25	Eric Norum <eric.norum@usask.ca>

	* libnetworking/lib/tftpDriver.c: Reduce first timeout interval.  This
	improves throughput on systems which are dropping packets.   Only the
	first timeout is reduced.  This keeps the number of extra packets down
	on networks that are very busy and dropping lots of packets.

2001-01-24	Sergei Organov <osv@javad.ru>

	* libnetworking/rtems_servers/ftpd.c,
	libnetworking/rtems_servers/ftpd.h: Major enhancements as listed below:
	- Timeouts on sockets implemented. 'idle' field added to configuration.
	No timeout by default to keep backward compatibility. Note: SITE IDLE
	command not implemented yet. - Basic global access control implemented.
	'access' field added to configuration. No access limitations by default
	to keep backward compatibility. - Anchor data socket for active mode
	(using self IP and port 20.) - Fixed default data port support (still
	not tested). - Don't allow IP address different from originating host in
	PORT command to improve security. - Fixed bug in MDTM command. - Check
	for correctness of parsing of argument in command_port(). - Fixed
	squeeze_path() to don't allow names like 'NAME/smth' where 'NAME' is not
	a directory. - Command parsing a little bit improved: command names are
	now converted to upper-case to be more compatible with RFC (command
	names are not case-sensitive.) - Reformat comments so that they have
	RTEMS look-and-feel. - Fixed DELE, SITE CHMOD, RMD, MKD broken by
	previous changes - True ASCII mode implemented (doesn't work for hooks
	and /dev/null) - Passive mode implemented, PASV command added. - Default
	port for data connection could be used (untested, can't find ftp client
	that doesn't send PORT command) - SYST reply changed to UNIX, as former
	RTEMS isn't registered name. - Reply codes reviewed and fixed.

2001-01-18	Joel Sherrill <joel@OARcorp.com>

	* librdbg/src/powerpc/new_exception_processing/remdeb_svc.c: Corrected 
	macro using variable arguments.
	* librdbg/src/powerpc/new_exception_processing/remdeb.h,
	librdbg/src/powerpc/new_exception_processing/remdeb_xdr.c: Regenerated
	since I updated the main RTEMS development machine to RedHat 7.2 and
	apparently got a new version of rpcgen.

2001-01-12	Sergei Organov <osv@javad.ru>

	* libnetworking/rtems_servers/ftpd.c,
	libnetworking/rtems_servers/ftpd.h: Major enhancements as listed below:
	- use pool of pre-created threads to handle sessions instead of
	creating/deleting threads on the fly - LIST output is now similar to
	what "/bin/ls -al" would output, thus FTP clients such Netscape are
	happy with it. - LIST NAME now works (both for files and directories) -
	added support for NLST, CDUP, and MDTM FTP commands to make more FTP
	clients happy  - keep track of CWD for every session separately -
	ability to specify root directory name for FTPD in configuration table.
	FTPD will then create illusion for FTP clients that this is actually
	root directory. - ignore options sent in commands, thus LIST -al FILE
	works and doesn't try to list "-al" directory. - buffers are allocated
	on stack instead of heap where possible to eliminate malloc/free calls
	(avoid possible heap fragmentation troubles). - drop using of task
	notepad to pass parameters - use function arguments instead - use
	snprintf() instead of sprintf() as the latter is unsafe - use of PF_INET
	in socket() instead of AF_INET.

2001-01-02	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/CHANGELOG: Removed.
	* libnetworking/README: Merged CHANGELOG contents as initial changes.

2000-12-14	Eric Norum <eric.norum@usask.ca>

	* libnetworking/lib/tftpDriver.c: Added write capability.

2000-12-08	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/libc/linkaddr.c: Initialized variable to remove warning.
	* libnetworking/modem/ppp.c, libnetworking/modem/ppp_tty.c: Made
	numerous variable declarations conditional on PPP_COMPRESS and
	PPP_FILTER.  Commented out variables that were not used because the code
	using them was commented out. Removed totally unused variables.
	* libnetworking/modem/pppcompress.c: Added parentheses to avoid warnings.
	* libnetworking/pppd/pppmain.c: Removed numerous warnings.

2000-11-30	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/modem/ppp_tty.c: Changed to include
	<rtems/termiostypes.h> since that is an RTEMS specific header file.
	* libnetworking/sys/ttycom.h: Moved to lib/include/sys.
	* libnetworking/Makefile.am: Modified to reflect above.

2000-11-27	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/libc/res_init.c: Fix typo - adding missing # on include.

2000-11-25	Eric Norum <eric.norum@usask.ca>

	* libnetworking/libc/res_init.c: Move include to avoid compiler dumping
	core.

2000-11-25	Antti P Miettinen  <antti.p.miettinen@nokia.com>

	* libnetworking/wrapup/Makefile.am: Added modem subdir.
	* libnetworking/configure.in, libnetworking/Makefile.am: Added modem
	subdir.
	* libnetworking/net/Makefile.am: Added if_pppvar.h, pppcompress.h.
	* libnetworking/pppd/Makefile.am: Added pppmain.c (which needs work).
	* libnetworking/pppd/chat.c, libnetworking/pppd/fsm.c,
	libnetworking/pppd/fsm.h, libnetworking/pppd/ipxcp.c,
	libnetworking/pppd/main.c, libnetworking/pppd/ppp_tty.c,
	libnetworking/pppd/upap.c: Changes from Thomas Doerfler 
	<Thomas.Doerfler@imd-systems.de> and cosmetic changes by me. Actually
	main.c and ppp_tty.c should be scratched. The modem subdir has the real
	ppp_tty.c and the real pppd main is in pppmain.c.

2000-11-13	Jiri Gaisler <jgais@ws.estec.esa.nl>

	* libchip/network/sonic.c: Added ipalign() routine to align the received
	packet so that the ip header is on a 32-bit boundary. Necessary for
	cpu's that do not allow unaligned loads and stores and when the 32-bit
	DMA mode is used.

2000-11-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
	* libchip/Makefile.am: Use ... instead of RTEMS_TOPdir in
	ACLOCAL_AMFLAGS.
	* librdbg/Makefile.am: Use ... instead of RTEMS_TOPdir in
	ACLOCAL_AMFLAGS.
	* libnetworking/Makefile.am: Use ... instead of RTEMS_TOPdir in
	ACLOCAL_AMFLAGS.

2000-11-03	Chris Johns <ccj@acm.org>

	* libchip/network/README.cs8900, libchip/network/cs8900.c,
	libchip/network/cs8900.h: New files.

2000-11-02	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
	* libchip/Makefile.am: Switch to ACLOCAL_AMFLAGS = -I
	$(RTEMS_TOPdir)/aclocal.
	* librdbg/Makefile.am: Switch to ACLOCAL_AMFLAGS = -I
	$(RTEMS_TOPdir)/aclocal.
	* libnetworking/Makefile.am: Switch to ACLOCAL_AMFLAGS = -I
	$(RTEMS_TOPdir)/aclocal.

2000-10-30	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.in: Switch to GNU-canonicalization.
	* Makefile.am: Reflect changes to configure.in.
	* acinclude.m4: Remove.

2000-10-30	Joel Sherrill <joel@OARcorp.com>

	* POSIX include files merged into newlib.  This resulted in some
	definitions moving to other files and thus some secondary effects in
	RTEMS source code.
	* libnetworking/machine/types.h: Added _CLOCKID_T_ and _TIMER_T_ to be
	in sync with newlib's <machine/types.h>.
	* libnetworking/rtems/rtems_bsdnet_internal.h: newlib now includes
	definition of struct itimerval in <sys/time.h>.

2000-10-27	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.in: add lib/libbsp to the GNU canonicalized subdirectories,
	remove cfg_subdirs, cfg_subdirs1, hst_subdirs1.
	* Makefile.am: remove cfg_subdirs, cfg_subdirs1, hst_subdirs1.
	* ChangeLog: Fix typos.
	* configure.in: add tests to the GNU canonicalized subdirectories.

2000-10-26	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.in: add lib/libcpu to the GNU canonicalized subdirectories.
	* configure.in: add lib to the GNU canonicalized subdirectories,  make
	the lib directory before configuring lib/.

2000-10-25	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.in, Makefile.am: add exec to the GNU canonicalized 
	subdirectories.
	* configure.in: add librtems++ to the GNU canonicalized subdirectories.
	* configure.in: add libnetworking, librpc and librdb to the GNU 
	canonicalized subdirectories.
	* configure.in: add libmisc and libchip to the GNU canonicalized
	subdirectories.
	* libchip/Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
	Switch to GNU canonicalization.
	* librdbg/Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
	Switch to GNU canonicalization.
	* libnetworking/Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
	Switch to GNU canonicalization.

2000-10-24	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am, acinclude.m4, configure.in: Introduce GNU
	canonicalization to libfs/. The approach is currently a bit of a hack as
	GNU canonicalization does not support the per-BSP build some of the
	other directories require.  As more of the tree is converted, this will
	become less  of an issue.

2000-10-20	Joel Sherrill <joel@OARcorp.com>

	* libchip/network/dec21140.c: Corrected attach to include "int attach"
	parameter.

2000-10-19	Antti P Miettinen  <anmietti@trshp.ntc.nokia.com>

	* librdbg/src/m68k/any/remdeb.h, librdbg/src/m68k/any/remdeb_xdr.c,
	librdbg/src/m68k/any/remdeb_svc.c: New files missed in merger.
	* librdbg/configure.in: Add m68k support.
	* librdbg/include/rdbg/m68k, librdbg/src/m68k, librdbg/src/m68k/any: New
	subdirectory.
	* librdbg/src/_servtgt.c: add status text to prinf upon task creation
	failure.
	* librdbg/src/rdbg.c: reconnect rdbg exception handlers upon RPC calls.
	* librdbg/src/m68k/Makefile.am, librdbg/src/m68k/any/Makefile.am,
	librdbg/src/m68k/any/remdeb_f.x, librdbg/src/m68k/any/.cvsignore,
	librdbg/src/m68k/any/remdeb.h, librdbg/src/m68k/any/remdeb_xdr.c,
	librdbg/src/m68k/any/remdeb_svc.c, librdbg/src/m68k/excep_f.c,
	librdbg/src/m68k/rdbg_cpu_asm.S, librdbg/src/m68k/rdbg_f.c,
	librdbg/src/m68k/.cvsignore: New files.
	* libnetworking/lib/tftpDriver.c: add comments to handlers struct
	function pointers.
	* libnetworking/rtems/rtems_glue.c: move pointer arithmetic to be
	_after_ pointer has been checked against NULL.

2000-10-18	Joel Sherrill <joel@OARcorp.com>

	* wrapup/Makefile.am: Added libfs.

2000-10-18	Chris Johns <ccj@acm.org>

	* libfs created.
	* configure.in: Added libfs subdirectory.
	* libnetworking/pppd/ipxcp.c: Fixed a typo.

2000-09-28	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/rtems_webserver/Makefile.am,
	libnetworking/rtems_webserver/base64.c,
	libnetworking/rtems_webserver/base64.c: Renamed base64.c to wbase64.c.
	* libnetworking/rtems_webserver/sock.c: Added file missed in merger.

2000-09-22	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/machine/types.h, libnetworking/pppd/pppd.h,
	libnetworking/rtems/rtems_bsdnet_internal.h,
	libnetworking/rtems_webserver/webmain.c: machine/types.h  should not
	have included rtems.h.  It is now including precisely the  least amount
	of low level, yet portable .h files to get the basic RTEMS types
	defined.  This rippled into other  files since rtems_bsdnet_internal.h
	used machine/types.h to include rtems.h.

2000-09-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.in: Add RTEMS_PROG_CC_FOR_TARGET, RTEMS_CANONICALIZE_TOOLS.

2000-09-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/ChangeLog: Cleanup.

2000-09-05	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libchip/network/Makefile.am: Use AM_*FLAGS += ...
	* libchip/ChangeLog: Fix formating.

2000-09-05	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/rtems/rtems_syscall.c: Changed from O_NONBLOCK to
	internal RTEMS_LIBIO_FLAGS_NO_DELAY to avoid O_NONBLOCK/O_NDELAY
	confusion and to work with the converted flags.

2000-09-04	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* wrapup/Makefile.am: Include compile.am.
	* libchip/network/Makefile.am, libchip/rtc/Makefile.am,
	libchip/serial/Makefile.am: Include compile.am.
	* librdbg/src/i386/any/Makefile.am,
	librdbg/src/powerpc/mcp750/Makefile.am: Include compile.am.
	* libnetworking/kern/Makefile.am, libnetworking/lib/Makefile.am,
	libnetworking/libc/Makefile.am, libnetworking/net/Makefile.am,
	libnetworking/netinet/Makefile.am, libnetworking/nfs/Makefile.am,
	libnetworking/pppd/Makefile.am, libnetworking/rtems/Makefile.am,
	libnetworking/rtems_servers/Makefile.am,
	libnetworking/rtems_webserver/Makefile.am,
	libnetworking/wrapup/Makefile.am: Include compile.am.

2000-09-01	Rosimildo daSilva <rdasilva@connecttel.com>

	* libnetworking/emfdb.c: Removed stray semi-colon.  Reported on GoAhead
	mailing lists by Jim Rudnicki <jdrudnicki@yahoo.com>.

2000-08-31	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libnetworking/netinet/tcp_input.c: Spelling corrections.

2000-08-31	Joel Sherrill <joel@OARcorp.com>

	* Merged version 2.1 of GoAhead webserver.  This update was submitted by
	Antti P Miettinen <antti.p.miettinen@nokia.com>.
	* libnetworking/NOTES, libnetworking/base64.c, libnetworking/ejIntrn.h,
	libnetworking/emfdb.c, libnetworking/emfdb.h, libnetworking/md5.h,
	libnetworking/md5c.c, libnetworking/ um.c, libnetworking/um.h: New files.
	* libnetworking/wbase64.c: Removed.
	* libnetworking/Makefile.am, libnetworking/asp.c,
	libnetworking/balloc.c, libnetworking/default.c, libnetworking/ej.h,
	libnetworking/ejlex.c, libnetworking/ejparse.c, libnetworking/ form.c,
	libnetworking/h.c, libnetworking/handler.c, libnetworking/mime.c,
	libnetworking/misc.c, libnetworking/ringq.c, libnetworking/rom.c,
	libnetworking/security.c, libnetworking/ socket.c, libnetworking/sym.c,
	libnetworking/uemf.c, libnetworking/uemf.h, libnetworking/url.c,
	libnetworking/value.c, libnetworking/webcomp.c, libnetworking/webmain.c,
	libnetworking/ webpage.c, libnetworking/webrom.c, libnetworking/webs.c,
	libnetworking/webs.h, libnetworking/websuemf.c, libnetworking/wsIntrn.h:
	Modified.

2000-08-30	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.in: Add lib/libcpu and lib/libbsp to cfg_subdirs.

2000-08-30	Joel Sherrill <joel@OARcorp.com>

	* libnetworking/rtems_webserver/license.txt: New file.

2000-08-10	Joel Sherrill <joel@OARcorp.com>

	* ChangeLog: New file.
	* libchip/ChangeLog: New file.
	* librdbg/ChangeLog: New file.
	* libnetworking/ChangeLog: New file.