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

4.104.114.95
Last change on this file since 34ef6c7 was 34ef6c7, checked in by Joel Sherrill <joel.sherrill@…>, on 09/05/08 at 22:06:51

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

  • clock/ckinit.c: The Shared Memory Driver no longer requires the special IOCTL in Clock_control. This was a hack which has existed since before the Classic API Timer Manager was implemented. All implementations of and references to Clock_control were removed.
  • Property mode set to 100644
File size: 18.9 KB
Line 
12008-09-05      Joel Sherrill <joel.sherrill@OARcorp.com>
2
3        * clock/ckinit.c: The Shared Memory Driver no longer requires the
4        special IOCTL in Clock_control. This was a hack which has existed
5        since before the Classic API Timer Manager was implemented. All
6        implementations of and references to Clock_control were removed.
7
82008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
9
10        * timer/timer.c: Convert to "bool".
11
122008-09-02      Ralf Corsépius <ralf.corsepius@rtems.org>
13
14        * clock/rtc.c, network/ne2000.c: Eliminate rtems_boolean.
15
162008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
17
18        * timer/timer.c: Eliminate empty function from every benchmark timer
19        driver. Fix spelling.
20
212008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
22
23        * timer/timer.c: Rename timer driver methods to follow RTEMS
24        programming conventions.
25
262008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
27
28        * clock/ckinit.c, startup/bspstart.c, timer/timer.c:
29        Add missing prototypes.
30
312008-05-23      Joel Sherrill <joel.sherrill@OARcorp.com>
32
33        * console/console.c: Eliminate copies of switches to convert termios
34        Bxxx constants to xxx as an integer. Use the shared
35        termios_baud_to_number() routine to do the same conversion.
36
372008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
38
39        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
40        Framework to ask the BSP where it has memory for the RTEMS Workspace
41        and C Program Heap. These collectively are referred to as work area.
42        If the BSP supports this, then it does not have to include code to
43        split the available memory between the two areas. This reduces the
44        amount of code in the BSP specific bspstart.c file. Additionally, the
45        shared framework can initialize the C Library, call
46        rtems_debug_enable(), and dirty the work area memory. Until most/all
47        BSPs support this new capability, if the BSP supports this, it should
48        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
49        When the transition is complete, this autoconf macro can be removed.
50
512008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
52
53        * Makefile.am: Rework to avoid .rel files.
54
552008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
56
57        * startup/bspstart.c: Refactored and renamed initialization routines to
58        rtems_initialize_data_structures, rtems_initialize_before_drivers,
59        rtems_initialize_device_drivers, and
60        rtems_initialize_start_multitasking. This opened the sequence up so
61        that bootcard() could provide a more robust and flexible framework
62        which is easier to explain and understand. This also lays the
63        groundwork for sharing the division of available memory between the
64        RTEMS workspace and heap and the C library initialization across all
65        BSPs.
66
672008-05-07      Joel Sherrill <joel.sherrill@OARcorp.com>
68
69        PR 649/bsps
70        * clock/ckinit.c, console/console.c: Add missing structure element.
71
722008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
73
74        * startup/linkcmds: Add wildcard to gcc_except_table section so
75        programs compiled with gcc 4.3.x can link.
76
772007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
78
79        * clock/ckinit.c, include/bsp.h, startup/bspstart.c: Eliminate copies
80        of the Configuration Table. Use the RTEMS provided accessor macros to
81        obtain configuration fields.
82
832007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
84
85        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
86        from CPU Table to Configuration Table. Eliminate CPU Table from all
87        ports. Delete references to CPU Table in all forms.
88
892007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
90
91        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
92        Table fields to the Configuration Table. This included
93        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
94        do_zero_of_workspace, extra_mpci_receive_server_stack,
95        stack_allocate_hook, and stack_free_hook. As a side-effect of this
96        effort some multiprocessing code was made conditional and some style
97        clean up occurred.
98
992007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
100
101        * startup/bspstart.c: Eliminate the interrupt_table_segment and
102        interrupt_table_offset fields in the i386 CPU Table since they are
103        never read.
104
1052007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
106
107        * startup/bspstart.c: Eliminate maximum_drivers configuration parameter
108        since it was used to configure a no longer used feature. Device names
109        are now part of the filesystem not in a table.
110
1112007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
112
113        * bsp_specs: Remove qrtems_debug.
114
1152006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
116
117        * network/ne2000.c: Use ioctl_command_t as arg in ioctl-functions.
118
1192006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
120
121        * configure.ac: New BUG-REPORT address.
122
1232006-11-15      Joel Sherrill <joel@OARcorp.com>
124
125        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
126        file and simplified initialization.
127
1282006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
129
130        * Makefile.am: Remove superfluous -DASM.
131
1322006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
133
134        * configure.ac: Require autoconf-2.60. Require automake-1.10.
135
1362006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
137
138        * configure.ac: Remove explicit ampolish3 support (now in
139        RTEMS_BSP_CONFIGURE).
140
1412006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
142
143        * configure.ac: Add ampolish3 support.
144        * Makefile.am: Add preinstall.am.
145
1462005-10-17      Ralf Corsepius <ralf.corsepius@rtems.org>
147
148        * Makefile.am: Add pci.rel.
149
1502005-10-17      Ralf Corsepius <ralf.corsepius@rtems.org>
151
152        * Makefile.am: Install/preinstall headers from ../../i386/shared.
153
1542005-09-19      Ralf Corsepius <ralf.corsepius@rtems.org>
155
156        * network/ne2000.c: Include <errno.h> instead of <sys/errno.h>.
157
1582005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
159
160        * include/bsp.h: New header guard.
161
1622005-05-06      Jennifer Averett <jennifer.averett@oarcorp.com>
163
164        * clock/ckinit.c, console/console.c, include/bsp.h, network/ne2000.c:
165        Moved irq.h to bsp subdirectory.
166
1672005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
168
169        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
170
1712005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
172
173        * Makefile.am: Remove build-variant support.
174
1752004-09-24      Ralf Corsepius <ralf.corsepius@rtems.org>
176
177        * configure.ac: Require automake > 1.9.
178
1792004-07-25      Joel Sherrill <joel@OARcorp.com>
180
181        * Makefile.am: Add -D__INSIDE_RTEMS_BSD_TCPIP_STACK__ for network.
182        * network/ne2000.c: Add include of <sys/errno.h>.
183
1842004-04-23      Ralf Corsepius <ralf.corsepius@rtems.org>
185
186        PR 610/bsps
187        * Makefile.am: Add include/tm27.h, Cosmetics.
188        * include/tm27.h: Final cosmetics.
189
1902004-04-22      Ralf Corsepius <ralf.corsepius@rtems.org>
191
192        * include/bsp.h: Split out tmtest27 support.
193        * include/tm27.h: New.
194
1952004-04-21      Ralf Corsepius <ralf.corsepius@rtems.org>
196
197        PR 613/bsps
198        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
199
2002004-04-21      Ralf Corsepius <ralf.corsepius@rtems.org>
201
202        PR 614/bsps
203        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
204
2052004-04-02      Ralf Corsepius <ralf.corsepius@rtems.org>
206
207        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
208        * timer/timerisr.S: Include <rtems/asm.h> instead of <asm.h>.
209
2102004-04-01      Ralf Corsepius <ralf.corsepius@rtems.org>
211
212        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
213        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
214        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
215
2162004-03-31      Ralf Corsepius <ralf.corsepius@rtems.org>
217
218        * clock/ckinit.c, clock/rtc.c, include/bsp.h, startup/bspstart.c,
219        timer/timer.c: Convert to using c99 fixed size types.
220
2212004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
222
223        * Makefile.am: Reflect changes to bsp.am.
224        Preinstall dist_project_lib*.
225
2262004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
227
228        * Makefile.am: Reflect changes to bsp.am.
229
2302004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
231
232        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
233
2342004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
235
236        * Makefile.am: Pickup files from ../../i386/shared instead of
237        ../shared. Reformat.
238
2392004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
240
241        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
242        network/Makefile.am, startup/Makefile.am, timer/Makefile.am,
243        wrapup/Makefile.am. Use automake compilation rules.
244        * clock/Makefile.am, console/Makefile.am, network/Makefile.am,
245        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am: Remove.
246        * configure.ac: Reflect changes above.
247
2482004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
249
250        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
251        Add RTEMS_PROG_CCAS.
252
2532004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
254
255        * Makefile.am: Add PREINSTALL_DIRS.
256        * wrapup/Makefile.am: Reflect changes to libcpu.
257
2582004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
259
260        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
261        Add PRE/TMPINSTALL_FILES to CLEANFILES.
262        * startup/Makefile.am: Ditto.
263
2642004-01-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
265
266        * start/Makefile.am: Remove.
267        * Makefile.am: Merge-in start/Makefile.am.
268        * configure.ac: Reflect changes above.
269
2702004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
271
272        * wrapup/Makefile.am: Eliminate $(LIB).
273        Use noinst_DATA to trigger building libbsp.a.
274
2752003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
276
277        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
278        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
279
2802003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
281
282        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
283        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
284
2852003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
286
287        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
288
2892003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
290
291        * wrapup/Makefile.am: Cosmetics.
292
2932003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
294
295        * start/Makefile.am: Misc cleanups and fixes.
296        * startup/Makefile.am: Misc cleanups and fixes.
297        * wrapup/Makefile.am: Misc cleanups and fixes.
298
2992003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
300
301        * Makefile.am: Add preinstallation dirstamp support.
302        * clock/Makefile.am: Cosmetics.
303        * console/Makefile.am: Cosmetics.
304        * network/Makefile.am: Cosmetics.
305        * startup/Makefile.am: Cosmetics.
306        * timer/Makefile.am: Cosmetics.
307        * wrapup/Makefile.am: Cosmetics.
308
3092003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
310
311        * clock/Makefile.am: Remove all-local: $(ARCH).
312        * console/Makefile.am: Remove all-local: $(ARCH).
313        * network/Makefile.am: Remove all-local: $(ARCH).
314        * start/Makefile.am: Remove all-local: $(ARCH).
315        * startup/Makefile.am: Remove all-local: $(ARCH).
316        * timer/Makefile.am: Remove all-local: $(ARCH).
317        * wrapup/Makefile.am: Remove all-local: $(ARCH).
318
3192003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
320
321        * Makefile.am: Merge-in include/Makefile.am.
322        Reflect changes to bsp.am.
323        * include/Makefile.am: Remove.
324        * configure.ac: Reflect changes above.
325
3262003-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
327
328        * bsp_specs: Remove *lib:.
329
3302003-09-04      Joel Sherrill <joel@OARcorp.com>
331
332        * clock/ckinit.c, clock/rtc.c, console/console.c, include/bsp.h,
333        include/coverhd.h, network/ne2000.c, start/80386ex.h,
334        start/80386ex.inc, start/macros.inc, start/start.S,
335        startup/bspstart.c, startup/linkcmds, startup/setvec.c,
336        timer/timer.c, timer/timerisr.S, tools/debug_ada/init.c,
337        tools/debug_c/init.c, tools/debug_c/serial_gdb.c,
338        tools/debug_c/system.h, tools/network_ada/listener/init.c,
339        tools/network_ada/tcprelay/init.c, tools/ts_1325_ada/init.c: URL for
340        license changed.
341
3422003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
343
344        * Makefile.am: Reflect having moved aclocal/.
345
3462003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
347
348        * Makefile.am: Reflect having moved automake/.
349        * clock/Makefile.am: Reflect having moved automake/.
350        * console/Makefile.am: Reflect having moved automake/.
351        * include/Makefile.am: Reflect having moved automake/.
352        * network/Makefile.am: Reflect having moved automake/.
353        * start/Makefile.am: Reflect having moved automake/.
354        * startup/Makefile.am: Reflect having moved automake/.
355        * timer/Makefile.am: Reflect having moved automake/.
356        * wrapup/Makefile.am: Reflect having moved automake/.
357
3582003-08-13      Joel Sherrill <joel@OARcorp.com>
359
360        PR 451/bsps
361        * startup/Makefile.am: Include shared i386 TTY driver in these BSPs.
362
3632003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
364
365        PR 452/bsps
366        * startup/Makefile.am: Remove USE_INIT_FINI.
367
3682003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
369
370        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
371
3722003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
373
374        PR 445/bsps
375        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
376        Remove cpp, old_cpp (now unused).
377
3782003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
379
380        * configure.ac: Remove AC_CONFIG_AUX_DIR.
381
3822003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
383
384        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
385
3862003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
387
388        * configure.ac: AC_PREREQ(2.57).
389
3902003-01-20      Joel Sherrill <joel@OARcorp.com>
391
392        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
393
3942002-12-19      Joel Sherrill <joel@OARcorp.com>
395
396        * console/console.c: Removed __assert() which conflicts with newlib.
397
3982002-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
399
400        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
401        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
402        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
403        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
404        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
405        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
406
4072002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
408
409        * start/Makefile.am: Use install-data-local to install startfile.
410
4112002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
412
413        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
414
4152002-11-04      Joel Sherrill <joel@OARcorp.com>
416
417        * console/console.c, network/ne2000.c: Removed warnings.
418
4192002-11-01      Joel Sherrill <joel@OARcorp.com>
420
421        * startup/bspstart.c: Removed warnings.
422
4232002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
424
425        * .cvsignore: Reformat.
426        Add autom4te*cache.
427        Remove autom4te.cache.
428
4292002-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
430
431        * configure.ac: Remove duplicate timer/Makefile in AC_CONFIG_FILES.
432
4332002-08-21      Joel Sherrill <joel@OARcorp.com>
434
435        * bsp_specs: Added support for -nostdlibs.
436
4372002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
438
439        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
440        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
441        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
442        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
443        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
444        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
445        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
446
4472002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
448
449        * start/Makefile.am: Eliminate PGM.
450        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
451
4522002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
453
454        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
455
4562002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
457
458        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
459        Remove $(OBJS) from all-local.
460
4612002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
462
463        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
464
4652001-05-17      Joel Sherrill <joel@OARcorp.com>
466
467        * startup/linkcmds: Per PR224, added wild card math to .rodata.
468
4692002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
470
471        * include/bsp.h: include <libcpu/cpu.h>.
472        * console/console.c: Remove unused variable console_open_count.
473
4742002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
475
476        * configure.ac:
477        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
478        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
479        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
480        * Makefile.am: Remove AUTOMAKE_OPTIONS.
481        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
482        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
483        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
484        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
485        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
486        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
487        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
488
4892002-03-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
490
491        * configure.ac: Remove stray ';', PR 139.
492
4932002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
494
495        * include/bsp.h: Include rtems/bspIo.h instead of bspIo.h.
496
4972001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
498
499        * bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu,
500        replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
501
5022001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
503
504        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
505
5062001-11-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
507
508        * configure.ac: Add RTEMS_BSPOPTS_*(LOAD_RTC_AT_START),
509        RTEMS_BSPOPTS_*(BSP_DEBUG), RTEMS_BSPOPTS_*(UARTDEBUG),
510        remove RTEMS_OUTPUT_BUILD_SUBDIRS.
511
5122001-10-12      Joel Sherrill <joel@OARcorp.com>
513
514        * startup/linkcmds: Fixed typo.
515
5162001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
517
518        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
519        * configure.in: Remove.
520        * configure.ac: New file, generated from configure.in by autoupdate.
521
5222001-09-27      Joel Sherrill <joel@OARcorp.com>
523
524        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
525
5262001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
527
528        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
529
5302001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
531
532        * configure.in: Add bspopts.h.
533        * include/.cvsignore: Add bspopts.h*, stamp-h*.
534        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
535        * include/bsp.h: Include bspopts.h.
536
5372001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
538
539        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
540
5412000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
542
543        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
544
5452000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
546
547        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
548
5492000-11-01      Joel Sherrill <joel@OARcorp.com>
550
551        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
552        and libcsupport.h moved from libc to lib/include/rtems and
553        now must be referenced as <rtems/XXX.h>.   Header file order
554        was cleaned up while doing this.
555
5562000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
557
558        * configure.in, Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
559        Switch to GNU canonicalization.
560
5612000-10-19      Joel Sherrill <joel@OARcorp.com>
562
563        * console/console.c: Invoke BSP_uart_init() with all arguments
564        now that it takes more parameters.
565
5662000-10-17      Joel Sherrill <joel@OARcorp.com>
567
568        * startup/Makefile.am: Added idt.c since it has been moved libcpu/i386
569        to libbsp/i386/shared/irq.
570
5712000-09-29      Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
572
573        * startup/linkcmds: Added lines so DWARF debug information
574        would be available.  Otherwise gdb complains that the offsets
575        for the debug info are incorrect and doesn't load the files.
576
5772000-09-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
578
579        * start/Makefile.am: Remove AM_CPPFLAGS and GAS_CODE16 conditional.
580        * startup/Makefile.am: Cleanup comments.
581
5822000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
583
584        * clock/Makefile.am, console/Makefile.am, network/Makefile.am,
585        start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
586        wrapup/Makefile.am: Include compile.am
587
5882000-08-10      Joel Sherrill <joel@OARcorp.com>
589
590        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.