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

4.104.115
Last change on this file since 9f74843 was 67ed2a8, checked in by Joel Sherrill <joel.sherrill@…>, on 09/18/08 at 17:34:49

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

  • include/bsp.h: Remove unnecessary variables and EXTERN magic.
  • Property mode set to 100644
File size: 19.2 KB
Line 
12008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * include/bsp.h: Remove unnecessary variables and EXTERN magic.
4
52008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
6
7        * include/bsp.h: Remove unnecessary boilerplate comments.
8
92008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
10
11        * clock/ckinit.c, startup/bspstart.c: Remove unnecessary includes of
12        rtems/libcsupport.h and rtems/libio.h.
13
142008-09-05      Joel Sherrill <joel.sherrill@OARcorp.com>
15
16        * clock/ckinit.c: The Shared Memory Driver no longer requires the
17        special IOCTL in Clock_control. This was a hack which has existed
18        since before the Classic API Timer Manager was implemented. All
19        implementations of and references to Clock_control were removed.
20
212008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
22
23        * timer/timer.c: Convert to "bool".
24
252008-09-02      Ralf Corsépius <ralf.corsepius@rtems.org>
26
27        * clock/rtc.c, network/ne2000.c: Eliminate rtems_boolean.
28
292008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
30
31        * timer/timer.c: Eliminate empty function from every benchmark timer
32        driver. Fix spelling.
33
342008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
35
36        * timer/timer.c: Rename timer driver methods to follow RTEMS
37        programming conventions.
38
392008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
40
41        * clock/ckinit.c, startup/bspstart.c, timer/timer.c:
42        Add missing prototypes.
43
442008-05-23      Joel Sherrill <joel.sherrill@OARcorp.com>
45
46        * console/console.c: Eliminate copies of switches to convert termios
47        Bxxx constants to xxx as an integer. Use the shared
48        termios_baud_to_number() routine to do the same conversion.
49
502008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
51
52        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
53        Framework to ask the BSP where it has memory for the RTEMS Workspace
54        and C Program Heap. These collectively are referred to as work area.
55        If the BSP supports this, then it does not have to include code to
56        split the available memory between the two areas. This reduces the
57        amount of code in the BSP specific bspstart.c file. Additionally, the
58        shared framework can initialize the C Library, call
59        rtems_debug_enable(), and dirty the work area memory. Until most/all
60        BSPs support this new capability, if the BSP supports this, it should
61        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
62        When the transition is complete, this autoconf macro can be removed.
63
642008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
65
66        * Makefile.am: Rework to avoid .rel files.
67
682008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
69
70        * startup/bspstart.c: Refactored and renamed initialization routines to
71        rtems_initialize_data_structures, rtems_initialize_before_drivers,
72        rtems_initialize_device_drivers, and
73        rtems_initialize_start_multitasking. This opened the sequence up so
74        that bootcard() could provide a more robust and flexible framework
75        which is easier to explain and understand. This also lays the
76        groundwork for sharing the division of available memory between the
77        RTEMS workspace and heap and the C library initialization across all
78        BSPs.
79
802008-05-07      Joel Sherrill <joel.sherrill@OARcorp.com>
81
82        PR 649/bsps
83        * clock/ckinit.c, console/console.c: Add missing structure element.
84
852008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
86
87        * startup/linkcmds: Add wildcard to gcc_except_table section so
88        programs compiled with gcc 4.3.x can link.
89
902007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
91
92        * clock/ckinit.c, include/bsp.h, startup/bspstart.c: Eliminate copies
93        of the Configuration Table. Use the RTEMS provided accessor macros to
94        obtain configuration fields.
95
962007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
97
98        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
99        from CPU Table to Configuration Table. Eliminate CPU Table from all
100        ports. Delete references to CPU Table in all forms.
101
1022007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
103
104        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
105        Table fields to the Configuration Table. This included
106        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
107        do_zero_of_workspace, extra_mpci_receive_server_stack,
108        stack_allocate_hook, and stack_free_hook. As a side-effect of this
109        effort some multiprocessing code was made conditional and some style
110        clean up occurred.
111
1122007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
113
114        * startup/bspstart.c: Eliminate the interrupt_table_segment and
115        interrupt_table_offset fields in the i386 CPU Table since they are
116        never read.
117
1182007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
119
120        * startup/bspstart.c: Eliminate maximum_drivers configuration parameter
121        since it was used to configure a no longer used feature. Device names
122        are now part of the filesystem not in a table.
123
1242007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
125
126        * bsp_specs: Remove qrtems_debug.
127
1282006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
129
130        * network/ne2000.c: Use ioctl_command_t as arg in ioctl-functions.
131
1322006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
133
134        * configure.ac: New BUG-REPORT address.
135
1362006-11-15      Joel Sherrill <joel@OARcorp.com>
137
138        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
139        file and simplified initialization.
140
1412006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
142
143        * Makefile.am: Remove superfluous -DASM.
144
1452006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
146
147        * configure.ac: Require autoconf-2.60. Require automake-1.10.
148
1492006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
150
151        * configure.ac: Remove explicit ampolish3 support (now in
152        RTEMS_BSP_CONFIGURE).
153
1542006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
155
156        * configure.ac: Add ampolish3 support.
157        * Makefile.am: Add preinstall.am.
158
1592005-10-17      Ralf Corsepius <ralf.corsepius@rtems.org>
160
161        * Makefile.am: Add pci.rel.
162
1632005-10-17      Ralf Corsepius <ralf.corsepius@rtems.org>
164
165        * Makefile.am: Install/preinstall headers from ../../i386/shared.
166
1672005-09-19      Ralf Corsepius <ralf.corsepius@rtems.org>
168
169        * network/ne2000.c: Include <errno.h> instead of <sys/errno.h>.
170
1712005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
172
173        * include/bsp.h: New header guard.
174
1752005-05-06      Jennifer Averett <jennifer.averett@oarcorp.com>
176
177        * clock/ckinit.c, console/console.c, include/bsp.h, network/ne2000.c:
178        Moved irq.h to bsp subdirectory.
179
1802005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
181
182        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
183
1842005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
185
186        * Makefile.am: Remove build-variant support.
187
1882004-09-24      Ralf Corsepius <ralf.corsepius@rtems.org>
189
190        * configure.ac: Require automake > 1.9.
191
1922004-07-25      Joel Sherrill <joel@OARcorp.com>
193
194        * Makefile.am: Add -D__INSIDE_RTEMS_BSD_TCPIP_STACK__ for network.
195        * network/ne2000.c: Add include of <sys/errno.h>.
196
1972004-04-23      Ralf Corsepius <ralf.corsepius@rtems.org>
198
199        PR 610/bsps
200        * Makefile.am: Add include/tm27.h, Cosmetics.
201        * include/tm27.h: Final cosmetics.
202
2032004-04-22      Ralf Corsepius <ralf.corsepius@rtems.org>
204
205        * include/bsp.h: Split out tmtest27 support.
206        * include/tm27.h: New.
207
2082004-04-21      Ralf Corsepius <ralf.corsepius@rtems.org>
209
210        PR 613/bsps
211        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
212
2132004-04-21      Ralf Corsepius <ralf.corsepius@rtems.org>
214
215        PR 614/bsps
216        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
217
2182004-04-02      Ralf Corsepius <ralf.corsepius@rtems.org>
219
220        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
221        * timer/timerisr.S: Include <rtems/asm.h> instead of <asm.h>.
222
2232004-04-01      Ralf Corsepius <ralf.corsepius@rtems.org>
224
225        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
226        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
227        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
228
2292004-03-31      Ralf Corsepius <ralf.corsepius@rtems.org>
230
231        * clock/ckinit.c, clock/rtc.c, include/bsp.h, startup/bspstart.c,
232        timer/timer.c: Convert to using c99 fixed size types.
233
2342004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
235
236        * Makefile.am: Reflect changes to bsp.am.
237        Preinstall dist_project_lib*.
238
2392004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
240
241        * Makefile.am: Reflect changes to bsp.am.
242
2432004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
244
245        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
246
2472004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
248
249        * Makefile.am: Pickup files from ../../i386/shared instead of
250        ../shared. Reformat.
251
2522004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
253
254        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
255        network/Makefile.am, startup/Makefile.am, timer/Makefile.am,
256        wrapup/Makefile.am. Use automake compilation rules.
257        * clock/Makefile.am, console/Makefile.am, network/Makefile.am,
258        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am: Remove.
259        * configure.ac: Reflect changes above.
260
2612004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
262
263        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
264        Add RTEMS_PROG_CCAS.
265
2662004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
267
268        * Makefile.am: Add PREINSTALL_DIRS.
269        * wrapup/Makefile.am: Reflect changes to libcpu.
270
2712004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
272
273        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
274        Add PRE/TMPINSTALL_FILES to CLEANFILES.
275        * startup/Makefile.am: Ditto.
276
2772004-01-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
278
279        * start/Makefile.am: Remove.
280        * Makefile.am: Merge-in start/Makefile.am.
281        * configure.ac: Reflect changes above.
282
2832004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
284
285        * wrapup/Makefile.am: Eliminate $(LIB).
286        Use noinst_DATA to trigger building libbsp.a.
287
2882003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
289
290        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
291        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
292
2932003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
294
295        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
296        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
297
2982003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
299
300        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
301
3022003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
303
304        * wrapup/Makefile.am: Cosmetics.
305
3062003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
307
308        * start/Makefile.am: Misc cleanups and fixes.
309        * startup/Makefile.am: Misc cleanups and fixes.
310        * wrapup/Makefile.am: Misc cleanups and fixes.
311
3122003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
313
314        * Makefile.am: Add preinstallation dirstamp support.
315        * clock/Makefile.am: Cosmetics.
316        * console/Makefile.am: Cosmetics.
317        * network/Makefile.am: Cosmetics.
318        * startup/Makefile.am: Cosmetics.
319        * timer/Makefile.am: Cosmetics.
320        * wrapup/Makefile.am: Cosmetics.
321
3222003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
323
324        * clock/Makefile.am: Remove all-local: $(ARCH).
325        * console/Makefile.am: Remove all-local: $(ARCH).
326        * network/Makefile.am: Remove all-local: $(ARCH).
327        * start/Makefile.am: Remove all-local: $(ARCH).
328        * startup/Makefile.am: Remove all-local: $(ARCH).
329        * timer/Makefile.am: Remove all-local: $(ARCH).
330        * wrapup/Makefile.am: Remove all-local: $(ARCH).
331
3322003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
333
334        * Makefile.am: Merge-in include/Makefile.am.
335        Reflect changes to bsp.am.
336        * include/Makefile.am: Remove.
337        * configure.ac: Reflect changes above.
338
3392003-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
340
341        * bsp_specs: Remove *lib:.
342
3432003-09-04      Joel Sherrill <joel@OARcorp.com>
344
345        * clock/ckinit.c, clock/rtc.c, console/console.c, include/bsp.h,
346        include/coverhd.h, network/ne2000.c, start/80386ex.h,
347        start/80386ex.inc, start/macros.inc, start/start.S,
348        startup/bspstart.c, startup/linkcmds, startup/setvec.c,
349        timer/timer.c, timer/timerisr.S, tools/debug_ada/init.c,
350        tools/debug_c/init.c, tools/debug_c/serial_gdb.c,
351        tools/debug_c/system.h, tools/network_ada/listener/init.c,
352        tools/network_ada/tcprelay/init.c, tools/ts_1325_ada/init.c: URL for
353        license changed.
354
3552003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
356
357        * Makefile.am: Reflect having moved aclocal/.
358
3592003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
360
361        * Makefile.am: Reflect having moved automake/.
362        * clock/Makefile.am: Reflect having moved automake/.
363        * console/Makefile.am: Reflect having moved automake/.
364        * include/Makefile.am: Reflect having moved automake/.
365        * network/Makefile.am: Reflect having moved automake/.
366        * start/Makefile.am: Reflect having moved automake/.
367        * startup/Makefile.am: Reflect having moved automake/.
368        * timer/Makefile.am: Reflect having moved automake/.
369        * wrapup/Makefile.am: Reflect having moved automake/.
370
3712003-08-13      Joel Sherrill <joel@OARcorp.com>
372
373        PR 451/bsps
374        * startup/Makefile.am: Include shared i386 TTY driver in these BSPs.
375
3762003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
377
378        PR 452/bsps
379        * startup/Makefile.am: Remove USE_INIT_FINI.
380
3812003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
382
383        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
384
3852003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
386
387        PR 445/bsps
388        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
389        Remove cpp, old_cpp (now unused).
390
3912003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
392
393        * configure.ac: Remove AC_CONFIG_AUX_DIR.
394
3952003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
396
397        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
398
3992003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
400
401        * configure.ac: AC_PREREQ(2.57).
402
4032003-01-20      Joel Sherrill <joel@OARcorp.com>
404
405        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
406
4072002-12-19      Joel Sherrill <joel@OARcorp.com>
408
409        * console/console.c: Removed __assert() which conflicts with newlib.
410
4112002-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
412
413        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
414        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
415        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
416        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
417        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
418        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
419
4202002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
421
422        * start/Makefile.am: Use install-data-local to install startfile.
423
4242002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
425
426        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
427
4282002-11-04      Joel Sherrill <joel@OARcorp.com>
429
430        * console/console.c, network/ne2000.c: Removed warnings.
431
4322002-11-01      Joel Sherrill <joel@OARcorp.com>
433
434        * startup/bspstart.c: Removed warnings.
435
4362002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
437
438        * .cvsignore: Reformat.
439        Add autom4te*cache.
440        Remove autom4te.cache.
441
4422002-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
443
444        * configure.ac: Remove duplicate timer/Makefile in AC_CONFIG_FILES.
445
4462002-08-21      Joel Sherrill <joel@OARcorp.com>
447
448        * bsp_specs: Added support for -nostdlibs.
449
4502002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
451
452        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
453        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
454        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
455        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
456        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
457        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
458        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
459
4602002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
461
462        * start/Makefile.am: Eliminate PGM.
463        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
464
4652002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
466
467        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
468
4692002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
470
471        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
472        Remove $(OBJS) from all-local.
473
4742002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
475
476        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
477
4782001-05-17      Joel Sherrill <joel@OARcorp.com>
479
480        * startup/linkcmds: Per PR224, added wild card math to .rodata.
481
4822002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
483
484        * include/bsp.h: include <libcpu/cpu.h>.
485        * console/console.c: Remove unused variable console_open_count.
486
4872002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
488
489        * configure.ac:
490        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
491        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
492        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
493        * Makefile.am: Remove AUTOMAKE_OPTIONS.
494        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
495        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
496        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
497        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
498        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
499        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
500        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
501
5022002-03-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
503
504        * configure.ac: Remove stray ';', PR 139.
505
5062002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
507
508        * include/bsp.h: Include rtems/bspIo.h instead of bspIo.h.
509
5102001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
511
512        * bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu,
513        replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
514
5152001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
516
517        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
518
5192001-11-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
520
521        * configure.ac: Add RTEMS_BSPOPTS_*(LOAD_RTC_AT_START),
522        RTEMS_BSPOPTS_*(BSP_DEBUG), RTEMS_BSPOPTS_*(UARTDEBUG),
523        remove RTEMS_OUTPUT_BUILD_SUBDIRS.
524
5252001-10-12      Joel Sherrill <joel@OARcorp.com>
526
527        * startup/linkcmds: Fixed typo.
528
5292001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
530
531        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
532        * configure.in: Remove.
533        * configure.ac: New file, generated from configure.in by autoupdate.
534
5352001-09-27      Joel Sherrill <joel@OARcorp.com>
536
537        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
538
5392001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
540
541        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
542
5432001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
544
545        * configure.in: Add bspopts.h.
546        * include/.cvsignore: Add bspopts.h*, stamp-h*.
547        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
548        * include/bsp.h: Include bspopts.h.
549
5502001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
551
552        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
553
5542000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
555
556        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
557
5582000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
559
560        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
561
5622000-11-01      Joel Sherrill <joel@OARcorp.com>
563
564        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
565        and libcsupport.h moved from libc to lib/include/rtems and
566        now must be referenced as <rtems/XXX.h>.   Header file order
567        was cleaned up while doing this.
568
5692000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
570
571        * configure.in, Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
572        Switch to GNU canonicalization.
573
5742000-10-19      Joel Sherrill <joel@OARcorp.com>
575
576        * console/console.c: Invoke BSP_uart_init() with all arguments
577        now that it takes more parameters.
578
5792000-10-17      Joel Sherrill <joel@OARcorp.com>
580
581        * startup/Makefile.am: Added idt.c since it has been moved libcpu/i386
582        to libbsp/i386/shared/irq.
583
5842000-09-29      Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
585
586        * startup/linkcmds: Added lines so DWARF debug information
587        would be available.  Otherwise gdb complains that the offsets
588        for the debug info are incorrect and doesn't load the files.
589
5902000-09-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
591
592        * start/Makefile.am: Remove AM_CPPFLAGS and GAS_CODE16 conditional.
593        * startup/Makefile.am: Cleanup comments.
594
5952000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
596
597        * clock/Makefile.am, console/Makefile.am, network/Makefile.am,
598        start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
599        wrapup/Makefile.am: Include compile.am
600
6012000-08-10      Joel Sherrill <joel@OARcorp.com>
602
603        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.