summaryrefslogtreecommitdiffstats
path: root/doc/ChangeLog
blob: f9e5cbfaafb0460d57079ac0b67e24da2031e2da (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
2011-03-04	Ralf Corsépius <ralf.corsepius@rtems.org>

	* configure.ac: Rename RTEMS_API into _RTEMS_API.

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

	PR 1744/doc
	* user/clock.t: rtems_clock_time_value type uses changed to struct
	timeval.

2011-02-28	Joel Sherrill <joel.sherrill@oarcorp.com>

	* setup.def, shell/preface.texi: Bump to 4.10.99.0

2011-02-17	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/conf.t: Document changes to Scheduler configuration.

2011-02-02	Ralf Corsépius <ralf.corsepius@rtems.org>

	* configure.ac: Require autoconf-2.68, automake-1.11.1.

2011-01-10	Danila Bespalov <danila DOT bespalov AT gmail DOT com>

	* posix_users/posix_users.texi, posix_users/signal.t: Review and
	improve as part of Google Code-In 2010.

2011-01-02	Danila Bespalov <danila DOT bespalov AT gmail DOT com>

	* started/buildc.t, started/buildrt.t, started/nt.t, started/require.t,
	started/sample.t: Review and improve.

2010-12-16	Joel Sherrill <joel.sherrilL@OARcorp.com>

	* develenv/direct.t: Remove Getting Started with GNAT/RTEMS.
	* started_ada/.cvsignore, started_ada/Makefile.am,
	started_ada/buildada.t, started_ada/gdb.t, started_ada/intro.t,
	started_ada/require.t, started_ada/sample.t, started_ada/stamp-vti,
	started_ada/started_ada.texi, started_ada/tversions.texi,
	started_ada/version.texi: Removed.

2010-12-14	Joel Sherrill <joel.sherrill@oarcorp.com>

	* Makefile.am, configure.ac, common/cpright.texi, common/rtems.texi.in,
	cpu_supplement/.cvsignore, started/Makefile.am, started/binaries.t,
	started/buildc.t, started/buildrt.t, started/intro.t,
	started/nextstep.t, started/nt.t, started/require.t,
	started/sample.t, started/started.texi, started/version.texi: Major
	update which includes removal of references to specific tool versions
	and patches.
	* started/tversions.texi.in: Removed.

2010-11-24	Gedare Bloom <giddyup44@yahoo.com>

	PR 1647/cpukit
	* user/conf.t, user/schedule.t: Update documentation to reflect
	refactoring of SuperCore to add Scheduler and ability for user to
	configure a scheduler.

2010-11-11	Joel Sherrill <joel.sherrilL@OARcorp.com>

	PR 1716/doc
	* user/concepts.t: print_name example used a variable which did not
	match the name of the passed in parameter.

2010-11-01	Joel Sherrill <joel.sherrilL@OARcorp.com>

	PR 1714/doc
	* user/datatypes.t: Add missing description of rtems_status_codes.

2010-08-13	Joel Sherrill <joel.sherrilL@OARcorp.com>

	PR 1674/docs
	* user/Makefile.am, user/dirstat.texi: Fix bad node reference.

2010-08-09	Sebastian Huber <sebastian.huber@embedded-brains.de>

	PR 1513/doc
	* user/chains.t: Added missing functions.  Uniform text for
	unprotected functions.

2010-08-03	Sebastian Huber <sebastian.huber@embedded-brains.de>

	PR 1650/cpukit
	* user/part.t: Clarify.

2010-07-30	Gedare Bloom <giddyup44@yahoo.com>

	PR 1599/cpukit
	* porting/interrupts.t: Rename _Context_Switch_necessary to
	_Thread_Dispatch_necessary to more properly reflect the intent.

2010-07-29	Gedare Bloom <giddyup44@yahoo.com>

	PR 1635/cpukit
	* porting/prioritybitmap.t: Refactoring of priority handling, to
	isolate the bitmap implementation of priorities in the supercore so
	that priority management is a little more modular. This change is in
	anticipation of scheduler implementations that can select how they
	manage tracking priority levels / finding the highest priority ready
	task. Note that most of the changes here are simple renaming, to
	clarify the use of the bitmap-based priority management.

2010-06-28	Joel Sherrill <joel.sherrill@oarcorp.com>

	PR 1573/cpukit
	* porting/interrupts.t: Add a per cpu data structure which contains the
	information required by RTEMS for each CPU core. This encapsulates
	information such as thread executing, heir, idle and dispatch needed.

2010-06-17	Joel Sherrill <joel.sherrill@oarcorp.com>

	* Makefile.am, configure.ac, index.html.in, develenv/direct.t,
	posix_users/gen_size_report, started/nextstep.t,
	started_ada/buildada.t, user/conf.t, user/object.t: Remove ITRON API.
	* itron3.0/.cvsignore, itron3.0/Makefile.am, itron3.0/config.t,
	itron3.0/eventflags.t, itron3.0/fixedblock.t, itron3.0/gen_all,
	itron3.0/gen_section, itron3.0/gen_status_shell,
	itron3.0/interrupt.t, itron3.0/itron.texi, itron3.0/mailbox.t,
	itron3.0/memorypool.t, itron3.0/msgbuffer.t, itron3.0/network.t,
	itron3.0/preface.texi, itron3.0/rendezvous.t, itron3.0/semaphore.t,
	itron3.0/stamp-vti, itron3.0/status.t, itron3.0/task.t,
	itron3.0/tasksync.t, itron3.0/time.t, itron3.0/version.texi: Removed.

2010-06-16	Joel Sherrill <joel.sherrilL@OARcorp.com>

	PR 1568/doc
	* user/intr.t: Fix list of services callable from ISR.

2010-06-15	Gedare Bloom <giddyup44@yahoo.com>

	PR 1565/cpukit
	* cpu_supplement/Makefile.am, cpu_supplement/cpu_supplement.texi: Merge
	SPARC64 port.
	* cpu_supplement/sparc64.t: New file.

2010-06-11	Ralf Corsépius <ralf.corsepius@rtems.org>

	* Makefile.am: Don't install html_imagesdir unconditionally.
	* main.am: Don't install html_projectdir unconditionally.
	* cpu_supplement/Makefile.am: Include main.am.

2010-06-11	Ralf Corsépius <ralf.corsepius@rtems.org>

	* ada_user/stamp-vti, ada_user/version.texi,
	bsp_howto/stamp-vti, bsp_howto/version.texi,
	cpu_supplement/stamp-vti, cpu_supplement/version.texi,
	develenv/stamp-vti, develenv/version.texi,
	filesystem/stamp-vti, filesystem/version.texi,
	itron3.0/stamp-vti, itron3.0/version.texi,
	networking/stamp-vti, networking/version.texi,
	new_chapters/stamp-vti, new_chapters/version.texi,
	porting/stamp-vti, porting/version.texi,
	posix1003.1/stamp-vti, posix1003.1/version.texi,
	posix_users/stamp-vti, posix_users/version.texi,
	relnotes/stamp-vti, relnotes/version.texi,
	shell/stamp-vti, shell/version.texi,
	started/stamp-vti, started/version.texi,
	started_ada/stamp-vti, started_ada/version.texi,
	user/stamp-vti, user/version.texi:
	New.

2010-06-11	Ralf Corsépius <ralf.corsepius@rtems.org>

	* ada_user/Makefile.am, bsp_howto/Makefile.am,
	cpu_supplement/Makefile.am, develenv/Makefile.am,
	filesystem/Makefile.am, itron3.0/Makefile.am,
	networking/Makefile.am, new_chapters/Makefile.am,
	porting/Makefile.am, posix1003.1/Makefile.am,
	posix_users/Makefile.am, relnotes/Makefile.am,
	shell/Makefile.am, started/Makefile.am,
	started_ada/Makefile.am, user/Makefile.am:
	Remove EDITION (Unused).

2010-06-02	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/.cvsignore: Add semaphore_attributes.pdf.

2010-05-18	Joel Sherrill <joel.sherrilL@OARcorp.com>

	PR 1520/doc
	* user/part.t: Partition create discussion said it returned the number
	of buffers created but it does not.

2010-05-18	Alin Rus <alin.codejunkie@gmail.com>

	PR 1519/doc
	* user/chains.t: Fix typo in Chain_Control example.

2010-05-13	Chris Johns <chrisj@rtems.org>

	* shell/file.t: Add dd, debugrfs, hexdump, ln, mknod, mkrfs, mv.
	* shell/general.t: Add time.
	
2010-05-12	Sebastian Huber <sebastian.huber@embedded-brains.de>

	PR 1512/doc
	* shell/general.t: Add rtc.
	* shell/file.t: Add fdisk.

2010-05-09	Joel Sherrill <joel.sherrill@oarcorp.com>

	PR 1512/doc
	* shell/general.t: Add setenv, getenv, and unsetenv.

2010-05-05	Alin Rus <alin.codejunkie@gmail.com>

	PR 1510/doc
	* user/chains.t: Fix code example.

2010-04-22	Alin Rus <alin.codejunkie@gmail.com>

	* user/chain.t: Fixed the example from PR 1504.

2010-03-04	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/conf.t: CONFIGURE_DISABLE_CLASSIC_NOTEPADS is typo of
	CONFIGURE_DISABLE_CLASSIC_API_NOTEPADS. Fix it.

2010-02-18	Chris Johns <chrisj@rtems.org>

	* networking/networkapp.t: Updated the BOOTP/DHCP to document the
	default behaviour of looping forever.

2010-01-11	Marc Pignat <marc.pignat@hevs.ch>

	PR 1490/doc
	* user/clock.t: Fix typo. rtems_clock_get_ticks_per_second not
	rtems_clock_get_ticks_per_seconds.

2009-12-17	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/clock.t: Eliminate unused type rtems_clock_time_value.

2009-12-16	Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>

	* bsp_howto/console.t: adaption to ssize_t return value for
	my_driver_write() function

2009-11-23	Joel Sherrill <joel.sherrill@oarcorp.com>

	PR 1460/cpukit
	* user/object.t: Change return type on methods accessing portions of
	RTEMS Ids to int. This allows -1 to be return on error.

2009-11-09	Joel Sherrill <joel.sherrill@oarcorp.com>

	* ada_user/Makefile.am, ada_user/ada_user.texi, user/Makefile.am,
	user/c_user.texi, user/concepts.t, user/overview.t,
	user/preface.texi, user/schedule.t, user/sem.t: Add table of figures.
	Add text and graphic of tree illustrating valid combinations of
	semaphore attributes.
	* user/semaphore_attributes.eps, user/semaphore_attributes.png:
	New files.

2009-10-14	Joel Sherrill <joel.sherrill@oarcorp.com>

	* bsp_howto/console.t: Capitalization.

2009-10-14	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/preface.texi: Remove UNIX and update port list.

2009-10-14	Ralf Corsépius <ralf.corsepius@rtems.org>

	* HELP.html, bsp_howto/support.t, relnotes/status.texi,
	started_ada/buildada.t: Remove references to posix/Unix port.

2009-09-26	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/conf.t, user/userext.t: Eliminate use of deprecated
	rtems_extension.

2009-09-14	Sebastian Huber <sebastian.huber@embedded-brains.de>

	* cpu_supplement/arm.t: Update.
	* cpu_supplement/preface.texi: Typo.
	* cpu_supplement/general.t: Expanded abbreviation.

2009-09-14	Sebastian Huber <sebastian.huber@embedded-brains.de>

	* cpu_supplement/arm.t: Update.
	* cpu_supplement/preface.texi: Typo.
	* cpu_supplement/general.t: Expanded abbreviation.

2009-08-26	Sebastian Huber <sebastian.huber@embedded-brains.de>

	* user/conf.t: Change stack allocator signature.

2009-08-22	Roxana Leontie <roxana.leontie@gmail.com>

	* bsp_howto/framebuffer.t: documented the improvements made to
	read/write

2009-08-21	Roxana Leontie <roxana.leontie@gmail.com>

	* bsp_howto/framebuffer.t: Updated the frame buffer documentation.

2009-08-05	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/conf.t: Add configuration of posix message queue file
	descriptors as separate entity. Also add documentation on posix
	configuration elements not previously covered.

2009-08-03	Roxana Leontie <roxana.leontie@gmail.com>

	* bsp_howto/framebuffer.t: added documentation

2009-07-28	Joel Sherrill <joel.sherrill@oarcorp.com>

	* bsp_howto/.cvsignore, bsp_howto/Makefile.am,
	bsp_howto/bsp_howto.texi: Add Frame Buffer Device Driver shell.
	* bsp_howto/framebuffer.t: New file.
	* user/conf.t: Add CONFIGURE_APPLICATION_NEEDS_FRAME_BUFFER_DRIVER.

2009-07-02	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/region.t: Fix typos where semaphore referenced instead of region
	or segment.

2009-07-02	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/preface.texi: Correct list of supported CPU architectures.

2009-05-08	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/conf.t: Change work_space_size to uintptr_t since it cannot be
	negative.

2009-04-19	Joel Sherrill <joel.sherrill@oarcorp.com>

	* cpu_supplement/.cvsignore, cpu_supplement/Makefile.am,
	cpu_supplement/cpu_supplement.texi: Add shell for Atmel AVR chapter.
	* cpu_supplement/avr.t: New file.

2009-03-30	Sebastian Huber <sebastian.huber@embedded-brains.de>

	* shell/confinit.t: New argument sequence for rtems_shell_init().

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

	* user/.cvsignore: Add Object ID PDF files.

2009-02-27	Joel Sherrill <joel.sherrill@oarcorp.com>

	* posix_users/preface.texi, shell/preface.texi: Add stock
	acknowledgement paragraphs that are required when excerpting and
	reusing text from POSIX standards per the agreement at
	* common/opengroup_manpage_acknowledgement.texi,
	common/opengroup_preface_acknowledgement.texi: New files.

2009-02-27	Joel Sherrill <joel.sherrill@OARcorp.com>

	PR 1387/doc
	* user/intr.t: Add Interrupt Manager services to list of services
	callable from ISR.

2009-02-19	Joel Sherrill <joel.sherrill@oarcorp.com>

	* shell/rtems.t: Add halt command.

2009-02-12	Joel Sherrill <joel.sherrill@oarcorp.com>

	* porting/idlethread.t: Change prototype of IDLE thread to consistently
	return void * and take a uintptr_t argument.

2009-01-29	Sebastian Huber <sebastian.huber@embedded-brains.de>

	* bsp_howto/console.t: Clarify interrupt transmit process.
	* user/concepts.t: Typo.

2008-12-19	Joel Sherrill <joel.sherrill@oarcorp.com>

	* index.html.in: Remove manuals that are dead.

2008-12-18	Sebastian Huber <sebastian.huber@embedded-brains.de>

	* user/cpuuse.t: Reflect change in CPU Usage report format.

2008-12-15	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/init.t: Eliminate pointers to API configuration tables in the
	main configuration table. Reference the main configuration table and
	the API configuration tables directly using the confdefs.h version
	rather than obtaining a pointer to it. This eliminated some
	variables, a potential fatal error, some unnecessary default
	configuration structures. Overall, about a 4.5% reduction in the code
	size for minimum and hello on the SPARC.

2008-12-14	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/conf.t, user/region.t: Change sizes of heap/region and allocated
	objects in heap to intptr_t so they can be larger than a single
	allocatable object (e.g. size_t).

2008-12-12	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/region.t: Malloc Family is not implemented in termios of Region
	Manager after 4.7. Correct documentation.

2008-12-12	Sebastian Huber <sebastian.huber@embedded-brains.de>

	* bsp_howto/console.t: Remove size constraints on image. Fix a
	sentence.

2008-12-11	Sebastian Huber <sebastian.huber@embedded-brains.de>
                Joel Sherrrill <joel.sherrill@oarcorp.com>

	* bsp_howto/Makefile.am, bsp_howto/console.t: Sebastian improved
	 documentation for termios device drivers.
	* bsp_howto/TERMIOSFlow.eps, bsp_howto/TERMIOSFlow.png: New files.
	Joel added Termios Flow figure from RTEMS Open Class material.

2008-12-04	Jukka Pietarinen <jukka.pietarinen@mrf.fi>

	* cpu_supplement/.cvsignore, cpu_supplement/Makefile.am,
	cpu_supplement/cpu_supplement.texi: Add Lattice Mico32 support.
	* cpu_supplement/lm32.t: New file.

2008-12-01	Joel Sherrill <joel.sherrill@oarcorp.com>

	* ada_user/Makefile.am: Fix typo.

2008-12-01	Joel Sherrill <joel.sherrill@oarcorp.com>

	* ada_user/Makefile.am, user/Makefile.am, user/concepts.t: Add 16 bit
	object Id format information.
	* user/ObjectId-16Bits.eps, user/ObjectId-16Bits.png: New files.

2008-12-01	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/datatypes.t: Add C99 uint types.

2008-11-20	Joel Sherrill <joel.sherrill@oarcorp.com>

	PR 1340/cpukit
	* user/chains.t: Add rtems_chain_initialize to public chain API.

2008-11-20	Joel Sherrill <joel.sherrill@OARcorp.com>

	PR 1339/Ada
	* user/io.t: Re-add IO Manager to Ada binding.

2008-11-13	Joel Sherrill <joel.sherrill@OARcorp.com>

	PR 1336/cpukit
	* user/chains.t, user/dirstat.texi: Add rtems_chain_prepend_unprotected
	and rtems_chain_append_unprotected.

2008-11-07	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/concepts.t: Use 32 bit version centered.

2008-11-07	Joel Sherrill <joel.sherrill@OARcorp.com>

	* ada_user/Makefile.am: Make Ada manual build again after adding
	figure.

2008-11-07	Joel Sherrill <joel.sherrill@OARcorp.com>

	PR 1334/doc
	* user/Makefile.am, user/concepts.t, user/init.t, user/overview.t,
	user/part.t, user/task.t: Correct typos and correctly document 4
	parts of 32-bit object id.
	* user/ObjectId-32Bits.eps, user/ObjectId-32Bits.png: New files.

2008-10-14	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/conf.t: Fix typo.

2008-10-02	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/region.t: Change size_t to ssize_t.

2008-10-01	Joel Sherrill <joel.sherrill@oarcorp.com>

	* shell/preface.texi: Bump version to 4.9.99.0

2008-09-30	Joel Sherrill <joel.sherrill@oarcorp.com>

	* bsp_howto/timer.t: Eliminate uses of old benchmark timer names.

2008-09-25	Joel Sherrill <joel.sherrill@oarcorp.com>

	* setup.def, started/buildc.t: Update.

2008-09-23	Joel Sherrill <joel.sherrill@OARcorp.com>

	* bsp_howto/BSPInitFlowchart-49.png: Update figure.

2008-09-18	Miao Yan <yanmiaobest@gmail.com>

	* user/conf.t: Add CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM and
	CONFIGURE_APPLICATION_DISABLE_FILESYSTEM.

2008-09-17	Joel Sherrill <joel.sherrill@oarcorp.com>

	* shell/rtems.t, user/conf.t, user/stackchk.t: Rename STACK_CHECKER_ON
	to more appropriate CONFIGURE_STACK_CHECKER_ENABLED.

2008-09-17	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/conf.t: Fix typo.

2008-09-17	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/conf.t: Add support for optionally having a unified work area.
	In other words, the RTEMS Workspace and C Program Heap are the same
	pool of memory.

2008-09-09	Joel Sherrill <joel.sherrill@oarcorp.com>

	* bsp_howto/Developer-User-Timeline.png: Correct figure.

2008-09-09	Ralf Corsépius <ralf.corsepius@rtems.org>

	* user/chains.t, user/conf.t, user/object.t, user/userext.t:
	More "bool" cleanup.
	* bsp_howto/ata.t, bsp_howto/rtc.t, networking/networkapp.t,
	user/chains.t, user/stackchk.t: Convert to "bool".

2008-09-09	Ralf Corsépius <ralf.corsepius@rtems.org>

	* user/datatypes.t: Add deprecation notices to 
	"rtems_boolean", "rtems_single", "rtems_double".
	* user/intr.t, user/userext.t: Convert to "bool".

2008-09-08	Joel Sherrill <joel.sherrill@oarcorp.com>

	* bsp_howto/timer.t: Update documentation to reflect Timer Driver
	renaming.

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

	* bsp_howto/clock.t: The Shared Memory Driver no longer requires the
	special IOCTL in Clock_control. This was a hack which has existed
	since before the Classic API Timer Manager was implemented. All
	implementations of and references to Clock_control were removed.

2008-09-02	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/conf.t: Add CONFIGURE_BSP_PREREQUISITE_DRIVERS and
	CONFIGURE_APPLICATION_PREREQUISITE_DRIVERS.

2008-08-27	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/object.t: Correct order of arguments.

2008-08-24	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/clock.t: Correct discussion of timeval.

2008-08-22	Joel Sherrill <joel.sherrill@oarcorp.com>

	* bsp_howto/init.t: Eliminate empty section.

2008-08-22	Joel Sherrill <joel.sherrill@oarcorp.com>

	* bsp_howto/init.t: Complete update.

2008-08-22	Joel Sherrill <joel.sherrill@oarcorp.com>

	* bsp_howto/Makefile.am, bsp_howto/init.t, bsp_howto/intro.t,
	bsp_howto/makefiles.t, bsp_howto/support.t: Update initialization
	sequence. Add another figure.
	* bsp_howto/BSPInitFlowchart-49.eps, bsp_howto/BSPInitFlowchart-49.png: New files.

2008-08-21	Joel Sherrill <joel.sherrill@oarcorp.com>

	* index.html.in: Reorder manuals.

2008-08-21	Joel Sherrill <joel.sherrill@oarcorp.com>

	* bsp_howto/Makefile.am, bsp_howto/linkcmds.t, bsp_howto/makefiles.t,
	bsp_howto/target.t: Update some of this manual.
	* bsp_howto/Developer-User-Timeline.eps,
	bsp_howto/Developer-User-Timeline.png: New files.

2008-08-21	Joel Sherrill <joel.sherrill@OARcorp.com>

	* bsp_howto/ata.t, bsp_howto/clock.t, bsp_howto/ide-ctrl.t,
	bsp_howto/nvmem.t, bsp_howto/shmsupp.t, user/datatypes.t, user/mp.t,
	user/userext.t: Eliminate all references to rtems_signedXX and
	rtems_unsignedXX.

2008-08-08     Sebastian Huber <sebastian.huber@embedded-brains.de>

	* user/msg.t, user/sem.t, user/task.t: Update to new parameter types.
	Emphasize that you can use a pointer for task arguments.

2008-08-07	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/datatypes.t: Add rtems_name. Add comment about
	rtems_task_argument changing from simple unsigned thirty two bit
	integer to being derived from a C99 uintptr_t in 4.8 and newer.

2008-08-04	Joel Sherrill <joel.sherrill@OARcorp.com>

	PR 1263/doc
	* user/part.t: Improve discussion of alignment and minimum buffer
	sizes.

2008-08-04	Joel Sherrill <joel.sherrill@OARcorp.com>

	PR 1288/doc
	* user/intr.t: Update callable from ISR section.

2008-08-01	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/msg.t: Parameter is size not count. Spotted by Sebastian Huber.

2008-07-31	Joel Sherrill <joel.sherrill@OARcorp.com>

	* porting/idlethread.t: Correct prototype of Idle threads.

2008-07-23	Joel Sherrill <joel.sherrill@OARcorp.com>

	PR 1291/cpukit
	* posix_users/semaphores.t: Update to reflect absolute time.

2008-07-23	Joel Sherrill <joel.sherrill@oarcorp.com>

	* shell/Makefile.am, shell/rtems.t: Add pthread command.

2008-07-18	Joel Sherrill <joel.sherrill@oarcorp.com>

	* posix_users/mutex.t: Add ETIMEDOUT.

2008-07-16	Joel Sherrill <joel.sherrill@oarcorp.com>

	* shell/confinit.t: New argument sequence for rtems_shell_init().

2008-07-15	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/barrier.t, user/clock.t, user/dpmem.t, user/msg.t, user/part.t,
	user/region.t, user/rtmon.t, user/sem.t, user/task.t, user/timer.t:
	Correct documentation typos noticed and thankfully reported by
	Fabrício de Novaes Kucinskis <fabricio@dea.inpe.br>

2008-07-10	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/.cvsignore: Add chains.texi.

2008-07-09	Chris Johns <chrisj@rtems.org>

	* doc/user/chains.t: New.

	* doc/ada_user/ada_user.texi, doc/user/Makefile.am,
	doc/user/c_user.texi, doc/user/dirstat.texi: Updated for the
	chains documentation.

2008-06-20	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/io.t: Fix typos for IO unregister reported by Catalin Morosan
	<catalin.morosan at gmail.com>.

2008-06-16	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/conf.t: Add CONFIGURE_DISABLE_CLASSIC_API_NOTEPADS.

2008-06-13	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/conf.t: Add CONFIGURE_IDLE_TASK_INITIALIZES_APPLICATION and
	CONFIGURE_MAXIMUM_PRIORITY.

2008-06-13	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/conf.t: Add CONFIGURE_MINIMUM_STACK_SIZE.

2008-06-13	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/bsp.t, user/conf.t, user/task.t: Add ability for application to
	configure minimum stack size. Add RTEMS_CONFIGURED_MINIMUM_STACK_SIZE
	constant so user can clearly indicate they want the configured as
	opposed to the recommended minimum stack size.

2008-06-06	Joel Sherrill <joel.sherrill@oarcorp.com>

	* started/buildc.t: Add paragraph on see CVS for latest patches.
	* user/conf.t: Add CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE and example
	of how to compute message CONFIGURE_MESSAGE_BUFFER_MEMORY using it.

2008-06-06	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/rtmon.t: Change to using new types.

2008-06-02	Joel Sherrill <joel.sherrill@oarcorp.com>

	* cpu_supplement/.cvsignore, cpu_supplement/Makefile.am,
	cpu_supplement/arm.t, cpu_supplement/bfin.t,
	cpu_supplement/cpu_supplement.texi, cpu_supplement/i386.t,
	cpu_supplement/m68k.t, cpu_supplement/mips.t,
	cpu_supplement/powerpc.t, cpu_supplement/preface.texi,
	cpu_supplement/sh.t: Remove duplicated text from each CPU specific
	chapter. This text was necessary when each CPU was a separate manual
	but now only needs to be one place and that is in an introductory
	chapter.
	* cpu_supplement/general.t: New file.

2008-06-02	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/bsp.t, user/init.t: Rework initialization and BSP chapters to
	account for changes to initialization framework.

2008-05-22	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/conf.t: Add baseline interface for Watchdog Driver.

2008-05-14	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/conf.t: Fix text on CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER.

2008-05-13	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/conf.t: Fix typo on
	CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER.

2008-04-17	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/conf.t: Add CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER.

2008-04-16	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/bsp.t, user/conf.t, user/init.t, user/intr.t, user/overview.t,
	user/timer.t: Correct default values. Make it clear that confdefs.h
	calculates the memory required for you.

2008-03-29	Chris Johns <chrisj@rtems.org>

	* networking/testing.t: Cleaned up the patch from Ian.

2008-03-29	Chris Johns <chrisj@rtems.org>

	* networking/testing.t: Patch from Ian Caddy to document the
	routes debug information.

2008-03-11	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/clock.t: Refactored rtems_clock_get into 5 methods which
	are single purpose and more strongly typed.  They are:
	    rtems_clock_get_tod - Get TOD in Classic API structure
	    rtems_clock_get_tod_timeval - Get TOD in struct timeval
	    rtems_clock_get_seconds_since_epoch - Get TOD as seconds since 1988
	    rtems_clock_get_ticks_since_boot - Get ticks since boot
	    rtems_clock_get_ticks_per_second - Get ticks per second


2008-02-29	Joel Sherrill <joel.sherrill@oarcorp.com>

	* shell/general.t: Add sleep and echo commands.

2008-02-28	Joel Sherrill <joel.sherrill@oarcorp.com>

	* shell/.cvsignore, shell/Makefile.am, shell/memory.t,
	shell/preface.texi, shell/shell.texi: Added much information the
	Preface. Created initial version of Configuration and Intialization
	chapter. Links are now complete from start to end of manual.
	* shell/confinit.t: New file.

2008-02-28	Joel Sherrill <joel.sherrill@oarcorp.com>

	* shell/file.t, shell/network.t: Document more commands and provide
	more examples.

2008-02-27	Joel Sherrill <joel.sherrill@oarcorp.com>

	* shell/file.t, shell/general.t, shell/memory.t, shell/network.t,
	shell/rtems.t, shell/shell.texi: Many commands now have real
	descriptions with examples.

2008-02-27	Joel Sherrill <joel.sherrill@oarcorp.com>

	* shell/file.t, shell/general.t: More commands documented.

2008-02-26	Joel Sherrill <joel.sherrill@oarcorp.com>

	* shell/.cvsignore, shell/file.t: Add most of file commands.

2008-02-26	Joel Sherrill <joel.sherrill@oarcorp.com>

	* porting/interrupts.t: Formatting.

2008-02-21	Joel Sherrill <joel.sherrill@oarcorp.com>

	* shell/file.t, shell/general.t, shell/memory.t, shell/network.t,
	shell/rtems.t: More descriptions and examples added.

2008-02-21	Joel Sherrill <joel.sherrill@oarcorp.com>

	* shell/file.t, shell/general.t, shell/memory.t, shell/network.t,
	shell/rtems.t: Add mount and cp command information from Chris Johns.
	Reformat some things.

2008-02-21	Joel Sherrill <joel.sherrill@oarcorp.com>

	* shell/file.t, shell/general.t, shell/memory.t, shell/network.t,
	shell/rtems.t: A bit of clean up on the script.

2008-02-21	Joel Sherrill <joel.sherrill@oarcorp.com>

	* shell/file.t, shell/general.t, shell/memory.t, shell/network.t,
	shell/rtems.t: Change configure messages per Chris Johns suggestion.

2008-02-20	Joel Sherrill <joel.sherrill@oarcorp.com>

	* Makefile.am, configure.ac, index.html.in: Add initial version of
	RTEMS Shell Manual. This is largely a starting point but has most of
	the required structure.
	* shell/.cvsignore, shell/Makefile.am, shell/file.t, shell/general.t,
	shell/memory.t, shell/network.t, shell/preface.texi, shell/rtems.t,
	shell/shell.texi: New files.

2008-02-05	Joel Sherrill <joel.sherrill@oarcorp.com>

	* networking/networkapp.t: Add configuration parameters for network
	stack efficiency multiplier and default socket buffer sizes.

2008-02-01	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/object.t: Added some examples.

2008-02-01	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/object.t: Add Ada binding for Object Services.

2008-01-29	Joel Sherrill <joel.sherrill@oarcorp.com>

	* index.html.in: Update copyright year.

2008-01-29	Joel Sherrill <joel.sherrill@oarcorp.com>

	* ada_user/Makefile.am, ada_user/ada_user.texi: Now builds.

2008-01-29	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/.cvsignore, user/Makefile.am, user/c_user.texi, user/concepts.t,
	user/conf.t, user/dirstat.texi, user/stackchk.t, user/task.t,
	user/userext.t: Add new Object Services collection. Tidy up some
	configuration documentation from earlier changes.
	* user/object.t: New file.

2008-01-25	Joel Sherrill <joel.sherrill@oarcorp.com>

	* rtems_footer.html.in, common/cpright.texi: Update copyright. Fix
	spacing.

2008-01-11	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/task.t: Add manual page for rtems_task_self().

2007-12-11	Joel Sherrill <joel.sherrill@OARcorp.com>

	* bsp_howto/clock.t, bsp_howto/init.t: Eliminate copies of the
	Configuration Table. Use the RTEMS provided accessor macros to obtain
	configuration fields.

2007-12-04	Joel Sherrill <joel.sherrill@OARcorp.com>

	* cpu_supplement/arm.t, cpu_supplement/i386.t, cpu_supplement/m68k.t,
	cpu_supplement/mips.t, cpu_supplement/powerpc.t, cpu_supplement/sh.t,
	cpu_supplement/sparc.t, cpu_supplement/tic4x.t, porting/cpuinit.t,
	user/conf.t, user/init.t: Move interrupt_stack_size field from CPU
	Table to Configuration Table. Eliminate CPU Table from all ports.
	Delete references to CPU Table in all forms.

2007-12-03	Joel Sherrill <joel.sherrill@OARcorp.com>

	* cpu_supplement/arm.t, cpu_supplement/i386.t, cpu_supplement/m68k.t,
	cpu_supplement/mips.t, cpu_supplement/powerpc.t, cpu_supplement/sh.t,
	cpu_supplement/sparc.t, cpu_supplement/tic4x.t, user/conf.t: Moved
	most of the remaining CPU Table fields to the Configuration Table.
	This included pretasking_hook, predriver_hook, postdriver_hook,
	idle_task, do_zero_of_workspace, extra_mpci_receive_server_stack,
	stack_allocate_hook, and stack_free_hook. As a side-effect of this
	effort some multiprocessing code was made conditional and some style
	clean up occurred.

2007-11-29	Glenn Humphrey <glenn.humphrey@OARcorp.com>

	* develenv/direct.t, develenv/sample.t: Corrected various errors.

2007-11-28	Joel Sherrill <joel.sherrill@OARcorp.com>

	* cpu_supplement/powerpc.t: Eliminate PowerPC specific elements from
	the CPU Table. They have been replaced with variables named bsp_XXX
	as needed.

2007-11-28	Glenn Humphrey <glenn.humphrey@OARcorp.com>

	* user/barrier.t, user/clock.t, user/concepts.t, user/conf.t,
	user/datatypes.t, user/dpmem.t, user/fatal.t, user/init.t, user/mp.t,
	user/msg.t, user/part.t, user/region.t, user/rtmon.t, user/sem.t,
	user/task.t, user/timer.t: Corrected various errors in the
	documentation.

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

	* develenv/develenv.texi, develenv/direct.t, develenv/intro.texi,
	develenv/sample.t, develenv/utils.t: Update directory tree.

2007-11-27	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/conf.t: Add CONFIGURE_APPLICATION_EXTRA_DRIVERS.

2007-11-26	Joel Sherrill <joel.sherrill@oarcorp.com>

	* cpu_supplement/sh.t: Eliminate the clicks_per_microsecond field in
	the SuperH CPU Table and define another mechanism for drivers to
	obtain this information.

2007-11-26	Joel Sherrill <joel.sherrill@oarcorp.com>

	* cpu_supplement/i386.t, cpu_supplement/m68k.t: Pick up changes missed
	earlier.

2007-11-26	Joel Sherrill <joel.sherrill@oarcorp.com>

	* cpu_supplement/mips.t: Eliminate the clicks_per_microsecond field in
	the MIPS CPU Table and define another mechanism for drivers to obtain
	this information.

2007-11-26	Joel Sherrill <joel.sherrill@oarcorp.com>

	* cpu_supplement/i386.t: Eliminate the interrupt_table_segment and
	interrupt_table_offset fields in the i386 CPU Table since they are
	never read.

2007-11-26	Joel Sherrill <joel.sherrill@oarcorp.com>

	* cpu_supplement/m68k.t: Eliminate the interrupt_vector_table field in
	the m68k CPU Table since it is never read.

2007-10-26	Glenn Humphrey <glenn.humphrey@OARcorp.com>

	* user/rtmon.t: Fix report output.

2007-10-25	Glenn Humphrey <glenn.humphrey@OARcorp.com>

	* user/barrier.t, user/clock.t, user/concepts.t, user/cpuuse.t,
	user/init.t, user/intr.t, user/io.t, user/mp.t, user/rtmon.t,
	user/sem.t, user/stackchk.t, user/task.t, user/timer.t: Updated the
	Ada documentation to reflect the current binding.

2007-09-24	Joel Sherrill <joel.sherrill@oarcorp.com>

	PR 1262/filesystem
	* posix_users/io.t: Add support for readv() and writev() including
	documentation and test case.

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

	* rtems_footer.html.in, common/cpright.texi: Update copyright.

2007-08-02	Joel Sherrill <joel.sherrill@OARcorp.com>

	* Makefile.am, configure.ac, develenv/direct.t: Remove RDBG.
	* rgdb_specs/.cvsignore, rgdb_specs/Makefile.am, rgdb_specs/comm.t,
	rgdb_specs/conclusion.t, rgdb_specs/daemon.t,
	rgdb_specs/gdbinternals.t, rgdb_specs/interfacing.t,
	rgdb_specs/intro.t, rgdb_specs/layers.eps, rgdb_specs/layers.jpg,
	rgdb_specs/layers.txt, rgdb_specs/objectives.t,
	rgdb_specs/process.eps, rgdb_specs/process.jpg,
	rgdb_specs/process.txt, rgdb_specs/revision.t,
	rgdb_specs/rgdb_specs.texi, rgdb_specs/seqbreak.eps,
	rgdb_specs/seqbreak.jpg, rgdb_specs/seqbreak.txt,
	rgdb_specs/seqdetach.eps, rgdb_specs/seqdetach.jpg,
	rgdb_specs/seqdetach.txt, rgdb_specs/seqinit.eps,
	rgdb_specs/seqinit.jpg, rgdb_specs/seqinit.txt, rtems_gdb/.cvsignore,
	rtems_gdb/Makefile.am, rtems_gdb/commands.t, rtems_gdb/example.t,
	rtems_gdb/intro.t, rtems_gdb/rtems_gdb.texi, rtems_gdb/started.t,
	rtems_gdb/swarch.t, rtems_gdb/trouble.t: Removed.

2007-06-21	Joel Sherrill <joel.sherrill@OARcorp.com>

	* ada_user/ada_user.texi, bsp_howto/bsp_howto.texi,
	cpu_supplement/cpu_supplement.texi, develenv/develenv.texi,
	filesystem/filesystem.texi, itron3.0/itron.texi,
	networking/networking.texi, porting/porting.texi,
	posix1003.1/posix1003_1.texi, posix_users/posix_users.texi,
	rgdb_specs/rgdb_specs.texi, rtems_gdb/rtems_gdb.texi,
	started/started.texi, started_ada/started_ada.texi, user/c_user.texi:
	Print table of contents in front of manual where it should be when
	you print.

2007-06-12	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/io.t: Fix typo.

2007-05-29	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/io.t: Added error cases to rtems_io_register_driver.

2007-05-28	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/conf.t: Eliminate maximum_drivers configuration parameter since
	it was used to configure a no longer used feature. Device names are
	now part of the filesystem not in a table. This also eliminated the
	variables _IO_Number_of_devices and _IO_Driver_name_table from RTEMS
	as well as the memory allocation used to populate
	_IO_Driver_name_table.

2007-05-23	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/conf.t: Add CONFIGURE_MESSAGE_BUFFER_MEMORY. Use
	rtems/confdefs.h instead of old confdefs.h.

2007-05-22	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/conf.t: Fix typo -- should have read kilobytes.

2007-05-15	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/Makefile.am, user/concepts.t, user/rtmon.t: Integrate Rate
	Monotonic Statistics and Period Usage into Rate Monotonic Manager.
	Added the following directives: rtems_rate_monotonic_get_statistics,
	rtems_rate_monotonic_reset_statistics,
	rtems_rate_monotonic_reset_all_statistics,
	rtems_rate_monotonic_report_statistics, and rtems_object_get_name.
	Obsoleted the rtems/rtmonuse.h file as a public interface.

2007-05-11	Joel Sherrill <joel.sherrill@OARcorp.com>

	* user/.cvsignore, user/cpuuse.t, user/stackchk.t: Stack checker and
	CPU usage chapters are now OK in the manual.

2007-05-09	Ralf Corsépius <ralf.corsepius@rtems.org>

	* porting/miscellaneous.t: Remove subsection on "Optional
	Endian Conversion Routines", CPU_HAS_OWN_HOST_TO_NETWORK_ROUTINES.

2007-04-05	Joel Sherrill <joel@OARcorp.com>

	* user/example.texi: Change all obsoleted CONFIGURE_TEST_NEEDS_XXX
	configuration constants to CONFIGURE_APPLICATION_NEEDS_XXX.

2007-04-05	Joel Sherrill <joel@OARcorp.com>

	* user/task.t: Add rtems_iterate_over_all_threads.

2007-04-02	Joel Sherrill <joel@OARcorp.com>

	* user/clock.t: Add clock_get_uptime().

2007-03-28	Chris Johns <chrisj@rtems.org>

	* user/Makefile.am, user/clock.t: Add support for a handler to obtain
	the number of nanoseconds since the last clock tick. The primary
	interface for this is rtems_clock_set_nanoseconds_extension.
	Subsequent commits from Joel will redo the TOD support to use this
	capability.

2007-03-10	Joel Sherrill <joel@OARcorp.com>

	PR 1226/cpukit
	* user/conf.t: CONFIGURE_HAS_OWN_MULTIPROCESSING_TABLE not
	CONFIGURE_HAS_OWN_MULTIPROCESING_TABLE.

2007-03-08	Joel Sherrill <joel@OARcorp.com>

	* user/Makefile.am, user/stackchk.t: Change dump usage to report usage.

2007-03-06	Joel Sherrill <joel@OARcorp.com>

	* ada_user/Makefile.am, ada_user/ada_user.texi: Ada API manual now
	builds again.

2007-03-06	Joel Sherrill <joel@OARcorp.com>

	* user/Makefile.am, user/barrier.t, user/c_user.texi: Update barrier
	documentation.

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

	PR 1221/doc
	* user/rtmon.t: Add missing exponent operator in RMS CPU Utiliziation
	formula.

2007-01-16	Ralf Corsépius <ralf.corsepius@rtems.org>

	* setup.def: newlib-1.15.0.

2007-01-15	Ralf Corsépius <ralf.corsepius@rtems.org>

	* common/rtems.texi.in: Use bugzilla for RTEMSBUGS.
	Remove RTEMSGNATS.
	* started/binaries.t, started/buildc.t, started/tversions.texi.in:
	Various update to reflect current toolchains.
	* configure.ac: Reflect having moved setup.def.
	Eliminate gcc3*.	
	* setup.def: New (Formerly in ../scripts).

2006-12-20	Joel Sherrill <joel@OARcorp.com>

	* posix_users/thread.t: Correct spelling error.

2006-12-02	Ralf Corsépius <ralf.corsepius@rtems.org>

	* configure.ac: New BUG-REPORT address.

2006-10-26	Joel Sherrill <joel@OARcorp.com>

	* ada_user/.cvsignore, bsp_howto/.cvsignore, cpu_supplement/.cvsignore,
	develenv/.cvsignore, filesystem/.cvsignore, itron3.0/.cvsignore,
	networking/.cvsignore, new_chapters/.cvsignore, porting/.cvsignore,
	posix1003.1/.cvsignore, relnotes/.cvsignore: Add missing files.

2006-10-25	Joel Sherrill <joel@OARcorp.com>

	* posix_users/.cvsignore, rgdb_specs/.cvsignore, rtems_gdb/.cvsignore,
	started/.cvsignore, started_ada/.cvsignore: Add more generated files.

2006-10-23	Joel Sherrill <joel@OARcorp.com>

	* user/.cvsignore: Update.

2006-10-23	Joel Sherrill <joel@OARcorp.com>

	* ada_user/Makefile.am, ada_user/ada_user.texi,
	cpu_supplement/Makefile.am, cpu_supplement/cpu_supplement.texi,
	cpu_supplement/sparc.t: Add Blackfin CPU supplement chapter and get
	everything building from previous breakages.
	* cpu_supplement/bfin.t: New file.

2006-10-17	Ralf Corsépius <ralf.corsepius@rtems.org>

	* porting/interrupts.t: Fix bogus _CPU_ISR_Get_level.

2006-10-17	Ralf Corsépius <ralf.corsepius@rtems.org>

	* configure.ac: Require autoconf-2.60. Require automake-1.10.

2006-09-25	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/barrier.t: New file.

2006-09-25	Joel Sherrill <joel.sherrill@oarcorp.com>

	* user/barrier.t: New file.

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

	* new_chapters/Makefile.am, new_chapters/gen_section,
	new_chapters/new_chapters.texi, user/Makefile.am, user/c_user.texi,
	user/dirstat.texi: Promote CPU Usage to first class citizen. Rename
	to start with rtems_ and include documentation in user guide.
	* user/cpuuse.t: New file.
	* new_chapters/cpuuse.t: Removed.

2006-09-13	Joel Sherrill <joel@OARcorp.com>

	* new_chapters/Makefile.am, user/Makefile.am, user/c_user.texi,
	user/dirstat.texi, user/task.t: Move stack to first class citizen
	status. Include it in User Manual and rename to start with rtems_.
	* user/stackchk.t: New file.
	* new_chapters/stackchk.t: Removed.

2006-09-13	Joel Sherrill <joel@OARcorp.com>

	* new_chapters/Makefile.am, user/Makefile.am, user/c_user.texi,
	user/dirstat.texi, user/task.t: Move stack to first class citizen
	status. Include it in User Manual and rename to start with rtems_.
	* user/stackchk.t: New file.
	* new_chapters/stackchk.t: Removed.

2006-09-07	Ken Peters <ken.peters@jpl.nasa.gov>

	PR 1171/doc
	* user/timer.t: Correct documentation for rtems_timer_initiate_server.

2006-08-29	Joel Sherrill <joel@OARcorp.com>

	* cpu_supplement/cpu_supplement.texi: New file.

2006-08-27	Joel Sherrill <joel@OARcorp.com>

	* Makefile.am, configure.ac, develenv/direct.t: Remove gnu_docs. Now
	included with RPMs.
	* gnu_docs/.cvsignore, gnu_docs/ChangeLog, gnu_docs/Makefile.am,
	gnu_docs/Tool_Doc_Instructions, gnu_docs/gen_docs,
	gnu_docs/gnu_footer.html, gnu_docs/gnu_header.html,
	gnu_docs/index.html, gnu_docs/mk_install_dir, gnu_docs/refcard.html,
	gnu_docs/rtems_tools_index.html: Removed.

2006-08-23	Joel Sherrill <joel@OARcorp.com>

	* Makefile.am, configure.ac, index.html.in: FAQ should now be
	completely in the Wiki.
	* FAQ/.cvsignore, FAQ/FAQ.texi, FAQ/Makefile.am, FAQ/basic.t,
	FAQ/bsp.t, FAQ/build45.t, FAQ/concepts.t, FAQ/debug.t,
	FAQ/endoftime.t, FAQ/entry, FAQ/freesw.t, FAQ/hwdebugaids.t,
	FAQ/projects.t, FAQ/stamp-vti, FAQ/tools.t, FAQ/version.texi,
	common/timemac.texi, common/timetbl.t, common/timing.t: Removed.

2006-08-23	Joel Sherrill <joel@OARcorp.com>

	* Makefile.am, configure.ac, FAQ/stamp-vti, FAQ/version.texi,
	common/cpright.texi: Merging CPU Supplements into a single document.
	As part of this removed the obsolete and impossible to maintain size
	and timing information.
	* cpu_supplement/.cvsignore, cpu_supplement/Makefile.am,
	cpu_supplement/arm.t, cpu_supplement/i386.t, cpu_supplement/m68k.t,
	cpu_supplement/mips.t, cpu_supplement/powerpc.t,
	cpu_supplement/preface.texi, cpu_supplement/sh.t,
	cpu_supplement/sparc.t, cpu_supplement/tic4x.t: New files.
	* supplements/.cvsignore, supplements/Makefile.am,
	supplements/supplement.am, supplements/arm/.cvsignore,
	supplements/arm/BSP_TIMES, supplements/arm/ChangeLog,
	supplements/arm/Makefile.am, supplements/arm/arm.texi,
	supplements/arm/bsp.t, supplements/arm/callconv.t,
	supplements/arm/cpumodel.t, supplements/arm/cputable.t,
	supplements/arm/fatalerr.t, supplements/arm/intr_NOTIMES.t,
	supplements/arm/memmodel.t, supplements/arm/preface.texi,
	supplements/arm/timeBSP.t, supplements/c4x/.cvsignore,
	supplements/c4x/BSP_TIMES, supplements/c4x/ChangeLog,
	supplements/c4x/Makefile.am, supplements/c4x/bsp.t,
	supplements/c4x/c4x.texi, supplements/c4x/callconv.t,
	supplements/c4x/cpumodel.t, supplements/c4x/cputable.t,
	supplements/c4x/fatalerr.t, supplements/c4x/intr_NOTIMES.t,
	supplements/c4x/memmodel.t, supplements/c4x/preface.texi,
	supplements/c4x/timeBSP.t, supplements/i386/.cvsignore,
	supplements/i386/ChangeLog, supplements/i386/FORCE386_TIMES,
	supplements/i386/Makefile.am, supplements/i386/bsp.t,
	supplements/i386/callconv.t, supplements/i386/cpumodel.t,
	supplements/i386/cputable.t, supplements/i386/fatalerr.t,
	supplements/i386/i386.texi, supplements/i386/intr_NOTIMES.t,
	supplements/i386/memmodel.t, supplements/i386/preface.texi,
	supplements/i386/timeFORCE386.t, supplements/m68k/.cvsignore,
	supplements/m68k/ChangeLog, supplements/m68k/MVME136_TIMES,
	supplements/m68k/Makefile.am, supplements/m68k/bsp.t,
	supplements/m68k/callconv.t, supplements/m68k/cpumodel.t,
	supplements/m68k/cputable.t, supplements/m68k/fatalerr.t,
	supplements/m68k/intr_NOTIMES.t, supplements/m68k/m68k.texi,
	supplements/m68k/memmodel.t, supplements/m68k/preface.texi,
	supplements/m68k/timeMVME136.t, supplements/m68k/timedata.t,
	supplements/mips/.cvsignore, supplements/mips/BSP_TIMES,
	supplements/mips/ChangeLog, supplements/mips/Makefile.am,
	supplements/mips/bsp.t, supplements/mips/callconv.t,
	supplements/mips/cpumodel.t, supplements/mips/cputable.t,
	supplements/mips/fatalerr.t, supplements/mips/intr_NOTIMES.t,
	supplements/mips/memmodel.t, supplements/mips/mips.texi,
	supplements/mips/preface.texi, supplements/mips/timeBSP.t,
	supplements/powerpc/.cvsignore, supplements/powerpc/ChangeLog,
	supplements/powerpc/DMV177_TIMES, supplements/powerpc/Makefile.am,
	supplements/powerpc/PSIM_TIMES, supplements/powerpc/bsp.t,
	supplements/powerpc/callconv.t, supplements/powerpc/cpumodel.t,
	supplements/powerpc/cputable.t, supplements/powerpc/fatalerr.t,
	supplements/powerpc/intr_NOTIMES.t, supplements/powerpc/memmodel.t,
	supplements/powerpc/powerpc.texi, supplements/powerpc/preface.texi,
	supplements/powerpc/timeDMV177.t, supplements/powerpc/timePSIM.t,
	supplements/sh/.cvsignore, supplements/sh/BSP_TIMES,
	supplements/sh/ChangeLog, supplements/sh/Makefile.am,
	supplements/sh/bsp.t, supplements/sh/callconv.t,
	supplements/sh/cpumodel.t, supplements/sh/cputable.t,
	supplements/sh/fatalerr.t, supplements/sh/intr_NOTIMES.t,
	supplements/sh/memmodel.t, supplements/sh/preface.texi,
	supplements/sh/sh.texi, supplements/sh/timeBSP.t,
	supplements/sparc/.cvsignore, supplements/sparc/ChangeLog,
	supplements/sparc/ERC32_TIMES, supplements/sparc/Makefile.am,
	supplements/sparc/bsp.t, supplements/sparc/callconv.t,
	supplements/sparc/cpumodel.t, supplements/sparc/cputable.t,
	supplements/sparc/fatalerr.t, supplements/sparc/intr_NOTIMES.t,
	supplements/sparc/memmodel.t, supplements/sparc/preface.texi,
	supplements/sparc/sparc.texi, supplements/sparc/timeERC32.t,
	supplements/template/.cvsignore, supplements/template/BSP_TIMES,
	supplements/template/ChangeLog, supplements/template/Makefile.am,
	supplements/template/bsp.t, supplements/template/callconv.t,
	supplements/template/cpumodel.t, supplements/template/cputable.t,
	supplements/template/fatalerr.t, supplements/template/intr_NOTIMES.t,
	supplements/template/memmodel.t, supplements/template/preface.texi,
	supplements/template/template.texi, supplements/template/timeBSP.t: Removed.

2006-01-20	Ralf Corsepius <ralf.corsepius@rtems.org>

	* user/rtemsarc.gif, user/states.gif, user/rtemspie.gif:
	Remove (Unused).
	* user/rtemsarc.txt, user/rtemspie.txt, user/states.txt:
	New (Extracted from other docs).
	* user/Makefile.am: Reflect changes above.

2006-01-19	Ralf Corsepius <ralf.corsepius@rtems.org>

	* index.html.in: Remove OR32.

2006-01-08	Joel Sherrill <joel@OARcorp.com>

	* user/io.t: Change rtems_io_register_name to take a const char *.

2005-09-15	Jay Monkman <jtm@lopingdog.com>

	PR 365/rtems
	* supplements/arm/cpumodel.t: Removed unused ARM_HAS_CLZ macro.

2005-09-03	Ralf Corsepius <ralf.corsepius@rtems.org>

	* FAQ/basic.texi, FAQ/bsp.texi, FAQ/build45.texi,
	FAQ/concepts.texi, FAQ/debug.texi, FAQ/endoftime.texi,
	FAQ/freesw.texi, FAQ/hwdebugaids.texi, FAQ/projects.texi,
	FAQ/tools.texi: Remove (Generated files).

2005-09-02	Joel Sherrill <joel@OARcorp.com>

	* FAQ/basic.texi, FAQ/bsp.texi, FAQ/build45.texi, FAQ/concepts.texi,
	FAQ/debug.texi, FAQ/endoftime.texi, FAQ/freesw.texi,
	FAQ/hwdebugaids.texi, FAQ/projects.texi, FAQ/stamp-vti,
	FAQ/tools.texi, FAQ/version.texi, bsp_howto/rtc.t, started/buildc.t,
	started/buildrt.t, user/Makefile.am, user/region.t: Fix typos and
	regenerate.

2005-06-17	Joel Sherrill <joel@OARcorp.com>

	* user/region.t: Add documentation on region_resize_segment.

2005-04-28	Joel Sherrill <joel@OARcorp.com>

	* bsp_howto/rtc.t: Rewritten to account for removal of dmv177.

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

	* networking/decdriver.t: Make PCI initialize function part of the
	unified PCI API as pci_initialize().

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

	PR 706/doc
	* user/task.t: Remove not that changes explanation.

2004-09-29	Joel Sherrill <joel@OARcorp.com>

	* configure.ac, index.html.in, FAQ/basic.t, FAQ/basic.texi, FAQ/entry,
	porting/cpumodels.t, started/buildc.t, started_ada/buildada.t,
	user/preface.texi: i960 obsoleted.

2004-09-29	Joel Sherrill <joel@OARcorp.com>

	* supplements/Makefile.am: i960 obsoleted.
	* supplements/i960/.cvsignore, supplements/i960/CVME961_TIMES,
	supplements/i960/ChangeLog, supplements/i960/Makefile.am,
	supplements/i960/bsp.t, supplements/i960/callconv.t,
	supplements/i960/cpumodel.t, supplements/i960/cputable.t,
	supplements/i960/fatalerr.t, supplements/i960/i960.texi,
	supplements/i960/intr_NOTIMES.t, supplements/i960/memmodel.t,
	supplements/i960/preface.texi, supplements/i960/timeCVME961.t: Removed.

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

	PR 682/doc
	PR 683/doc
	* started/buildc.t, started/buildrt.t, started/sample.t: Fix PATH and
	tar examples. Enable binutils link again.
	* user/overview.t: Chapter numbering in preface was wrong.

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

	* configure.ac: Require automake > 1.9.

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

	* FAQ/build45.t: Misc. corrections.

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

	* rgdb_specs/layers.txt, rgdb_specs/process.txt,
	rgdb_specs/seqbreak.txt, rgdb_specs/seqdetach.txt,
	rgdb_specs/seqinit.txt: New.
	* rgdb_specs/comm.t, rgdb_specs/conclusion.t,
	rgdb_specs/gdbinternals.t: Use @image for
	ASCII figures (Reflect changes above).

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

	* common/rtems.texi.in, FAQ/basic.t: Remove RTEMSSNAPSHOTS,
	RTEMSSNAPSHOTSSUBSCRIBE.

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

	* FAQ/basic.texi, FAQ/bsp.texi, FAQ/build45.texi, FAQ/concepts.texi,
	FAQ/debug.texi, FAQ/endoftime.texi, FAQ/freesw.texi,
	FAQ/hwdebugaids.texi, FAQ/projects.texi, FAQ/tools.texi,
	FAQ/version.texi, FAQ/stamp-vti: New.

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

	* networking/networkflow.txt, networking/PCIreg.txt,
	networking/recvbd.txt: New.
	* networking/decdriver.t, networking/networktasks.t: Use @image for
	ASCII figures (Reflect changes above).

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

	PR 652/rtems
	* user/signal.t: Return RTEMS_INVALID_NUMBER when sending an empty
	signal set.

2004-06-29	Joel Sherrill <joel@OARcorp.com>

	PR 631/rtems
	* user/msg.t: Document the return status from message_queue_create when
	unable to allocate message buffer memory.

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

	PR 627/doc
	* user/task.t: Behavior documented for an rtems_task_create with
	stacksize < minimum was not the implemented behavior.

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

	PR 618/rtems
	* user/clock.t, user/dpmem.t, user/event.t, user/msg.t, user/part.t,
	user/region.t, user/sem.t, user/task.t, user/timer.t: Add NULL
	checks.

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

	* started/buildc.t: Use tar xjf for bzip'ed files.
	* started/buildrt.t: Use tar xjf to unzip rtems.

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

	PR 576/doc
	* FAQ/FAQ.texi, FAQ/Makefile.am: Remove embedded information as it was
	out of date and frequently duplicated information available from
	other public sources like the CrossGCC Wiki.
	* FAQ/embeddedinfo.t: Removed.

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

	* develenv/Makefile.am: Put *.texi into the builddir.

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

	* started/tversions.texi: Remove (Bogus).

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

	* ChangeLog: Merge-in supplements/ChangeLog.
	* ChangeLog: Merge-in ada_user/ChangeLog.
	* ChangeLog: Merge-in started_ada/ChangeLog.
	* ChangeLog: Merge-in bsp_howto/ChangeLog.
	* ChangeLog: Merge-in porting/ChangeLog.
	* ChangeLog: Merge-in rgdb_specs/ChangeLog.
	* ChangeLog: Merge-in rtems_gdb/ChangeLog.
	* ChangeLog: Merge-in filesystem/ChangeLog.
	* ChangeLog: Merge-in networking/ChangeLog.
	* ChangeLog: Merge-in posix_users/ChangeLog.
	* ChangeLog: Merge-in posix1003.1/ChangeLog.
	* ChangeLog: Merge-in itron3.0/ChangeLog.
	* ChangeLog: Merge-in FAQ/ChangeLog.
	* ChangeLog: Merge-in user/ChangeLog.
	* posix_users/ChangeLog, posix1003.1/ChangeLog, itron3.0/ChangeLog,
	supplements/ChangeLog, bsp_howto/ChangeLog, porting/ChangeLog,
	rgdb_specs/ChangeLog, rtems_gdb/ChangeLog, ada_user/ChangeLog,
	started_ada/ChangeLog, filesystem/ChangeLog, networking/ChangeLog,
	FAQ/ChangeLog, user/ChangeLog: Remove.

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

	* HELP.html, index.html.in, rtems_footer.html.in, rtems_header.html.in,
	FAQ/basic.t, gnu_docs/gnu_footer.html, gnu_docs/index.html,
	gnu_docs/refcard.html, gnu_docs/rtems_tools_index.html,
	started/binaries.t, started/buildc.t, started/buildrt.t,
	started/intro.t, started/require.t, started/sample.t,
	started/tversions.texi.in: Incorporating changes from pre-4.6.0 review.

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

	* configure.ac, common/rtems.texi.in, started/binaries.t: Add
	RTEMSRPMGROUP.
	* ChangeLog: Merge-in started/ChangeLog.
	* started/ChangeLog: Remove.
	* configure.ac: Add RTEMS_ENABLE_RPMPREFIX. Add RTEMSRPMPREFIX.
	* common/rtems.texi.in: Add RTEMSRPMPREFIX.

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

	* ChangeLog: Reformat. Merge-in develenv/ChangeLog.
	* develenv/ChangeLog: Remove.

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

	* Makefile.am: Remove AUTOMAKE_FILES. Add ../scripts/setup.def
	../COPYING to EXTRA_DIST. Add rtems.html.in to EXTRA_DIST.
	* develenv/Makefile.am: Add direct.t sample.t utils.t to EXTRA_DIST.
	* bsp_howto/Makefile.am: Add ata.t, ide_ctrl.t to EXTRA_DIST.

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

	PR 464/doc
	* posix_users/clock.t, posix_users/signal.t: Add documentation for
	usleep() and ualarm(). Also fixed a couple of calls which have the wrong
	.h files per the OpenGroup site documentation.

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

	* configure.ac, index.html.in, started_ada/buildada.t,
	supplements/Makefile.am: mips64orion port removed as mips port more
	completely covers the MIPS family.
	* rtems_support.html.in, supplements/mips64orion/.cvsignore,
	supplements/mips64orion/BSP_TIMES, supplements/mips64orion/ChangeLog,
	supplements/mips64orion/Makefile.am, supplements/mips64orion/bsp.t,
	supplements/mips64orion/callconv.t, supplements/mips64orion/cpumodel.t,
	supplements/mips64orion/cputable.t, supplements/mips64orion/fatalerr.t,
	supplements/mips64orion/intr_NOTIMES.t,
	supplements/mips64orion/memmodel.t,
	supplements/mips64orion/mips64orion.texi,
	supplements/mips64orion/preface.texi, supplements/mips64orion/timeBSP.t:
	Removed.

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

	* configure.ac: Require automake >= 1.8, autoconf >= 2.59.
	* develenv/Makefile.am, user/Makefile.am, FAQ/Makefile.am,
	posix_users/Makefile.am, posix1003.1/Makefile.am, itron3.0/Makefile.am,
	filesystem/Makefile.am, networking/Makefile.am, bsp_howto/Makefile.am,
	porting/Makefile.am, rgdb_specs/Makefile.am, rtems_gdb/Makefile.am,
	ada_user/Makefile.am, started_ada/Makefile.am, supplements/Makefile.am:
	Cosmetics.

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

	* develenv/Makefile.am, user/Makefile.am, FAQ/Makefile.am,
	posix_users/Makefile.am, posix1003.1/Makefile.am, itron3.0/Makefile.am,
	filesystem/Makefile.am, networking/Makefile.am, bsp_howto/Makefile.am,
	porting/Makefile.am, rgdb_specs/Makefile.am, rtems_gdb/Makefile.am,
	ada_user/Makefile.am, started_ada/Makefile.am, supplements/Makefile.am:
	Cosmetics.

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

	* project.am: Remove $(PROJECT).info* from CLEANFILES (Doesn't work with
	automake-1.7f/1.8 anymore).
	* develenv/Makefile.am, user/Makefile.am, FAQ/Makefile.am,
	posix_users/Makefile.am, posix1003.1/Makefile.am, itron3.0/Makefile.am,
	filesystem/Makefile.am, networking/Makefile.am, bsp_howto/Makefile.am,
	porting/Makefile.am, rgdb_specs/Makefile.am, rtems_gdb/Makefile.am,
	ada_user/Makefile.am, started_ada/Makefile.am: Add *.info to CLEANFILES
	to accomodate automake-1.7f/1.8 breaking building infos.

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

	PR 528/rtems_misc
	* user/task.t: Fix Ada binding for task variable calls.

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

	* Makefile.am: Add missing '\'. Reformat.

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

	PR 521/doc
	* user/sem.t: Default attributes were wrong for semaphores.

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

	PR 513/doc
	* Makefile.am, index.html.in: Rename Getting Started to be non-language
	specific and remove link to Ada Getting Started. Also install missing
	graphic.

2003-10-02	Gene Smith <gene.smith@siemens.com>

	* networking/networkapp.t, networking/preface.texi: Improve
	documentation for SO_RCVWAKEUP and SO_SNDWAKEUP and update the
	references in the preface.

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

	* user/preface.texi: Eliminate references to HPPA.

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

	* FAQ/basic.t, FAQ/entry, porting/cpumodels.t: Obsoleting HP PA-RISC
	port and removing all references.
	* supplements/hppa1_1/.cvsignore, supplements/hppa1_1/ChangeLog,
	supplements/hppa1_1/Makefile.am, supplements/hppa1_1/SIMHPPA_TIMES,
	supplements/hppa1_1/bsp.t, supplements/hppa1_1/callconv.t,
	supplements/hppa1_1/cpumodel.t, supplements/hppa1_1/cputable.t,
	supplements/hppa1_1/fatalerr.t, supplements/hppa1_1/hppa1_1.texi,
	supplements/hppa1_1/intr_NOTIMES.t, supplements/hppa1_1/memmodel.t,
	supplements/hppa1_1/preface.texi, supplements/hppa1_1/timeSIMHPPA.t:
	Removed.

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

	* ChangeLog: Merge images/ChangeLog.
	* ChangeLog: Merge common/ChangeLog.
	* images/ChangeLog, common/ChangeLog: Removed.
	* rtems_support.html.in, index.html.in: Purge hppa1.1.
	* common/.cvsignore: Add rtems.texi, rtems.sed.
	* configure.ac: Merger from rtems-4-6-branch. Purge hppa1.1.
	* Makefile.am, project.am, develenv/Makefile.am, user/Makefile.am,
	FAQ/Makefile.am, posix_users/Makefile.am, posix1003.1/Makefile.am,
	itron3.0/Makefile.am, filesystem/Makefile.am, networking/Makefile.am,
	bsp_howto/Makefile.am, porting/Makefile.am, rgdb_specs/Makefile.am,
	rtems_gdb/Makefile.am, ada_user/Makefile.am, started_ada/Makefile.am:
	Merger from rtems-4-6-branch.

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

	* supplements/supplement.am: Add -I $(top_builddir) TEXI2WWW_ARGS.
	* supplements/Makefile.am: Purge hppa1.1.

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

	* common/rtems.texi.in: New file.
	* acinclude.m4, images/rtems_logo.jpg: New files.
	* SUPPORT, tools/texi2www/archive/texi2www-960103.tgz: Removed.
	* HELP.html, index.html.in, rtems_footer.html.in, rtems_header.html.in,
	rtems_support.html.in, ada_user/ada_user.texi, common/cpright.texi,
	common/setup.texi, develenv/develenv.texi, develenv/direct.t,
	develenv/sample.t, develenv/utils.t, user/c_user.texi, user/fatal.t,
	user/preface.texi, user/rtmon.t, FAQ/FAQ.texi, FAQ/basic.t,
	FAQ/build45.t, FAQ/entry, FAQ/tools.t, posix_users/posix_users.texi,
	posix1003.1/ch07.t, posix1003.1/posix1003_1.texi,
	posix1003.1/preface.texi, itron3.0/itron.texi,
	filesystem/filesystem.texi, networking/networking.texi,
	bsp_howto/analog.t, bsp_howto/bsp_howto.texi, bsp_howto/discrete.t,
	bsp_howto/nvmem.t, bsp_howto/target.t, porting/porting.texi,
	rgdb_specs/rgdb_specs.texi, rtems_gdb/rtems_gdb.texi,
	started_ada/intro.t, started_ada/started_ada.texi,
	started_ada/tversions.texi: Merge from branch.

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

	PR 466/doc
	* posix_users/io.t: Added sync().

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

	* started_ada/buildada.t, started_ada/gdb.t, started_ada/tversions.texi:
	Don't use VARIABLEs containing '-' in @set and @value (violates
	texi-syntax).

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

	* bsp_howto/adaintr.t, bsp_howto/ata.t, bsp_howto/target.t,
	porting/cpumodels.t, porting/sourcecode.t: Reconcile differences between
	CVS trunk and 4.6 branch.

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

	* bsp_howto/ide-ctrl.t: Merger from 4.6-branch.

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

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

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

	* user/fatal.t: Reflect c/src/exec having moved to cpukit.
	* FAQ/build45.t: Fix typo (config.long).
	* rgdb_specs/daemon.t, rtems_gdb/example.t: Reflect c/src/exec having
	moved to cpukit.

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

	* develenv/develenv.texi: Fix @setfilename to develenv.info.

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

	* develenv/Makefile.am, develenv/develenv.texi: Remove unused file.
	* develenv/compile.texi: Removed.
	* develenv/Makefile.am: Fix next/previous section names.

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

	* index.html.in: Development Environment Guide should be updated now.

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

	* develenv/direct.t, develenv/sample.t, develenv/utils.t: Significantly
	updated.

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

	* develenv/.cvsignore: Add newly generated .texi files.

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

	* Makefile.am, configure.ac: Remove src2html references.
	* index.html.in: Update to reflect partial update of Development
	Environment Guide.
	* develenv/Makefile.am, develenv/develenv.texi: Relect generating .texi
	from .t's.
	* develenv/direct.t, develenv/sample.t, develenv/utils.t: New files.
	* develenv/direct.texi, develenv/sample.texi, develenv/utils.texi:
	Removed. Now generated from corresponding .t files which are in the
	process of being updated.

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

	* index.html.in: Removed a29k reference.
	* FAQ/basic.t, FAQ/entry, porting/cpumodels.t: Remove a29k references
	and update.

