source: rtems/c/src/lib/libbsp/i386/i386ex/ChangeLog @ 3a261b9b

4.104.115
Last change on this file since 3a261b9b was 3a261b9b, checked in by Joel Sherrill <joel.sherrill@…>, on 09/18/08 at 20:42:46

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

  • Makefile.am: Add use of shared bsppost.c
  • Property mode set to 100644
File size: 19.9 KB
Line 
12008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * Makefile.am: Add use of shared bsppost.c
4
52008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
6
7        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds: Use
8        top level shared bsp_get_work_area() implementation.
9
102008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
11
12        * include/bsp.h: Remove unnecessary variables and EXTERN magic.
13
142008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
15
16        * include/bsp.h: Remove unnecessary boilerplate comments.
17
182008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
19
20        * clock/ckinit.c, startup/bspstart.c: Remove unnecessary includes of
21        rtems/libcsupport.h and rtems/libio.h.
22
232008-09-05      Joel Sherrill <joel.sherrill@OARcorp.com>
24
25        * clock/ckinit.c: The Shared Memory Driver no longer requires the
26        special IOCTL in Clock_control. This was a hack which has existed
27        since before the Classic API Timer Manager was implemented. All
28        implementations of and references to Clock_control were removed.
29
302008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
31
32        * timer/timer.c: Convert to "bool".
33
342008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
35
36        * timer/timer.c: Eliminate empty function from every benchmark timer
37        driver. Fix spelling.
38
392008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
40
41        * timer/timer.c: Rename timer driver methods to follow RTEMS
42        programming conventions.
43
442008-08-16      Ralf Corsépius <ralf.corsepius@rtems.org>
45
46        * timer/timer.c: Add missing prototypes.
47
482008-05-23      Joel Sherrill <joel.sherrill@OARcorp.com>
49
50        * console/console.c: Eliminate copies of switches to convert termios
51        Bxxx constants to xxx as an integer. Use the shared
52        termios_baud_to_number() routine to do the same conversion.
53
542008-05-15      Joel Sherrill <joel.sherrill@oarcorp.com>
55
56        * network/network.c: Eliminate patterns that look like CVS conflict
57        markers.
58
592008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
60
61        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
62        Framework to ask the BSP where it has memory for the RTEMS Workspace
63        and C Program Heap. These collectively are referred to as work area.
64        If the BSP supports this, then it does not have to include code to
65        split the available memory between the two areas. This reduces the
66        amount of code in the BSP specific bspstart.c file. Additionally, the
67        shared framework can initialize the C Library, call
68        rtems_debug_enable(), and dirty the work area memory. Until most/all
69        BSPs support this new capability, if the BSP supports this, it should
70        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
71        When the transition is complete, this autoconf macro can be removed.
72
732008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
74
75        * Makefile.am: Rework to avoid .rel files.
76
772008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
78
79        * startup/bspstart.c: Refactored and renamed initialization routines to
80        rtems_initialize_data_structures, rtems_initialize_before_drivers,
81        rtems_initialize_device_drivers, and
82        rtems_initialize_start_multitasking. This opened the sequence up so
83        that bootcard() could provide a more robust and flexible framework
84        which is easier to explain and understand. This also lays the
85        groundwork for sharing the division of available memory between the
86        RTEMS workspace and heap and the C library initialization across all
87        BSPs.
88
892008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
90
91        * startup/linkcmds: Add wildcard to gcc_except_table section so
92        programs compiled with gcc 4.3.x can link.
93
942007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
95
96        * clock/ckinit.c, include/bsp.h, startup/bspstart.c: Eliminate copies
97        of the Configuration Table. Use the RTEMS provided accessor macros to
98        obtain configuration fields.
99
1002007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
101
102        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
103        from CPU Table to Configuration Table. Eliminate CPU Table from all
104        ports. Delete references to CPU Table in all forms.
105
1062007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
107
108        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
109        Table fields to the Configuration Table. This included
110        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
111        do_zero_of_workspace, extra_mpci_receive_server_stack,
112        stack_allocate_hook, and stack_free_hook. As a side-effect of this
113        effort some multiprocessing code was made conditional and some style
114        clean up occurred.
115
1162007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
117
118        * startup/bspstart.c: Eliminate the interrupt_table_segment and
119        interrupt_table_offset fields in the i386 CPU Table since they are
120        never read.
121
1222007-05-03      Joel Sherrill <joel@OARcorp.com>
123
124        * startup/linkcmds: Handle .data.* sections
125
1262007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
127
128        * bsp_specs: Remove qrtems_debug.
129
1302006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
131
132        * network/network.c (uti596_ioctl): Use ioctl_command_t.
133
1342006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
135
136        * configure.ac: New BUG-REPORT address.
137
1382006-11-15      Joel Sherrill <joel@OARcorp.com>
139
140        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
141        file and simplified initialization.
142
1432006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
144
145        * Makefile.am: Remove superfluous -DASM.
146
1472006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
148
149        * configure.ac: Require autoconf-2.60. Require automake-1.10.
150
1512006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
152
153        * configure.ac: Remove explicit ampolish3 support (now in
154        RTEMS_BSP_CONFIGURE).
155
1562006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
157
158        * configure.ac: Add ampolish3 support.
159        * Makefile.am: Add preinstall.am.
160
1612005-10-17      Ralf Corsepius <ralf.corsepius@rtems.org>
162
163        * Makefile.am: Add pci.rel.
164
1652005-10-17      Ralf Corsepius <ralf.corsepius@rtems.org>
166
167        * Makefile.am: Install/preinstall headers from ../../i386/shared.
168
1692005-09-19      Ralf Corsepius <ralf.corsepius@rtems.org>
170
171        * network/network.c: Remove #define KERNEL.
172        Include <errno.h>.
173        * Makefile.am: Add -D_KERNEL to network_CPPFLAGS.
174
1752005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
176
177        * include/bsp.h: New header guard.
178
1792005-05-06      Jennifer Averett <jennifer.averett@oarcorp.com>
180
181        * clock/ckinit.c, console/console.c, include/bsp.h, startup/bspstart.c:
182        Moved irq.h to bsp subdirectory.
183
1842005-05-03      Jennifer Averett <jennifer.averett@oarcorp.com>
185
186        * clock/ckinit.c, console/console.c: Added support for
187        addition of parameter to ISRs.
188        * network/network.c: Modified parameter list to remove
189        warnings.
190
1912005-04-15      Joel Sherrill <joel@OARcorp.com>
192
193        * network/network.c: Fix warnings.
194
1952005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
196
197        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
198
1992005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
200
201        * Makefile.am: Remove build-variant support.
202
2032004-09-24      Ralf Corsepius <ralf.corsepius@rtems.org>
204
205        * configure.ac: Require automake > 1.9.
206
2072004-07-28      Joel Sherrill <joel@OARcorp.com>
208
209        * startup/linkcmds: Add gnu.linkonce.d and gcc_except_table sections.
210
2112004-07-25      Joel Sherrill <joel@OARcorp.com>
212
213        * Makefile.am: Add -D__INSIDE_RTEMS_BSD_TCPIP_STACK__ for network.
214
2152004-04-23      Ralf Corsepius <ralf.corsepius@rtems.org>
216
217        PR 610/bsps
218        * Makefile.am: Add include/tm27.h, Cosmetics.
219        * include/tm27.h: Final cosmetics.
220
2212004-04-22      Ralf Corsepius <ralf.corsepius@rtems.org>
222
223        * include/bsp.h: Split out tmtest27 support.
224        * include/tm27.h: New.
225
2262004-04-21      Ralf Corsepius <ralf.corsepius@rtems.org>
227
228        PR 613/bsps
229        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
230
2312004-04-21      Ralf Corsepius <ralf.corsepius@rtems.org>
232
233        PR 614/bsps
234        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
235
2362004-04-02      Ralf Corsepius <ralf.corsepius@rtems.org>
237
238        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
239        * timer/timerisr.S: Include <rtems/asm.h> instead of <asm.h>.
240
2412004-04-01      Ralf Corsepius <ralf.corsepius@rtems.org>
242
243        * network/network.c: Include <rtems/asm.h> instead of <asm.h>.
244        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
245        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
246        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
247
2482004-03-31      Ralf Corsepius <ralf.corsepius@rtems.org>
249
250        * clock/ckinit.c, include/bsp.h, startup/bspstart.c, timer/timer.c:
251        Convert to using c99 fixed size types.
252
2532004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
254
255        * Makefile.am: Reflect changes to bsp.am.
256        Preinstall dist_project_lib*.
257
2582004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
259
260        * Makefile.am: Reflect changes to bsp.am.
261
2622004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
263
264        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
265
2662004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
267
268        * Makefile.am: Pickup files from ../../i386/shared instead of
269        ../shared. Reformat.
270
2712004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
272
273        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
274        network/Makefile.am, startup/Makefile.am, timer/Makefile.am,
275        wrapup/Makefile.am. Use automake compilation rules.
276        * clock/Makefile.am, console/Makefile.am, network/Makefile.am,
277        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am: Remove.
278        * configure.ac: Reflect changes above.
279
2802004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
281
282        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
283        Add RTEMS_PROG_CCAS.
284
2852004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
286
287        * Makefile.am: Add PREINSTALL_DIRS.
288        * wrapup/Makefile.am: Reflect changes to libcpu.
289
2902004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
291
292        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
293        Add PRE/TMPINSTALL_FILES to CLEANFILES.
294        * startup/Makefile.am: Ditto.
295
2962004-01-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
297
298        * start/Makefile.am: Remove.
299        * Makefile.am: Merge-in start/Makefile.am.
300        * configure.ac: Reflect changes above.
301
3022004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
303
304        * wrapup/Makefile.am: Eliminate $(LIB).
305        Use noinst_DATA to trigger building libbsp.a.
306
3072003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
308
309        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
310        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
311
3122003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
313
314        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
315        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
316
3172003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
318
319        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
320
3212003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
322
323        * wrapup/Makefile.am: Cosmetics.
324
3252003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
326
327        * start/Makefile.am: Misc cleanups and fixes.
328        * startup/Makefile.am: Misc cleanups and fixes.
329        * wrapup/Makefile.am: Misc cleanups and fixes.
330
3312003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
332
333        * Makefile.am: Add preinstallation dirstamp support.
334        * clock/Makefile.am: Cosmetics.
335        * console/Makefile.am: Cosmetics.
336        * network/Makefile.am: Cosmetics.
337        * startup/Makefile.am: Cosmetics.
338        * timer/Makefile.am: Cosmetics.
339        * wrapup/Makefile.am: Cosmetics
340
3412003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
342
343        * clock/Makefile.am: Remove all-local: $(ARCH).
344        * console/Makefile.am: Remove all-local: $(ARCH).
345        * network/Makefile.am: Remove all-local: $(ARCH).
346        * start/Makefile.am: Remove all-local: $(ARCH).
347        * startup/Makefile.am: Remove all-local: $(ARCH).
348        * timer/Makefile.am: Remove all-local: $(ARCH).
349        * wrapup/Makefile.am: Remove all-local: $(ARCH).
350
3512003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
352
353        * Makefile.am: Merge-in include/Makefile.am.
354        Reflect changes to bsp.am.
355        * include/Makefile.am: Remove.
356        * configure.ac: Reflect changes above.
357
3582003-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
359
360        * bsp_specs: Remove *lib:.
361
3622003-09-04      Joel Sherrill <joel@OARcorp.com>
363
364        * clock/ckinit.c, console/console.c, include/bsp.h, include/coverhd.h,
365        start/80386ex.h, start/80386ex.inc, start/macros.inc, start/start.S,
366        startup/bspstart.c, startup/linkcmds, startup/setvec.c,
367        timer/timer.c, timer/timerisr.S: URL for license changed.
368
3692003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
370
371        * Makefile.am: Reflect having moved aclocal/.
372
3732003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
374
375        * Makefile.am: Reflect having moved automake/.
376        * clock/Makefile.am: Reflect having moved automake/.
377        * console/Makefile.am: Reflect having moved automake/.
378        * include/Makefile.am: Reflect having moved automake/.
379        * network/Makefile.am: Reflect having moved automake/.
380        * start/Makefile.am: Reflect having moved automake/.
381        * startup/Makefile.am: Reflect having moved automake/.
382        * timer/Makefile.am: Reflect having moved automake/.
383        * wrapup/Makefile.am: Reflect having moved automake/.
384
3852003-08-13      Joel Sherrill <joel@OARcorp.com>
386
387        PR 451/bsps
388        * startup/Makefile.am: Include shared i386 TTY driver in these BSPs.
389
3902003-08-11      Joel Sherrill <joel@OARcorp.com>
391
392        PR 450/make_build
393        * startup/linkcmds: Added .eh_frame
394
3952003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
396
397        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
398
3992003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
400
401        PR 445/bsps
402        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
403        Remove cpp, old_cpp (now unused).
404
4052003-05-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
406
407        * startup/Makefile.am: Remove -DBSP_IS_I386EX=1 (unused).
408
4092003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
410
411        * configure.ac: Remove AC_CONFIG_AUX_DIR.
412
4132003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
414
415        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
416
4172003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
418
419        * configure.ac: AC_PREREQ(2.57).
420
4212003-01-20      Joel Sherrill <joel@OARcorp.com>
422
423        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
424
4252002-12-19      Joel Sherrill <joel@OARcorp.com>
426
427        * console/console.c: Removed __assert() which conflicts with newlib.
428
4292002-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
430
431        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
432        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
433        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
434        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
435        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
436        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
437
4382002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
439
440        * start/Makefile.am: Use install-data-local to install startfile.
441
4422002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
443
444        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
445
4462002-11-04      Joel Sherrill <joel@OARcorp.com>
447
448        * network/network.c: Removed warnings.
449
4502002-11-04      Joel Sherrill <joel@OARcorp.com>
451
452        * console/console.c, network/network.c: Removed warnings.
453
4542002-11-01      Joel Sherrill <joel@OARcorp.com>
455
456        * startup/bspstart.c: Removed warnings.
457
4582002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
459
460        * .cvsignore: Reformat.
461        Add autom4te*cache.
462        Remove autom4te.cache.
463
4642002-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
465
466        * configure.ac: Remove duplicate timer/Makefile in AC_CONFIG_FILES.
467
4682002-08-21      Joel Sherrill <joel@OARcorp.com>
469
470        * bsp_specs: Added support for -nostdlibs.
471
4722002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
473
474        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
475        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
476        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
477        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
478        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
479        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
480        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
481
4822002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
483
484        * startup/bspstart.c: Per PR252 removed hack that tripled size of
485        RTEMS Workspace when POSIX is configured.  This was probably done to
486        account for confdefs.h missing some application requirements.
487
4882002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
489
490        * start/Makefile.am: Eliminate PGM.
491        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
492
4932002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
494
495        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
496
4972002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
498
499        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
500        Remove $(OBJS) from all-local.
501
5022002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
503
504        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
505
5062001-05-09      Joel Sherrill <joel@OARcorp.com>
507
508        * startup/linkcmds: In support of gcc 3.1, added one of more
509        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
510        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
511        and direction of segments to memory regions may also have been
512        addressed.  This was a sweep across all BSPs.
513 
5142002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
515
516        * include/bsp.h: include <libcpu/cpu.h>.
517
5182002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
519
520        * configure.ac:
521        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
522        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
523        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
524        * Makefile.am: Remove AUTOMAKE_OPTIONS.
525        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
526        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
527        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
528        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
529        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
530        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
531        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
532
5332002-03-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
534
535        * configure.ac: Remove stray ';', PR 139.
536
5372002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
538
539        * include/bsp.h: Include rtems/bspIo.h instead of bspIo.h.
540
5412001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
542
543        * bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu,
544        replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
545
5462001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
547
548        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
549
5502001-10-25      Joel Sherrill <joel@OARcorp.com>
551
552        * startup/linkcmds: Added _init and _fini.
553
5542001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
555
556        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
557        * configure.in: Remove.
558        * configure.ac: New file, generated from configure.in by autoupdate.
559
5602001-09-27      Joel Sherrill <joel@OARcorp.com>
561
562        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
563
5642001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
565
566        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
567
5682001-05-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
569
570        * configure.in: Add bspopts.h.
571        * include/bsp.h: Include bspopts.h.
572        * include/.cvsignore: Add bspopts.h*, stamp-h*.
573        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
574        * start/Makefile.am: Dito.
575        * network/Makefile.am: Dito.
576
5772001-05-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
578
579        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
580
5812000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
582
583        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
584
5852000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
586
587        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
588
5892000-11-01      Joel Sherrill <joel@OARcorp.com>
590
591        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
592        and libcsupport.h moved from libc to lib/include/rtems and
593        now must be referenced as <rtems/XXX.h>.   Header file order
594        was cleaned up while doing this.
595
5962000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
597
598        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
599        Switch to GNU canonicalization.
600
6012000-10-20      Joel Sherrill <joel@OARcorp.com>
602
603        * console/console.c: Invoke BSP_uart_init() with enough arguments
604        now that more communication parameters are settable.
605
6062000-10-17      Joel Sherrill <joel@OARcorp.com>
607
608        * startup/Makefile.am: Added idt.c since it has been moved libcpu/i386
609        to libbsp/i386/shared/irq.
610
6112000-09-29      Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
612
613        * startup/linkcmds: Added lines so DWARF debug information
614        would be available.  Otherwise gdb complains that the offsets
615        for the debug info are incorrect and doesn't load the files.
616
6172000-09-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
618
619        * start/Makefile.am: Remove AM_CPPFLAGS and GAS_CODE16 conditional.
620
6212000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
622
623        * clock/Makefile.am, console/Makefile.am, network/Makefile.am,
624        start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
625        wrapup/Makefile.am: Include compile.am
626
6272000-08-10      Joel Sherrill <joel@OARcorp.com>
628
629        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.