source: rtems/c/src/lib/libbsp/i386/ts_386ex/ChangeLog @ d1be26b

4.104.115
Last change on this file since d1be26b was d1be26b, checked in by Joel Sherrill <joel.sherrill@…>, on 07/16/09 at 23:21:23

2009-07-16 Joel Sherrill <joel.sherrill@…>

  • configure.ac: Rename BSP_BOOTCARD_OPTIONS to RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs have the same options.
  • Property mode set to 100644
File size: 20.9 KB
Line 
12009-07-16      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
4        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
5        have the same options.
6
72009-07-01      Sebastian Huber <sebastian.huber@embedded-brains.de>
8
9        * Makefile.am, preinstall.am: Update for generic interrupt support.
10
112009-04-28      Chris Johns <chrisj@rtems.org>
12
13        * start/start.S: Update for boot_card command line change.
14
152008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
16
17        * bsp_specs: Move -e start from *link to *startfile to avoid warning
18        for undefined entry symbol when linking relocatables with binutils
19        2.19.
20
212008-09-30      Joel Sherrill <joel.sherrill@oarcorp.com>
22
23        * timer/timer.c: Eliminate uses of old benchmark timer names.
24
252008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
26
27        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
28        of building libbspstart.a, using automake-rules.
29
302008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
31
32        * Makefile.am: Eliminate *_SOURCES.
33
342008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
35
36        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
37        components.
38
392008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
40
41        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
42
432008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
44
45        * configure.ac: Make letting boot_card() handle work area allocation
46        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
47        BSP_BOOTCARD_OPTIONS.
48
492008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
50
51        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds: Use
52        top level shared bsp_get_work_area() implementation.
53
542008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
55
56        * include/bsp.h: Remove unnecessary variables and EXTERN magic.
57
582008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
59
60        * include/bsp.h: Remove unnecessary boilerplate comments.
61
622008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
63
64        * clock/ckinit.c, startup/bspstart.c: Remove unnecessary includes of
65        rtems/libcsupport.h and rtems/libio.h.
66
672008-09-05      Joel Sherrill <joel.sherrill@OARcorp.com>
68
69        * clock/ckinit.c: The Shared Memory Driver no longer requires the
70        special IOCTL in Clock_control. This was a hack which has existed
71        since before the Classic API Timer Manager was implemented. All
72        implementations of and references to Clock_control were removed.
73
742008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
75
76        * timer/timer.c: Convert to "bool".
77
782008-09-02      Ralf Corsépius <ralf.corsepius@rtems.org>
79
80        * clock/rtc.c, network/ne2000.c: Eliminate rtems_boolean.
81
822008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
83
84        * timer/timer.c: Eliminate empty function from every benchmark timer
85        driver. Fix spelling.
86
872008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
88
89        * timer/timer.c: Rename timer driver methods to follow RTEMS
90        programming conventions.
91
922008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
93
94        * clock/ckinit.c, startup/bspstart.c, timer/timer.c:
95        Add missing prototypes.
96
972008-05-23      Joel Sherrill <joel.sherrill@OARcorp.com>
98
99        * console/console.c: Eliminate copies of switches to convert termios
100        Bxxx constants to xxx as an integer. Use the shared
101        termios_baud_to_number() routine to do the same conversion.
102
1032008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
104
105        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
106        Framework to ask the BSP where it has memory for the RTEMS Workspace
107        and C Program Heap. These collectively are referred to as work area.
108        If the BSP supports this, then it does not have to include code to
109        split the available memory between the two areas. This reduces the
110        amount of code in the BSP specific bspstart.c file. Additionally, the
111        shared framework can initialize the C Library, call
112        rtems_debug_enable(), and dirty the work area memory. Until most/all
113        BSPs support this new capability, if the BSP supports this, it should
114        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
115        When the transition is complete, this autoconf macro can be removed.
116
1172008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
118
119        * Makefile.am: Rework to avoid .rel files.
120
1212008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
122
123        * startup/bspstart.c: Refactored and renamed initialization routines to
124        rtems_initialize_data_structures, rtems_initialize_before_drivers,
125        rtems_initialize_device_drivers, and
126        rtems_initialize_start_multitasking. This opened the sequence up so
127        that bootcard() could provide a more robust and flexible framework
128        which is easier to explain and understand. This also lays the
129        groundwork for sharing the division of available memory between the
130        RTEMS workspace and heap and the C library initialization across all
131        BSPs.
132
1332008-05-07      Joel Sherrill <joel.sherrill@OARcorp.com>
134
135        PR 649/bsps
136        * clock/ckinit.c, console/console.c: Add missing structure element.
137
1382008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
139
140        * startup/linkcmds: Add wildcard to gcc_except_table section so
141        programs compiled with gcc 4.3.x can link.
142
1432007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
144
145        * clock/ckinit.c, include/bsp.h, startup/bspstart.c: Eliminate copies
146        of the Configuration Table. Use the RTEMS provided accessor macros to
147        obtain configuration fields.
148
1492007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
150
151        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
152        from CPU Table to Configuration Table. Eliminate CPU Table from all
153        ports. Delete references to CPU Table in all forms.
154
1552007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
156
157        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
158        Table fields to the Configuration Table. This included
159        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
160        do_zero_of_workspace, extra_mpci_receive_server_stack,
161        stack_allocate_hook, and stack_free_hook. As a side-effect of this
162        effort some multiprocessing code was made conditional and some style
163        clean up occurred.
164
1652007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
166
167        * startup/bspstart.c: Eliminate the interrupt_table_segment and
168        interrupt_table_offset fields in the i386 CPU Table since they are
169        never read.
170
1712007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
172
173        * startup/bspstart.c: Eliminate maximum_drivers configuration parameter
174        since it was used to configure a no longer used feature. Device names
175        are now part of the filesystem not in a table.
176
1772007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
178
179        * bsp_specs: Remove qrtems_debug.
180
1812006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
182
183        * network/ne2000.c: Use ioctl_command_t as arg in ioctl-functions.
184
1852006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
186
187        * configure.ac: New BUG-REPORT address.
188
1892006-11-15      Joel Sherrill <joel@OARcorp.com>
190
191        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
192        file and simplified initialization.
193
1942006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
195
196        * Makefile.am: Remove superfluous -DASM.
197
1982006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
199
200        * configure.ac: Require autoconf-2.60. Require automake-1.10.
201
2022006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
203
204        * configure.ac: Remove explicit ampolish3 support (now in
205        RTEMS_BSP_CONFIGURE).
206
2072006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
208
209        * configure.ac: Add ampolish3 support.
210        * Makefile.am: Add preinstall.am.
211
2122005-10-17      Ralf Corsepius <ralf.corsepius@rtems.org>
213
214        * Makefile.am: Add pci.rel.
215
2162005-10-17      Ralf Corsepius <ralf.corsepius@rtems.org>
217
218        * Makefile.am: Install/preinstall headers from ../../i386/shared.
219
2202005-09-19      Ralf Corsepius <ralf.corsepius@rtems.org>
221
222        * network/ne2000.c: Include <errno.h> instead of <sys/errno.h>.
223
2242005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
225
226        * include/bsp.h: New header guard.
227
2282005-05-06      Jennifer Averett <jennifer.averett@oarcorp.com>
229
230        * clock/ckinit.c, console/console.c, include/bsp.h, network/ne2000.c:
231        Moved irq.h to bsp subdirectory.
232
2332005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
234
235        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
236
2372005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
238
239        * Makefile.am: Remove build-variant support.
240
2412004-09-24      Ralf Corsepius <ralf.corsepius@rtems.org>
242
243        * configure.ac: Require automake > 1.9.
244
2452004-07-25      Joel Sherrill <joel@OARcorp.com>
246
247        * Makefile.am: Add -D__INSIDE_RTEMS_BSD_TCPIP_STACK__ for network.
248        * network/ne2000.c: Add include of <sys/errno.h>.
249
2502004-04-23      Ralf Corsepius <ralf.corsepius@rtems.org>
251
252        PR 610/bsps
253        * Makefile.am: Add include/tm27.h, Cosmetics.
254        * include/tm27.h: Final cosmetics.
255
2562004-04-22      Ralf Corsepius <ralf.corsepius@rtems.org>
257
258        * include/bsp.h: Split out tmtest27 support.
259        * include/tm27.h: New.
260
2612004-04-21      Ralf Corsepius <ralf.corsepius@rtems.org>
262
263        PR 613/bsps
264        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
265
2662004-04-21      Ralf Corsepius <ralf.corsepius@rtems.org>
267
268        PR 614/bsps
269        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
270
2712004-04-02      Ralf Corsepius <ralf.corsepius@rtems.org>
272
273        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
274        * timer/timerisr.S: Include <rtems/asm.h> instead of <asm.h>.
275
2762004-04-01      Ralf Corsepius <ralf.corsepius@rtems.org>
277
278        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
279        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
280        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
281
2822004-03-31      Ralf Corsepius <ralf.corsepius@rtems.org>
283
284        * clock/ckinit.c, clock/rtc.c, include/bsp.h, startup/bspstart.c,
285        timer/timer.c: Convert to using c99 fixed size types.
286
2872004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
288
289        * Makefile.am: Reflect changes to bsp.am.
290        Preinstall dist_project_lib*.
291
2922004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
293
294        * Makefile.am: Reflect changes to bsp.am.
295
2962004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
297
298        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
299
3002004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
301
302        * Makefile.am: Pickup files from ../../i386/shared instead of
303        ../shared. Reformat.
304
3052004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
306
307        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
308        network/Makefile.am, startup/Makefile.am, timer/Makefile.am,
309        wrapup/Makefile.am. Use automake compilation rules.
310        * clock/Makefile.am, console/Makefile.am, network/Makefile.am,
311        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am: Remove.
312        * configure.ac: Reflect changes above.
313
3142004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
315
316        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
317        Add RTEMS_PROG_CCAS.
318
3192004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
320
321        * Makefile.am: Add PREINSTALL_DIRS.
322        * wrapup/Makefile.am: Reflect changes to libcpu.
323
3242004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
325
326        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
327        Add PRE/TMPINSTALL_FILES to CLEANFILES.
328        * startup/Makefile.am: Ditto.
329
3302004-01-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
331
332        * start/Makefile.am: Remove.
333        * Makefile.am: Merge-in start/Makefile.am.
334        * configure.ac: Reflect changes above.
335
3362004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
337
338        * wrapup/Makefile.am: Eliminate $(LIB).
339        Use noinst_DATA to trigger building libbsp.a.
340
3412003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
342
343        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
344        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
345
3462003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
347
348        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
349        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
350
3512003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
352
353        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
354
3552003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
356
357        * wrapup/Makefile.am: Cosmetics.
358
3592003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
360
361        * start/Makefile.am: Misc cleanups and fixes.
362        * startup/Makefile.am: Misc cleanups and fixes.
363        * wrapup/Makefile.am: Misc cleanups and fixes.
364
3652003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
366
367        * Makefile.am: Add preinstallation dirstamp support.
368        * clock/Makefile.am: Cosmetics.
369        * console/Makefile.am: Cosmetics.
370        * network/Makefile.am: Cosmetics.
371        * startup/Makefile.am: Cosmetics.
372        * timer/Makefile.am: Cosmetics.
373        * wrapup/Makefile.am: Cosmetics.
374
3752003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
376
377        * clock/Makefile.am: Remove all-local: $(ARCH).
378        * console/Makefile.am: Remove all-local: $(ARCH).
379        * network/Makefile.am: Remove all-local: $(ARCH).
380        * start/Makefile.am: Remove all-local: $(ARCH).
381        * startup/Makefile.am: Remove all-local: $(ARCH).
382        * timer/Makefile.am: Remove all-local: $(ARCH).
383        * wrapup/Makefile.am: Remove all-local: $(ARCH).
384
3852003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
386
387        * Makefile.am: Merge-in include/Makefile.am.
388        Reflect changes to bsp.am.
389        * include/Makefile.am: Remove.
390        * configure.ac: Reflect changes above.
391
3922003-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
393
394        * bsp_specs: Remove *lib:.
395
3962003-09-04      Joel Sherrill <joel@OARcorp.com>
397
398        * clock/ckinit.c, clock/rtc.c, console/console.c, include/bsp.h,
399        include/coverhd.h, network/ne2000.c, start/80386ex.h,
400        start/80386ex.inc, start/macros.inc, start/start.S,
401        startup/bspstart.c, startup/linkcmds, startup/setvec.c,
402        timer/timer.c, timer/timerisr.S, tools/debug_ada/init.c,
403        tools/debug_c/init.c, tools/debug_c/serial_gdb.c,
404        tools/debug_c/system.h, tools/network_ada/listener/init.c,
405        tools/network_ada/tcprelay/init.c, tools/ts_1325_ada/init.c: URL for
406        license changed.
407
4082003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
409
410        * Makefile.am: Reflect having moved aclocal/.
411
4122003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
413
414        * Makefile.am: Reflect having moved automake/.
415        * clock/Makefile.am: Reflect having moved automake/.
416        * console/Makefile.am: Reflect having moved automake/.
417        * include/Makefile.am: Reflect having moved automake/.
418        * network/Makefile.am: Reflect having moved automake/.
419        * start/Makefile.am: Reflect having moved automake/.
420        * startup/Makefile.am: Reflect having moved automake/.
421        * timer/Makefile.am: Reflect having moved automake/.
422        * wrapup/Makefile.am: Reflect having moved automake/.
423
4242003-08-13      Joel Sherrill <joel@OARcorp.com>
425
426        PR 451/bsps
427        * startup/Makefile.am: Include shared i386 TTY driver in these BSPs.
428
4292003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
430
431        PR 452/bsps
432        * startup/Makefile.am: Remove USE_INIT_FINI.
433
4342003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
435
436        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
437
4382003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
439
440        PR 445/bsps
441        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
442        Remove cpp, old_cpp (now unused).
443
4442003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
445
446        * configure.ac: Remove AC_CONFIG_AUX_DIR.
447
4482003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
449
450        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
451
4522003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
453
454        * configure.ac: AC_PREREQ(2.57).
455
4562003-01-20      Joel Sherrill <joel@OARcorp.com>
457
458        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
459
4602002-12-19      Joel Sherrill <joel@OARcorp.com>
461
462        * console/console.c: Removed __assert() which conflicts with newlib.
463
4642002-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
465
466        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
467        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
468        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
469        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
470        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
471        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
472
4732002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
474
475        * start/Makefile.am: Use install-data-local to install startfile.
476
4772002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
478
479        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
480
4812002-11-04      Joel Sherrill <joel@OARcorp.com>
482
483        * console/console.c, network/ne2000.c: Removed warnings.
484
4852002-11-01      Joel Sherrill <joel@OARcorp.com>
486
487        * startup/bspstart.c: Removed warnings.
488
4892002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
490
491        * .cvsignore: Reformat.
492        Add autom4te*cache.
493        Remove autom4te.cache.
494
4952002-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
496
497        * configure.ac: Remove duplicate timer/Makefile in AC_CONFIG_FILES.
498
4992002-08-21      Joel Sherrill <joel@OARcorp.com>
500
501        * bsp_specs: Added support for -nostdlibs.
502
5032002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
504
505        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
506        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
507        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
508        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
509        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
510        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
511        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
512
5132002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
514
515        * start/Makefile.am: Eliminate PGM.
516        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
517
5182002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
519
520        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
521
5222002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
523
524        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
525        Remove $(OBJS) from all-local.
526
5272002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
528
529        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
530
5312001-05-17      Joel Sherrill <joel@OARcorp.com>
532
533        * startup/linkcmds: Per PR224, added wild card math to .rodata.
534
5352002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
536
537        * include/bsp.h: include <libcpu/cpu.h>.
538        * console/console.c: Remove unused variable console_open_count.
539
5402002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
541
542        * configure.ac:
543        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
544        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
545        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
546        * Makefile.am: Remove AUTOMAKE_OPTIONS.
547        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
548        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
549        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
550        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
551        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
552        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
553        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
554
5552002-03-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
556
557        * configure.ac: Remove stray ';', PR 139.
558
5592002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
560
561        * include/bsp.h: Include rtems/bspIo.h instead of bspIo.h.
562
5632001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
564
565        * bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu,
566        replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
567
5682001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
569
570        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
571
5722001-11-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
573
574        * configure.ac: Add RTEMS_BSPOPTS_*(LOAD_RTC_AT_START),
575        RTEMS_BSPOPTS_*(BSP_DEBUG), RTEMS_BSPOPTS_*(UARTDEBUG),
576        remove RTEMS_OUTPUT_BUILD_SUBDIRS.
577
5782001-10-12      Joel Sherrill <joel@OARcorp.com>
579
580        * startup/linkcmds: Fixed typo.
581
5822001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
583
584        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
585        * configure.in: Remove.
586        * configure.ac: New file, generated from configure.in by autoupdate.
587
5882001-09-27      Joel Sherrill <joel@OARcorp.com>
589
590        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
591
5922001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
593
594        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
595
5962001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
597
598        * configure.in: Add bspopts.h.
599        * include/.cvsignore: Add bspopts.h*, stamp-h*.
600        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
601        * include/bsp.h: Include bspopts.h.
602
6032001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
604
605        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
606
6072000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
608
609        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
610
6112000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
612
613        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
614
6152000-11-01      Joel Sherrill <joel@OARcorp.com>
616
617        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
618        and libcsupport.h moved from libc to lib/include/rtems and
619        now must be referenced as <rtems/XXX.h>.   Header file order
620        was cleaned up while doing this.
621
6222000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
623
624        * configure.in, Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
625        Switch to GNU canonicalization.
626
6272000-10-19      Joel Sherrill <joel@OARcorp.com>
628
629        * console/console.c: Invoke BSP_uart_init() with all arguments
630        now that it takes more parameters.
631
6322000-10-17      Joel Sherrill <joel@OARcorp.com>
633
634        * startup/Makefile.am: Added idt.c since it has been moved libcpu/i386
635        to libbsp/i386/shared/irq.
636
6372000-09-29      Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
638
639        * startup/linkcmds: Added lines so DWARF debug information
640        would be available.  Otherwise gdb complains that the offsets
641        for the debug info are incorrect and doesn't load the files.
642
6432000-09-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
644
645        * start/Makefile.am: Remove AM_CPPFLAGS and GAS_CODE16 conditional.
646        * startup/Makefile.am: Cleanup comments.
647
6482000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
649
650        * clock/Makefile.am, console/Makefile.am, network/Makefile.am,
651        start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
652        wrapup/Makefile.am: Include compile.am
653
6542000-08-10      Joel Sherrill <joel@OARcorp.com>
655
656        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.