2003-02-11	Mike Siers <mikes@poliac.com>

	* networking/networkapp.t: Add an example code snippet for adding an IP
	alias.

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

	* porting/interrupts.t: Rework logic that decides when to call
	_Thread_Dispatch.  Analysis by Sergei Organov <osv@javad.ru> determined
	that _ISR_Signals_to_thread_executing was not being honored and/or
	cleared properly.

2003-02-11	Jay Monkman <jtm@smoothsmoothie.com>

	* networking/networkapp.t: Add an example code snippet for adding a
	default route.

2003-02-03	Steven Johnson <sjohnson@neurizon.net>

	PR 338/filesystem
	* user/io.t: Document the API change that fixed reentrancy problem with 
	rtems_io_lookup_name().

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

	PR 338/filesystem
	* user/io.t: Fix Ada binding as side-effect of fixing reentrancy problem
	with rtems_io_lookup_name() (API change).

2003-01-28	Joel Sherrill <joel@OARcorp.com>

	* bsp_howto/makefiles.t, bsp_howto/support.t: Updated to reflect use of
	automake in addition to autoconf.

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

	* index.html.in: Fix duplicate c4x entry.

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

	* index.html.in, configure.ac: Add c4x.
	* project.am: Add version.texi hack.
	* develenv/develenv.texi: Set @setfilename develenv.info.
	* user/c_user.texi: Set @setfilename c_user.info.
	* FAQ/FAQ.texi: Set @setfilename FAQ.info.
	* posix_users/posix_users.texi: Set @setfilename posix_users.info.
	* posix1003.1/posix1003_1.texi: Set @setfilename posix1003_1.info.
	* itron3.0/itron.texi: Set @setfilename itron.info.
	* filesystem/filesystem.texi: Set @setfilename filesystem.info.
	* networking/networking.texi: Set @setfilename networking.info.
	* bsp_howto/bsp_howto.texi: Set @setfilename bsp_howto.info.
	* porting/porting.texi: Set @setfilename porting.info.
	* rgdb_specs/rgdb_specs.texi: Set @setfilename rgdb_specs.info.
	* rtems_gdb/rtems_gdb.texi: Set @setfilename rtems_gdb.info.
	* ada_user/ada_user.texi: Set @setfilename ada_user.info.
	* started_ada/started_ada.texi: Set @setfilename started_ada.info.
	* supplements/Makefile.am: Add c4x, cosmetical changes.

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

	* main.am: Remove AM_MAKEINFOFLAGS, TEXI2DVI, TEXI2PDF. Append -I
	$(top_builddir) to TEXI2WWW_ARGS.
	* project.am: Add AM_MAKEINFOFLAGS, TEXI2DVI, TEXI2PDF. Override
	automake's .dvi.ps:-rule.
	* user/Makefile.am, FAQ/Makefile.am, posix_users/Makefile.am,
	posix1003.1/Makefile.am, itron3.0/Makefile.am, filesystem/Makefile.am,
	networking/Makefile.am, bsp_howto/Makefile.am, porting/Makefile.am,
	rgdb_specs/Makefile.am, rtems_gdb/Makefile.am, ada_user/Makefile.am,
	started_ada/Makefile.am: Put GENERATED_FILES into $builddir.
	* supplements/supplements.am: Remove AM_MAKEINFOFLAGS, TEXI2DVI,
	TEXI2PDF.

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

	* project.am, main.am: Use automake rules to build ps, pdf, info.
	Various minor changes.
	* project.am: Append $($(PROJECT)_TEXINFOS) to html-dependencies.
	* configure.ac: Require autoconf-2.57. Require automake-1.7.2. Remove
	started/pictures/Makefile.
	* started/Makefile.am: Merge-in pictures/Makefile.am	.
	* started/pictures/Makefile.am: Remove.
	* FAQ/build45.t: Fix typo in previous patch.
	* FAQ/build45.t: Several fixes and additions.
	* FAQ/FAQ.texi: Rename section "Building RTEMS 4.5" into "Building
	RTEMS". build45.t: Remove references to 4.5. Several minor updates.
	* develenv/.cvsignore, FAQ/.cvsignore, posix_users/.cvsignore,
	posix1003.1/.cvsignore, itron3.0/.cvsignore, filesystem/.cvsignore,
	networking/.cvsignore, bsp_howto/.cvsignore, porting/.cvsignore,
	rgdb_specs/.cvsignore, rtems_gdb/.cvsignore, started_ada/.cvsignore,
	ada_user/.cvsignore, user/.cvsignore: Add version.texi. Add stamp-vti.
	Re-sort.
	* develenv/version.texi, develenv/stamp-vti, user/version.texi,
	user/stamp-vti, FAQ/version.texi, FAQ/stamp-vti,
	posix_users/version.texi, posix_users/stamp-vti,
	posix1003.1/version.texi, posix1003.1/stamp-vti, itron3.0/version.texi,
	itron3.0/stamp-vti, filesystem/version.texi, filesystem/stamp-vti,
	networking/version.texi, networking/stamp-vti, bsp_howto/version.texi,
	bsp_howto/stamp-vti, porting/version.texi, porting/stamp-vti,
	rgdb_specs/version.texi, rgdb_specs/stamp-vti, rtems_gdb/version.texi,
	rtems_gdb/stamp-vti, ada_user/version.texi, ada_user/stamp-vti,
	started_ada/version.texi, started_ada/stamp-vti: Remove from CVS.
	* supplements/supplements.am: Use automake rules to build ps, pdf, info.
	Various minor changes.

