-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
2137 lines (1379 loc) · 66.2 KB
/
ChangeLog
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
2011-12-13 Ralf Corsépius <ralf.corsepius@rtems.org>
* compile, depcomp, mdate-sh, texinfo.tex:
Update from automake-1.11.1b.
2011-11-09 Joel Sherrill <joel.sherrill@oarcorp.com>
* MAINTAINERS: Rewrite and update.
2011-11-08 Gedare Bloom <gedare@rtems.org>
* MAINTAINERS: Revert adding myself as a maintainer.
2011-11-06 Gedare Bloom <gedare@rtems.org>
* ChangeLog: Fix ChangeLog with name and email address
2011-11-06 Gedare Bloom <gedare@rtems.org>
* MAINTAINERS: Fix whitespace.
2011-11-04 Gedare Bloom <gedare@rtems.org>
* MAINTAINERS: Add myself as maintainer
2011-10-20 Ralf Corsépius <ralf.corsepius@rtems.org>
* MAINTAINERS: Remove references to c4x, or32 (abandoned).
2011-10-03 Ralf Corsépius <ralf.corsepius@rtems.org>
* depcomp, compile, texinfo.tex, mdate-sh: New.
* bootstrap (-c): Don't remove depcomp, compile, texinfo.tex,
mdate-sh.
2011-05-24 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1810/misc
* ChangeLog: Fix previous damage.
2011-06-17 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.am: Remove make/host.cfg.in.
2011-05-24 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1810/misc
* ChangeLog: Fix previous damage.
2011-05-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* tools/build/.cvsignore, tools/build/ChangeLog,
tools/build/Makefile.am, tools/build/README, tools/build/binpatch.c,
tools/build/cklength.c, tools/build/config.h.in,
tools/build/configure.ac, tools/build/cvsignore-add.sh,
tools/build/doxy-filter, tools/build/eolstrip.c,
tools/build/install-if-change.in, tools/build/multigen,
tools/build/packhex.c, tools/build/rtems-bin2c.c,
tools/build/search-id.sh, tools/build/unhex.c, tools/cpu/.cvsignore,
tools/cpu/ChangeLog, tools/cpu/Makefile.am, tools/cpu/configure.ac,
tools/cpu/generic/.cvsignore, tools/cpu/generic/ChangeLog,
tools/cpu/generic/Makefile.am, tools/cpu/generic/configure.ac,
tools/cpu/generic/size_rtems.in, tools/cpu/nios2/.cvsignore,
tools/cpu/nios2/ChangeLog, tools/cpu/nios2/Makefile.am,
tools/cpu/nios2/README, tools/cpu/nios2/bridges.c,
tools/cpu/nios2/bridges.h, tools/cpu/nios2/clocks.c,
tools/cpu/nios2/clocks.h, tools/cpu/nios2/configure.ac,
tools/cpu/nios2/devices.c, tools/cpu/nios2/devices.h,
tools/cpu/nios2/linkcmds.c, tools/cpu/nios2/linkcmds.h,
tools/cpu/nios2/memory.c, tools/cpu/nios2/memory.h,
tools/cpu/nios2/nios2gen.c, tools/cpu/nios2/output.c,
tools/cpu/nios2/output.h, tools/cpu/nios2/ptf.c,
tools/cpu/nios2/ptf.h, tools/cpu/nios2/sample.ptf,
tools/cpu/sh/.cvsignore, tools/cpu/sh/AUTHORS, tools/cpu/sh/COPYING,
tools/cpu/sh/ChangeLog, tools/cpu/sh/Makefile.am, tools/cpu/sh/TODO,
tools/cpu/sh/configure.ac, tools/cpu/sh/sci.c, tools/cpu/sh/sci.h,
tools/cpu/sh/shgen.c: New files.
Readded after mistakenly removing them.
2011-05-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* tools/build/.cvsignore, tools/build/ChangeLog,
tools/build/Makefile.am, tools/build/README, tools/build/binpatch.c,
tools/build/cklength.c, tools/build/configure.ac,
tools/build/cvsignore-add.sh, tools/build/doxy-filter,
tools/build/eolstrip.c, tools/build/install-if-change.in,
tools/build/multigen, tools/build/packhex.c,
tools/build/rtems-bin2c.c, tools/build/search-id.sh,
tools/build/unhex.c, tools/cpu/.cvsignore, tools/cpu/ChangeLog,
tools/cpu/Makefile.am, tools/cpu/configure.ac,
tools/cpu/generic/.cvsignore, tools/cpu/generic/ChangeLog,
tools/cpu/generic/Makefile.am, tools/cpu/generic/configure.ac,
tools/cpu/generic/size_rtems.in, tools/cpu/nios2/.cvsignore,
tools/cpu/nios2/ChangeLog, tools/cpu/nios2/Makefile.am,
tools/cpu/nios2/README, tools/cpu/nios2/bridges.c,
tools/cpu/nios2/bridges.h, tools/cpu/nios2/clocks.c,
tools/cpu/nios2/clocks.h, tools/cpu/nios2/configure.ac,
tools/cpu/nios2/devices.c, tools/cpu/nios2/devices.h,
tools/cpu/nios2/linkcmds.c, tools/cpu/nios2/linkcmds.h,
tools/cpu/nios2/memory.c, tools/cpu/nios2/memory.h,
tools/cpu/nios2/nios2gen.c, tools/cpu/nios2/output.c,
tools/cpu/nios2/output.h, tools/cpu/nios2/ptf.c,
tools/cpu/nios2/ptf.h, tools/cpu/nios2/sample.ptf,
tools/cpu/sh/.cvsignore, tools/cpu/sh/AUTHORS, tools/cpu/sh/COPYING,
tools/cpu/sh/ChangeLog, tools/cpu/sh/Makefile.am, tools/cpu/sh/TODO,
tools/cpu/sh/configure.ac, tools/cpu/sh/sci.c, tools/cpu/sh/sci.h,
tools/cpu/sh/shgen.c, tools/schedsim/.cvsignore,
tools/schedsim/ChangeLog, tools/schedsim/Makefile.am,
tools/schedsim/README, tools/schedsim/configure.ac,
tools/schedsim/rtems/.cvsignore, tools/schedsim/rtems/ChangeLog,
tools/schedsim/rtems/Makefile.am, tools/schedsim/rtems/interr.c,
tools/schedsim/rtems/rtems_init.c,
tools/schedsim/rtems/rtems_sched.h, tools/schedsim/rtems/wkspace.c,
tools/schedsim/rtems/sched_cpu/cpu.c,
tools/schedsim/rtems/sched_cpu/cpu_asm.c,
tools/schedsim/rtems/sched_cpu/rtems/asm.h,
tools/schedsim/rtems/sched_cpu/rtems/stringto.h,
tools/schedsim/rtems/sched_cpu/rtems/score/cpu.h,
tools/schedsim/rtems/sched_cpu/rtems/score/cpu_asm.h,
tools/schedsim/rtems/sched_cpu/rtems/score/cpuopts.h,
tools/schedsim/rtems/sched_cpu/rtems/score/no_cpu.h,
tools/schedsim/rtems/sched_cpu/rtems/score/types.h,
tools/schedsim/shell/.cvsignore, tools/schedsim/shell/ChangeLog,
tools/schedsim/shell/Makefile.am,
tools/schedsim/shell/schedsim_priority/.cvsignore,
tools/schedsim/shell/schedsim_priority/Makefile.am,
tools/schedsim/shell/schedsim_priority/config.c,
tools/schedsim/shell/schedsim_priority/printheir_executing.c,
tools/schedsim/shell/schedsim_priority/schedsim.cc,
tools/schedsim/shell/schedsim_priority/wrap_thread_dispatch.c,
tools/schedsim/shell/scripts/script01,
tools/schedsim/shell/scripts/script02,
tools/schedsim/shell/scripts/script03,
tools/schedsim/shell/scripts/script04,
tools/schedsim/shell/scripts/script05,
tools/schedsim/shell/scripts/script06,
tools/schedsim/shell/shared/.cvsignore,
tools/schedsim/shell/shared/Makefile.am,
tools/schedsim/shell/shared/commands.c,
tools/schedsim/shell/shared/getopt.c,
tools/schedsim/shell/shared/lookup_semaphore.c,
tools/schedsim/shell/shared/lookup_task.c,
tools/schedsim/shell/shared/main_clocktick.c,
tools/schedsim/shell/shared/main_echo.c,
tools/schedsim/shell/shared/main_executing.c,
tools/schedsim/shell/shared/main_heir.c,
tools/schedsim/shell/shared/main_help.c,
tools/schedsim/shell/shared/main_rtemsinit.c,
tools/schedsim/shell/shared/main_semcreate.c,
tools/schedsim/shell/shared/main_semdelete.c,
tools/schedsim/shell/shared/main_semflush.c,
tools/schedsim/shell/shared/main_semobtain.c,
tools/schedsim/shell/shared/main_semrelease.c,
tools/schedsim/shell/shared/main_taskcreate.c,
tools/schedsim/shell/shared/main_taskdelete.c,
tools/schedsim/shell/shared/main_taskmode.c,
tools/schedsim/shell/shared/main_taskpriority.c,
tools/schedsim/shell/shared/main_taskresume.c,
tools/schedsim/shell/shared/main_tasksuspend.c,
tools/schedsim/shell/shared/main_taskwakeafter.c,
tools/schedsim/shell/shared/schedsim_shell.h,
tools/schedsim/shell/shared/shell_cmdset.c,
tools/schedsim/shell/shared/shell_makeargs.c,
tools/schedsim/shell/shared/include/shell.h,
tools/schedsim/shell/shared/include/newlib/_ansi.h,
tools/schedsim/shell/shared/include/newlib/getopt.h: Removed.
* configure.ac: RTEMS Scheduler Simulator is now in its own CVS module
named rtems-schedsim.
2011-04-21 Jennifer Averett <Jennifer.Averett@OARcorp.com
PR 1777/cpukit
* tools/schedsim/rtems/rtems_init.c: Consolidated access to
_Thread_Dispatch_disable_level.
2011-03-16 Jennifer Averett <jennifer.averett@OARcorp.com>
PR 1729/cpukit
* aclocal/enable-smp.m4: New file.
2011-03-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
* Makefile.maint: Remove started_ada.
2011-03-06 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/rtems-top.m4: Add pkgdatadir.
Override pkgdatadir to $(datadir)/rtems$_RTEMS_API.
* Makefile.am: Install make/Templates to pkgdatadir.
2011-03-04 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.am: Merge-in make/Makefile.am.
* configure.ac: Reflect change above.
2011-03-04 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.maint, aclocal/rpm.m4, aclocal/rtems-top.m4,
aclocal/version.m4: Rename RTEMS_API into _RTEMS_API.
2011-03-03 Ralf Corsépius <ralf.corsepius@rtems.org>
* bootstrap: Add -g option.
Switch default to autoreconf.
2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Require autoconf-2.68, automake-1.11.1.
2011-01-26 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Don't build tools/schedsim by default.
Add --enable-schedsim (Default: disabled).
2010-12-17 Joel Sherrill <joel.sherrill@oarcorp.com>
Add RTEMS Scheduler Simulator.
* configure.ac: Add tools/schedsim.
2010-12-16 Joel Sherrill <joel.sherrilL@OARcorp.com>
* SUPPORT: Update address.
2010-09-27 Ralf Corsépius <ralf.corsepius@rtems.org>
* README.configure: Further cleanup.
2010-09-26 Ralf Corsépius <ralf.corsepius@rtems.org>
* README.configure: Remove the most obsolete parts.
2010-07-27 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1532/testing
* aclocal/project-root.m4: Add initial tests for untar capabilities.
2010-06-23 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: autoconf >= 2.65, automake >= 1.11.
2010-06-21 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.maint, README.configure: Remove more ITRON references.
2010-06-17 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/enable-itron.m4: Remove.
* configure.ac: Remove itron.
2010-06-07 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/version.m4: Bump RTEMS_API to 4.11.
Bump _RTEMS_VERSION to 4.10.99.0.
2010-05-11 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/bsp-alias.m4: Change quoting to work-round
http://www.freebsd.org/cgi/query-pr.cgi?pr=146378.
2009-10-23 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/check-custom-bsp.m4: Be less verbose.
2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/bsp-alias.m4: Fix quoting bug.
2009-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/check-custom-bsp.m4:
Remove "${srcdir}/${RTEMS_TOPdir}/make/custom/$1".
* aclocal/check-bsps.m4: Remove "blacklist".
2009-10-16 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/bsp-alias.m4: Remove bare BSP (Abandoned).
2009-10-16 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
* README.configure: added COBRA5475 reference
2009-10-16 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/bsp-alias.m4: Pickup bsps from
c/src/lib/libbsp/<cpu>/<bsp_family>/make/custom*.cfg.
2009-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/check-bsps.m4: Pickup bsps from
c/src/lib/libbsp/<cpu>/<bsp_family>/make/custom*.cfg.
2009-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/check-custom-bsp.m4: Let _RTEMS_CHECK_CUSTOM_BSP look for
*.cfg into c/src/lib/libbsp/<cpu>/<bsp_family>/make/custom.
2009-10-14 Ralf Corsepius <ralf.corsepius@rtems.org>
* aclocal/canonical-target-name.m4, aclocal/enable-posix.m4:
Remove posix/unix simulator.
2009-10-04 Sebastian Huber <sebastian.huber@embedded-brains.de>
* aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Renamed LPC24XX BSP
variants.
2009-10-01 Joel Sherrill <joel.sherrill@oarcorp.com>
* aclocal/bsp-alias.m4: Add BSP for GDB ARM simulator so we can easily
experiment with and debug different ARM architectural variations.
2009-09-14 Ralf Corsepius <ralf.corsepius@rtems.org>
* aclocal/check-bsps.m4: Add csb337 bsp family.
2009-07-23 Ralf Corsepius <ralf.corsepius@rtems.org>
* aclocal/enable-itron.m4: Default to not building itron.
2009-05-28 Joel Sherrill <joel.sherrill@OARcorp.com>
* aclocal/bsp-alias.m4: Add csb637 as variant of csb337.
2009-02-27 Sebastian Huber <sebastian.huber@embedded-brains.de>
* aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Added defines for
LPC2478 BSP variants.
2009-02-19 Joel Sherrill <joel.sherrill@oarcorp.com>
* aclocal/bsp-alias.m4: Add simsh2e.
2009-02-06 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.maint: rtems_api=4.10.
* Makefile.maint: Dump stuff hanging around for much too long.
2009-02-06 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/canonical-target-name.m4:
Remove comment referring to HPUX9.
2009-02-05 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Remove pck6 BSP.
2008-12-31 Ralf Corsépius <ralf.corsepius@rtems.org>
* config-ml.in: Comment out arm/thumb exception (Add arm/thumb
multilib).
2008-12-30 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/check-bsps.m4: remove stray ")" from rtl22xx_t alias.
2008-12-22 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/canonical-target-name.m4: Remove tic4x.
2008-12-04 Jukka Pietarinen <jukka.pietarinen@mrf.fi>
* README.configure: Add Lattice Mico32 support.
2008-10-14 Joel Sherrill <joel.sherrill@oarcorp.com>
* aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Add h8sxsim as variant
of h8sim.
2008-10-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* README.configure: Add new M32R port. It is just a beginning but the
BSP is functional enough to initialize and shutdown RTEMS.
2008-10-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* README.configure, aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Add
M32C port and m32csim BSP.
2008-10-01 Joel Sherrill <joel.sherrill@oarcorp.com>
* VERSION: Bump version to 4.9.99.0
2008-10-01 Ralf Corsépius <ralf.corsepius@rtems.org>
PR 1324/bsps
* aclocal/check-bsps.m4: Revert Joel's icecube patch.
2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>
* MAINTAINERS: Remove myself from avr.
2008-09-25 Joel Sherrill <joel.sherrill@oarcorp.com>
* README.configure, aclocal/bsp-alias.m4, aclocal/check-bsps.m4:
Recognize the the GDB SuperH simulator is just an architectural
simulator and does not include devices. Rename existing simulator BSP
configurations to simsh1 and simsh2 and add simsh4.
2008-09-24 Ralf Corsépius <ralf.corsepius@rtems.org>
PR 1324/bsps
* aclocal/check-bsps.m4: Add missing icecube.
2008-09-22 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/version.m4: Bump RTEMS_API to 4.10.
Bump _RTEMS_VERSION to 4.9.99.0.
2008-09-22 Sebastian Huber <sebastian.huber@embedded-brains.de>
* aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Added defines for
LPC2478 BSP.
2008-09-09 Joel Sherrill <joel.sherrill@oarcorp.com>
* README.configure: Updated list of BSPs.
2008-09-08 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
* make/custom/pghplus.cfg, make/custom/tqm8xx_stk8xx.cfg,
* make/custom/tqm8xx.cfg,
* aclocal/bsp-alias.m4, aclocal/check-bsps.m4:
added MPC8xx based tqm8xx BSP family
2008-07-27 Ralf Corsépius <ralf.corsepius@rtems.org>
* acinclude.m4 (_RTEMS_OUTPUT_SUBDIRS): Allow empty configdirs.
2008-07-27 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Remove doxygen
comments.
* aclocal/rtems-top.m4: Require AC_DISABLE_OPTION_CHECKING.
AC_PREREQ(2.62).
2008-07-14 Sebastian Huber <sebastian.huber@embedded-brains.de>
* aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Added MPC5566EVB and
MPC8313ERDB. Added Doxygen style comment.
2008-07-14 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
* make/custom/haleakala.cfg:
added PPC405 haleakala BSP contributed by Michael Hamel
2008-07-09 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
* aclocal/bsp-alias.m4, aclocal/check-bsps.m4,
* make/custom/m5484FireEngine.cfg:
added pgh360 BSP variant
added m5484FireEngine BSP
2008-06-01 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac, acinclude.m4: s/AC_HELP/AS_HELP/.
2008-04-14 Ralf Corsépius <ralf.corsepius@rtems.org>
* bootstrap: Use find . ... preinstall.am for portability reasons.
2008-02-20 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/enable-cxx.m4, aclocal/enable-itron.m4,
aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4,
aclocal/enable-posix.m4, aclocal/enable-rtems-debug.m4,
aclocal/enable-rtemsbsp.m4, aclocal/enable-tests.m4,
aclocal/multilib.m4: s/AC_HELP/AS_HELP/.
2007-11-06 Ray Xu <rayx.cn@gmail.com>
* aclocal/bsp-alias.m4, aclocal/check-bsps.m4:
2007-09-21 Ralf Corsépius <ralf.corsepius@rtems.org>
* VERSION: Bump VERSION to 4.8.99.0.
* aclocal/version.m4: Bump RTEMS_API to 4.9.
Bump RTEMS_VERSION to 4.8.99.0.
2007-09-04 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.maint: touch all documentation master files so the date on
the manual reflects the release date of the software.
2007-08-07 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.maint: Add touching master files for various manuals so the
date on the cover page will reflect the date a tarball is cut.
2007-08-06 Joel Sherrill <joel.sherrill@OARcorp.com>
* README.configure, aclocal/bsp-alias.m4: Rename EP5200 to IceCube
since that is the nickname for the Freescale evaluation board it is
based upon. BSP was tested on a Freescale MPC5200LITE.
2007-08-02 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.maint, configure.ac, release_support: Remove RDBG.
* aclocal/enable-rdbg.m4: Removed.
2007-07-09 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
* aclocal/bsp-alias.m4, aclocal/check-bsps.m4, README.configure:
Add gen83xx and mpc8349eamds BSP
2007-07-02 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
* README.configure: Add virtex BSP
2007-06-20 Joel Sherrill <joel.sherrill@oarcorp.com>
* aclocal/bsp-alias.m4, README.configure: Add ep5200, IceCube, 5200Lite.
2007-06-12 Joel Sherrill <joel.sherrill@OARcorp.com>
* README.configure: Removed armulator.
2007-05-15 Joel Sherrill <joel.sherrill@OARcorp.com>
* README.configure, aclocal/check-bsps.m4: Remove references to
mbx860_1b since it is just an alternate name for the mbx860_001b.
2007-05-11 Joel Sherrill <joel.sherrill@OARcorp.com>
* README.configure, aclocal/bsp-alias.m4, aclocal/check-bsps.m4:
Per Jiri Gaisler remove unused erc32nfp and leon1 BSP variants.
2007-05-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* README.configure: DMV152 obsoleted.
2007-02-21 Joel Sherrill <joel@OARcorp.com>
* Makefile.maint: Added TOOL_VERSIONS stanza and fixed typo.
2007-02-21 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.am: Use MKDIR_P instead of mkdir_p.
2007-02-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.maint: Use VERSION as master source for version.m4's.
* VERSION: Sync with version in aclocal/version.m4.
2007-01-28 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.maint: Sync nomenclature with that being used in
cpukit/score/include/rtems/system.h (major->minor,
minor->revision).
2007-01-27 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.maint: Remove references to
cpukit/score/include/rtems/system.h.
* Makefile.maint: Add CVS_RUN.
2007-01-26 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.maint: New.
2007-01-08 Ralf Corsépius <ralf.corsepius@rtems.org>
* acinclude.m4: AC_PREREQ(2.60).
2007-01-08 Ralf Corsépius <ralf.corsepius@rtems.org>
* ampolish3: Use MKDIR_P instead of mkdir_p.
2007-01-08 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.am: Remove scripts/.
2006-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: New BUG-REPORT address.
2006-11-20 Ralf Corsépius <ralf.corsepius@rtems.org>
* Makefile.am: Add ampolish3.
2006-11-18 Ralf Corsépius <ralf.corsepius@rtems.org>
* bootstrap: Add -r (autoreconf).
2006-11-18 Ralf Corsépius <ralf.corsepius@rtems.org>
* bootstrap: Add -p (regenerate preinstall.ams).
2006-11-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* ampolish3: New.
2006-10-19 Joel Sherrill <joel@OARcorp.com>
* configure.ac: Remove all macro implementations and use only the
static inline. Static inline functions are now well supported so
there is no reason for duplicate maintenance.
* aclocal/enable-inlines.m4: Removed.
2006-10-18 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/rtems-top.m4: Remove RTEMS_API.
* aclocal/version.m4: Add RTEMS_API. Bump RTEMS_API to 4.8.
2006-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/version.m4: Bump version to 4.7.99.0.
2006-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Require autoconf-2.60. Require automake-1.10.
2006-08-09 Kolja Waschk <waschk@telos.de>
* config-ml.in: New port to Altera NIOS II.
2006-07-09 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
* aclocal/bsp-alias.m4: (PR1117) Add brs5l as alias for gen5200
* aclocal/check-bsps.m4: (PR1117) Add brs5l as alias for gen5200
2006-06-23 Worth Burruss <worth@motioncontrol.org>
* README.configure: Add mcf5235.
2006-04-18 Joel Sherrill <joel@OARcorp.com>
* VERSION: Updated to rtems-4.6.99.3.
2006-04-18 Joel Sherrill <joel@OARcorp.com>
* aclocal/version.m4: Updated to rtems-4.6.99.3.
2006-04-18 Joel Sherrill <joel@OARcorp.com>
* release_support: Fix typos.
2006-04-18 Joel Sherrill <joel@OARcorp.com>
* ChangeLog, release_support: Fix typos.
2006-03-09 Ralf Corsepius <ralf.corsepius@rtems.org>
* acinclude.m4: Requires autoconf-2.59.
2006-03-07 Joel Sherrill <joel@OARcorp.com>
PR 694/rtems
* release_support: Do not include .cvsignore files in release tarballs.
2006-02-01 Ralf Corsepius <ralf.corsepius@rtems.org>
PR 882/make_build
* bootstrap: Only remove bspopts.h.in instead of bspopts.h*.
2006-01-12 Ralf Corsepius <ralf.corsepius@rtems.org>
* aclocal/bsp-alias.m4: Revert Joel's 2006-01-10 change.
Alpha-sort the aliases list.
* automake/host.am, automake/local.am, automake/subdirs.am:
Remove depend-am, depend-recursive.
2006-01-10 Joel Sherrill <joel@OARcorp.com>
* aclocal/bsp-alias.m4: Add sis as alias of erc32.
2006-01-09 Ralf Corsepius <ralf.corsepius@rtems.org>
* aclocal/bsp-alias.m4: Remove brs5l. Remove leon2.
Alias leon1 to leon2. Add sis.
* aclocal/check_bsps.m4: Remove brs5l.
Remove leon. Add leon2. Add sis to erc32 family.
2005-11-31 Ralf Corsepius <ralf.corsepius@rtems.org>
PR 851/bsps
* aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Add gen5200 BSP
family.
2005-11-03 Ralf Corsepius <ralf.corsepius@rtems.org>
* aclocal/check-bsps.m4: Add the plethora of mbx* BSP.
2005-09-02 Joel Sherrill <joel@OARcorp.com>
* VERSION: Updated to rtems-4.6.99.2.
2005-09-02 Joel Sherrill <joel@OARcorp.com>
* aclocal/version.m4: Updated to rtems-4.6.99.2.
2005-07-06 Philippe Simons
* MAINTAINERS: Added me as arm/gp32 bsp maintainer.
2005-04-28 Joel Sherrill <joel@OARcorp.com>
* README.configure: Updated to account for removal of dmv177 and
ppcn_60x as well as other additions and deletions.
2005-02-04 Ralf Corsepius <ralf.corsepius@rtems.org>
* aclocal/enable-itron.m4: Allow unix.
2005-01-02 Ralf Corsepius <ralf.corsepius@rtems.org>
* Makefile.am: Remove ACLOCAL_FILES.
2004-11-16 Ralf Corsepius <ralf_corsepius@rtems.org>
* aclocal/check-bsps.m4: Use ls instead of globs to pickup
bsp_specs.
2004-11-12 Ralf Corsepius <ralf_corsepius@rtems.org>
* aclocal/check-bsps.m4: Add MVME2100 BSP as alias of
motorola_shared.
2004-11-10 Joel Sherrill <joel@oarcorp.com>
* aclocal/bsp-alias.m4: Add MVME2100 BSP as alias of motorola_shared.
2004-10-22 Ralf Corsepius <ralf_corsepius@rtems.org>
* alocal/check-custom-bsp.m4: Reflect new location of bspkit*cfg.
2004-10-18 Ralf Corsepius <ralf_corsepius@rtems.org>
* aclocal/check-bsps.m4: Add bspkit support. Don't check for
presence of *.cfg.
* aclocal/check-custom-bsp.m4: Add bspkit support.
2004-10-18 Ralf Corsepius <ralf_corsepius@rtems.org>
* aclocal/enable-bare.m4: Remove.
2004-09-29 Joel Sherrill <joel@OARcorp.com>
* MAINTAINERS, README.configure, c/ACKNOWLEDGEMENTS,
c/TOOL_TARGETS: i960 obsoleted and all references removed.
2004-09-24 Ralf Corsepius <ralf_corsepius@rtems.org>
* configure.ac: Require automake > 1.9.
2004-09-24 Ralf Corsepius <ralf_corsepius@rtems.org>
* aclocal/rtems-cpu-subdirs.m4: Remove (unused).
2004-08-18 Ralf Corsepius <ralf_corsepius@rtems.org>
PR 673/make_build
* config-ml.in: Quote 'cd "${ml_origdir}"'.
Quote 'cd "${ML_POPDIR}"'.
2004-08-17 Ralf Corsepius <ralf_corsepius@rtems.org>
PR 673/make_build
* acinclude.m4 (_RTEMS_CONFIG_SUBDIR): Quote ac_popdir uses.
2004-07-14 Joel Sherrill <joel@OARcorp.com>
* MAINTAINERS: Added Jay Monkman as ARM architecture maintainer
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
* aclocal/rtems-top.m4: Remove ENDIF.
Remove with_target_subdir defaulting to '.'.
* acinclude.m4: Add --includedir to sub_configure_args.
2004-02-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: DIST_SUBDIRS = $(SUBDIRS).
Rework dist-hook.
* configure.ac: Reflect changes to RTEMS_ENABLE_RTEMSBSP.
* aclocal/enable-rtemsbsp.m4: Add support for --disable-rtemsbsp.
2004-02-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: RTEMS_BUILD_CONFIG_SUBDIRS([testsuites/tools]).
2004-02-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Remove AUTOMAKE_FILES.
Cleanup duplicate ACLOCAL_FILES.
EXTRA_DIST += config-ml.in.
DIST_SUBDIRS += make.
Add dist-hook.
* configure.ac: Add dist-bzip2 no-dist-gzip to AUTOMAKE_OPTIONS.
2004-02-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* bootstrap: RTEMS_CHECK_BSPDIR(RTEMS_BSP_FAMILY).
2004-02-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* VERSION: 4.6.99.0.
* aclocal/version.m4: 4.6.99.0.
2004-02-06 Joel Sherrill <joel@OARcorp.com>
* aclocal/bsp-alias.m4: Readd aliases for p4600 and p4650
which were accidentally removed when purging the mips64orion.
2004-02-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/rpm.m4: Make osversions the default.
* aclocal/rtems-top.m4: Remove check for version.m4 (Breaks make
distcheck).
2004-02-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/rpm.m4: New (extracted from scripts/configure.ac).
2004-01-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Require automake >= 1.8.2.
* aclocal/check-bsps.m4: Also test for make/custom/*.cfg.
2004-01-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Requires automake >= 1.8.1.
2004-01-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* .cvsignore: Remove mkinstalldirs.
* bootstrap: Remove compile during "clean".
2004-01-08 Joel Sherrill <joel@OARcorp.com>
* .cvsignore: Add compile.
2004-01-07 Joel Sherrill <joel@OARcorp.com>
* README.configure: Remove efi68k and efi332 references as they are no
longer in the tree.
2004-01-07 Joel Sherrill <joel@OARcorp.com>
* aclocal/bsp-alias.m4, aclocal/rtems-cpu-subdirs.m4: mips64orion port
removed as mips port more completely covers the MIPS family.
2003-12-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* README.configure: Reflect requireing autoconf-2.59 and
automake-1.8.
2003-12-17 Joel Sherrill <joel@OARcorp.com>
* VERSION: Updated to rtems-20031217-test.
2003-12-17 Joel Sherrill <joel@OARcorp.com>
* aclocal/version.m4: Updated to rtems-20031217-test.
2003-12-17 Joel Sherrill <joel@OARcorp.com>
* release_support: Correct method used to find ChangeLog associated
with the version.m4 files. Keep going until I can get a tarball cut.
2003-12-17 Joel Sherrill <joel@OARcorp.com>
* release_support: Use dirname not basedir. Keep going until I
can get a tarball cut.
2003-12-17 Joel Sherrill <joel@OARcorp.com>
* release_support: New file -- assistant to new cut_release script.
2003-12-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Remove automake/compile.am
2003-12-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* automake/compile.am: Remove (Unused).
2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* automake/lib.am: Remove (Unused).
2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Require automake >= 1.8, autoconf >= 2.59.
2003-12-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Remove make/custom/Makefile.
* Makefile.am: Cosmetics.
* automake/compile.am: Remove compilation rules.
Remove $(ARCH) directory generation.
2003-11-26 Joel Sherrill <joel@OARcorp.com>
* MAINTAINERS: New file.
2003-11-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/bsp-alias.m4, aclocal/canonical-target-name.m4,
aclocal/check-bsps.m4, aclocal/check-custom-bsp.m4,
aclocal/enable-bare.m4, aclocal/enable-cxx.m4,
aclocal/enable-inlines.m4, aclocal/enable-itron.m4,
aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4,
aclocal/enable-posix.m4, aclocal/enable-rdbg.m4,
aclocal/enable-rtems-debug.m4, aclocal/enable-rtemsbsp.m4,
aclocal/enable-tests.m4, aclocal/multilib.m4,
aclocal/path-ksh.m4, aclocal/project-root.m4,
aclocal/rtems-top.m4, aclocal/tool-paths.m4,
acinclude.m4:
Fix underquoting to silence automake-1.8.
2003-10-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* config-ml.in: Don't built multilib variant normal (-mn) for
h8300-*-rtems*.
2003-10-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/config-subdirs.m4: Remove.
* Makefile.am: Reflect changes above.
2003-10-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/canonical-host.m4: Remove.
* Makefile.am: Reflect changes above.
2003-10-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* bootstrap: Use $RTEMS_BSP_FAMILY instead of RTEMS_BSP_ALIAS in
c/src/lib/libbsp/*/acinclude.m4.
2003-10-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/check-cpu.m4: Remove.
* Makefile.am: Remove reference to aclocal/check-cpu.m4.
* acinclude.m4 (RTEMS_TARGET_CONFIG_SUBDIR): Check for presence of
$1 in $srcdir before adding dir to SUBDIRS.
2003-09-26 Joel Sherrill <joel@OARcorp.com>
* README.configure, aclocal/rtems-cpu-subdirs.m4: Removing HPPA port.
2003-08-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/enable-rtems-debug.m4: New (Missed in yesterday's
patches).
* aclocal/enable-tests.m4: Change to support
--enable-tests=no|yes|samples, default is samples.
2003-08-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Correct bogus ACLOCAL_FILES.
2003-08-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/bsp-arg-enable.m4, aclocal/bsp-configure.m4,
aclocal/bspopts.m4, aclocal/canonicalize-tools.m4,
aclocal/check-bsp-cache.m4, aclocal/check-cxx.m4,
aclocal/check-itron.m4, aclocal/check-multiprocessing.m4,
aclocal/check-networking.m4, aclocal/check-newlib.m4,
aclocal/check-posix.m4, aclocal/check-rdbg.m4,
aclocal/check-tool.m4, aclocal/env-rtemsbsp.m4,
aclocal/gcc-isystem.m4, aclocal/gcc-pipe.m4,
aclocal/gcc-specs.m4, aclocal/i386-gas-code16.m4,
aclocal/path-perl.m4, aclocal/ppc.m4,
aclocal/prog-cc.m4, aclocal/prog-ccas.m4,
aclocal/prog-cxx.m4, aclocal/prog-gnat.m4,
aclocal/rtems-debug.m4, aclocal/rtems-flags.m4,
aclocal/rtems-test-no-pause.m4, aclocal/target.m4:
Remove (Unused).
* automake/leaf.am, automake/force-preinstall.am:
Remove (Unused).
* Makefile.am: Reflect changes above.
2003-08-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* automake/local.am, automake/host.am: Remove "debug".
2003-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Use rtems-bugs@rtems.com as bug report email address.
2003-07-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* config-ml.in: Partial sync with gcc-3.4's config-ml.in.
Add "autoconf-2.5x unquoting" hack.
2003-07-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* config.sub: Remove (Automatically added by automake, again).
* bootstrap: Reflect change above.
* configure.ac: Require automake >= 1.7.6.
2003-07-03 Joel Sherrill <joel@OARcorp.com>
* SUPPORT: Fix Mark Johannes' email address.
2003-07-03 Joel Sherrill <joel@OARcorp.com>
* VERSION: Updated to rtems-ss-20030703.