summaryrefslogtreecommitdiffstats
path: root/c/src/ChangeLog
blob: c27583204f0f839031fced3a9bcbc024e9295078 (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
2004-01-23	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* ChangeLog: Merge-in optman/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.

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.

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.

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.

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.

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.

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).

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.

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-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/.

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.

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.

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	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-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-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-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.

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).

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.

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: Remove libmisc.
	* 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.

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: Removed.
	* optman/rtems/Makefile.am: Removed.
	* optman/rel.am: Removed.
	* 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: Reworked.
	* 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-10-31	Joel Sherrill <joel@OARcorp.com>

	* libchip/network/dec21140.c: 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.

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	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-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-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-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.

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-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-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-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Remove CONFIG_SUBDIRS libblock, libfs.

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

	* configure.ac: Remove lib.

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

	* config-ml.in: Take out arm and sh variants RTEMS does not support.

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-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.

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.

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-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.

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-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-11-26	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* libchip/network/sonic.h: Fix typo.

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	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.

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-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	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.

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-04-27	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

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

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-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 $(..).

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

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

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.

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.

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-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.

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-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.

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

	* configure.in: Add RTEMS_PROG_CC_FOR_TARGET, RTEMS_CANONICALIZE_TOOLS.

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

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

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.

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

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

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

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