2003-01-21	Joel Sherrill <joel@OARcorp.com>

	* develenv/stamp-vti, develenv/version.texi, user/stamp-vti,
	user/version.texi, FAQ/stamp-vti, FAQ/version.texi,
	posix_users/stamp-vti, posix_users/version.texi, posix1003.1/stamp-vti,
	posix1003.1/version.texi, itron3.0/stamp-vti, itron3.0/version.texi,
	filesystem/stamp-vti, filesystem/version.texi, networking/stamp-vti,
	networking/version.texi, bsp_howto/stamp-vti, bsp_howto/version.texi,
	porting/stamp-vti, porting/version.texi, rgdb_specs/stamp-vti,
	rgdb_specs/version.texi, rtems_gdb/stamp-vti, rtems_gdb/version.texi,
	ada_user/stamp-vti, ada_user/version.texi, started_ada/stamp-vti,
	started_ada/version.texi: Regenerated.

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

	* Makefile.am: Merge-in images/Makefile.am, common/Makefile.am.
	* images/Makefile.am, common/Makefile.am: Remove.
	* configure.ac: Reflect changes above.
	* main.am, supplements/supplement.am: Append -I $(topsrc_dir) to
	AM_MAKEINFOFLAGS.

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

	* index.html.in: Note that the Getting Started with GNAT/RTEMS  manual
	is largely obsolete now that GNAT is in GCC.
	* develenv/stamp-vti, develenv/version.texi, user/stamp-vti,
	user/version.texi, FAQ/stamp-vti, FAQ/version.texi,
	posix_users/stamp-vti, posix_users/version.texi, posix1003.1/stamp-vti,
	posix1003.1/version.texi, itron3.0/stamp-vti, itron3.0/version.texi,
	filesystem/stamp-vti, filesystem/version.texi, networking/stamp-vti,
	networking/version.texi, bsp_howto/stamp-vti, bsp_howto/version.texi,
	porting/stamp-vti, porting/version.texi, rgdb_specs/stamp-vti,
	rgdb_specs/version.texi, rtems_gdb/stamp-vti, rtems_gdb/version.texi,
	ada_user/stamp-vti, ada_user/version.texi: Regenerated.
	* started_ada/Makefile.am: Corrected link.
	* started_ada/stamp-vti, started_ada/version.texi: Regenerated.

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

	* index.html.in: Add links to multiple missing CPU supplements.
	* develenv/stamp-vti, develenv/version.texi, user/stamp-vti,
	user/version.texi, FAQ/stamp-vti, FAQ/version.texi,
	posix_users/stamp-vti, posix_users/version.texi, posix1003.1/stamp-vti,
	posix1003.1/version.texi, itron3.0/stamp-vti, itron3.0/version.texi,
	filesystem/stamp-vti, filesystem/version.texi, networking/stamp-vti,
	networking/version.texi, bsp_howto/stamp-vti, bsp_howto/version.texi,
	porting/stamp-vti, porting/version.texi, rgdb_specs/stamp-vti,
	rgdb_specs/version.texi, rtems_gdb/stamp-vti, rtems_gdb/version.texi,
	ada_user/stamp-vti, ada_user/version.texi, started_ada/stamp-vti,
	started_ada/version.texi: Regenerated.

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

	* bsp_howto/ata.t, bsp_howto/ide-ctrl.t: New file.
	* bsp_howto/.cvsignore: Added new .texi files.
	* bsp_howto/Makefile.am: Added new files to generate.
	* bsp_howto/bsp_howto.texi: Added new chapters.
	* bsp_howto/stamp-vti, bsp_howto/version.texi: Regenerated.

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

	* .cvsignore: Reformat. Add autom4te*cache. Remove autom4te.cache.

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

	* user/io.t: Correct Ada bindings.

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

	* porting/stamp-vti, porting/version.texi: Regenerated.

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

	* configure.ac: Added supplements/arm/Makefile.
	* README: Updated.
	* user/stamp-vti, user/version.texi: Regenerated.
	* porting/miscellaneous.t: Added some markups for fonts and clarified
	some places.
	* supplements/Makefile.am: Added arm subdirectory.

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

	* user/userext.t: Per PR228, correct the prototype of the task create
	user extension to indicate it returns a boolean and augment the
	documentation to explain the purpose of the boolean return value.

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

	* project.am: Use PATH_SEPARATOR to setup TEXINPUTS.

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

	* user/doc/user/userext.t: Per PR138, updated the documentation to show
	how to obtain an extension table index. Also provided some extra
	background on the user extension API.

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

	* VERSION, bootstrap: Removed as unneeded.

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

	* bootstrap, VERSION: Remove.
	* Makefile.am: Remove bootstrap. Add ACLOCAL_AMFLAGS.
	* configure.ac: Add RTEMS_TOP.

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

	* user/io.t: Fix typo @sybsection.

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

	* common/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
	AM_INIT_AUTOMAKE([no-define foreign 1.6]).
	* Makefile.am, images/Makefile.am, develenv/Makefile.am,
	user/Makefile.am, FAQ/Makefile.am, posix_users/Makefile.am,
	posix1003.1/Makefile.am, itron3.0/Makefile.am, filesystem/Makefile.am,
	networking/Makefile.am, bsp_howto/Makefile.am, porting/Makefile.am,
	rgdb_specs/Makefile.am, rtems_gdb/Makefile.am, ada_user/Makefile.am,
	started_ada/Makefile.am, supplements/Makefile.am: Remove
	AUTOMAKE_OPTIONS.

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

	* user/intr.t: Per PR165, now correctly states that passing a NULL 
	pointer for the return argument is an error.
	* PR161
	* user/rtmon.t: Add rtems_ prefix to directives in the example.

2002-03-22	Chris Johns <ccj@acm.org>

	* user/io.t, user/conf.t: PR 160. Added the IO Manager's register and 
	unregister interface documentation.

2002-03-15	Eric Norum <eric.norum@usask.ca>

	* user/rtmon.t: Correct example and correctly used ensure not insure.

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

	* .cvsignore: Reworked.
	* Makefile.am: Remove texinfo/texinfo.tex.
	* bootstrap: Removed.
	* configure.ac: Add pkgdocdir. Let htmldir be rooted at pkgdocdir.
	* main.am: Remove TEXINFO_TEX.
	* project.am: Let dvidir, psdir, pdfdir be rooted at pkgdocdir. Remove
	commented out make-variables.

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

	* .cvsignore: Add autom4te.cache, install-sh, mdate-sh, missing,
	mkinstalldirs, texinfo.tex.
	* Makefile.am: Add main.am to AUTOMAKE_FILES.
	* configure.ac: Add AC_CONFIG_AUX_DIR([.]).
	* project.am: Remove custom .texi and stamp-vti rules.
	* main.am, supplements/supplement.am: Replace TEXI_COMMON with
	AM_MAKEINFOFLAGS.

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

	* Makefile.am: Require automake-1.5.
	* project.am: Reworked.
	* main.am, configure.ac: New.
	* configure.in: Removed.
	* bootstrap: Sync with RTEMS's toplevel bootstrap.sh.
	* common/Makefile.am, images/Makefile.am: Require automake-1.5.
	* develenv/Makefile.am, user/Makefile.am, FAQ/Makefile.am,
	posix_users/Makefile.am, posix1003.1/Makefile.am, itron3.0/Makefile.am,
	filesystem/Makefile.am, networking/Makefile.am, bsp_howto/Makefile.am,
	porting/Makefile.am, rgdb_specs/Makefile.am, rtems_gdb/Makefile.am,
	ada_user/Makefile.am, started_ada/Makefile.am: include main.am, require
	automake-1.5.
	* supplements/Makefile.am: Require automake-1.5.

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

	* VERSION: Updated to rtems-doc-ss-20010117.
	* VERSION: Updated to rtems-doc-eng-20010816b-d1.

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

	* VERSION: New file.

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

	* posix_users/preface.texi, posix_users/procenv.t,
	posix_users/process.t, posix_users/signal.t, posix_users/stamp-vti,
	posix_users/version.texi: Updated as part of starting a sweep on the
	POSIX User's Guide.

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

	* configure.ac: New mips supplement.
	* supplements/mips: New supplement.

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

	* configure.in: Changed the version to eng-20010816b.
	* SUPPORT, LICENSE: New files.
	* Numerous files touched as part of merging the 4.5 branch onto the
	mainline development trunk and ensuring that the script that cuts
	snapshots and releases works on the documentation.
	* develenv/.cvsignore, user/.cvsignore: Added rtems_header.html and
	rtems_footer.html.
	* user/timer.t: Added task-based timer information including the new
	directives rtems_timer_initiate(), rtems_timer_server_fire_after(), and
	rtems_timer_server_fire_when().
	* FAQ/.cvsignore, posix_users/.cvsignore, posix1003.1/.cvsignore,
	itron3.0/.cvsignore, filesystem/.cvsignore, networking/.cvsignore,
	bsp_howto/.cvsignore, porting/.cvsignore, rgdb_specs/.cvsignore,
	rtems_gdb/.cvsignore, ada_user/.cvsignore, started_ada/.cvsignore: Added
	rtems_header.html and rtems_footer.html.

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

	* Makefile.am, develenv/Makefile.am: Removed GENERATED_FILES from list
	of TEXINFOS.

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

	* ChangeLog, develenv/ChangeLog, user/ChangeLog, FAQ/ChangeLog,
	posix_users/ChangeLog, posix1003.1/ChangeLog, itron3.0/ChangeLog,
	filesystem/ChangeLog, networking/ChangeLog, bsp_howto/ChangeLog,
	porting/ChangeLog, rgdb_specs/ChangeLog, rtems_gdb/ChangeLog,
	ada_user/ChangeLog, started_ada/ChangeLog, supplements/ChangeLog: New
	file.