source: rtems/c/src/lib/libbsp/i386/i386ex/ChangeLog @ 64eb0c7

4.104.115
Last change on this file since 64eb0c7 was 64eb0c7, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/08 at 10:19:37

2008-09-29 Ralf Corsépius <ralf.corsepius@…>

  • Makefile.am: Eliminate *_SOURCES.
  • Property mode set to 100644
File size: 20.4 KB
Line 
12008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * Makefile.am: Eliminate *_SOURCES.
4
52008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
6
7        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
8        components.
9
102008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
11
12        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
13
142008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
15
16        * configure.ac: Make letting boot_card() handle work area allocation
17        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
18        BSP_BOOTCARD_OPTIONS.
19
202008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
21
22        * Makefile.am: Add use of shared bsppost.c
23
242008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
25
26        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds: Use
27        top level shared bsp_get_work_area() implementation.
28
292008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
30
31        * include/bsp.h: Remove unnecessary variables and EXTERN magic.
32
332008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
34
35        * include/bsp.h: Remove unnecessary boilerplate comments.
36
372008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
38
39        * clock/ckinit.c, startup/bspstart.c: Remove unnecessary includes of
40        rtems/libcsupport.h and rtems/libio.h.
41
422008-09-05      Joel Sherrill <joel.sherrill@OARcorp.com>
43
44        * clock/ckinit.c: The Shared Memory Driver no longer requires the
45        special IOCTL in Clock_control. This was a hack which has existed
46        since before the Classic API Timer Manager was implemented. All
47        implementations of and references to Clock_control were removed.
48
492008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
50
51        * timer/timer.c: Convert to "bool".
52
532008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
54
55        * timer/timer.c: Eliminate empty function from every benchmark timer
56        driver. Fix spelling.
57
582008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
59
60        * timer/timer.c: Rename timer driver methods to follow RTEMS
61        programming conventions.
62
632008-08-16      Ralf Corsépius <ralf.corsepius@rtems.org>
64
65        * timer/timer.c: Add missing prototypes.
66
672008-05-23      Joel Sherrill <joel.sherrill@OARcorp.com>
68
69        * console/console.c: Eliminate copies of switches to convert termios
70        Bxxx constants to xxx as an integer. Use the shared
71        termios_baud_to_number() routine to do the same conversion.
72
732008-05-15      Joel Sherrill <joel.sherrill@oarcorp.com>
74
75        * network/network.c: Eliminate patterns that look like CVS conflict
76        markers.
77
782008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
79
80        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
81        Framework to ask the BSP where it has memory for the RTEMS Workspace
82        and C Program Heap. These collectively are referred to as work area.
83        If the BSP supports this, then it does not have to include code to
84        split the available memory between the two areas. This reduces the
85        amount of code in the BSP specific bspstart.c file. Additionally, the
86        shared framework can initialize the C Library, call
87        rtems_debug_enable(), and dirty the work area memory. Until most/all
88        BSPs support this new capability, if the BSP supports this, it should
89        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
90        When the transition is complete, this autoconf macro can be removed.
91
922008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
93
94        * Makefile.am: Rework to avoid .rel files.
95
962008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
97
98        * startup/bspstart.c: Refactored and renamed initialization routines to
99        rtems_initialize_data_structures, rtems_initialize_before_drivers,
100        rtems_initialize_device_drivers, and
101        rtems_initialize_start_multitasking. This opened the sequence up so
102        that bootcard() could provide a more robust and flexible framework
103        which is easier to explain and understand. This also lays the
104        groundwork for sharing the division of available memory between the
105        RTEMS workspace and heap and the C library initialization across all
106        BSPs.
107
1082008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
109
110        * startup/linkcmds: Add wildcard to gcc_except_table section so
111        programs compiled with gcc 4.3.x can link.
112
1132007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
114
115        * clock/ckinit.c, include/bsp.h, startup/bspstart.c: Eliminate copies
116        of the Configuration Table. Use the RTEMS provided accessor macros to
117        obtain configuration fields.
118
1192007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
120
121        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
122        from CPU Table to Configuration Table. Eliminate CPU Table from all
123        ports. Delete references to CPU Table in all forms.
124
1252007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
126
127        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
128        Table fields to the Configuration Table. This included
129        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
130        do_zero_of_workspace, extra_mpci_receive_server_stack,
131        stack_allocate_hook, and stack_free_hook. As a side-effect of this
132        effort some multiprocessing code was made conditional and some style
133        clean up occurred.
134
1352007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
136
137        * startup/bspstart.c: Eliminate the interrupt_table_segment and
138        interrupt_table_offset fields in the i386 CPU Table since they are
139        never read.
140
1412007-05-03      Joel Sherrill <joel@OARcorp.com>
142
143        * startup/linkcmds: Handle .data.* sections
144
1452007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
146
147        * bsp_specs: Remove qrtems_debug.
148
1492006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
150
151        * network/network.c (uti596_ioctl): Use ioctl_command_t.
152
1532006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
154
155        * configure.ac: New BUG-REPORT address.
156
1572006-11-15      Joel Sherrill <joel@OARcorp.com>
158
159        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
160        file and simplified initialization.
161
1622006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
163
164        * Makefile.am: Remove superfluous -DASM.
165
1662006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
167
168        * configure.ac: Require autoconf-2.60. Require automake-1.10.
169
1702006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
171
172        * configure.ac: Remove explicit ampolish3 support (now in
173        RTEMS_BSP_CONFIGURE).
174
1752006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
176
177        * configure.ac: Add ampolish3 support.
178        * Makefile.am: Add preinstall.am.
179
1802005-10-17      Ralf Corsepius <ralf.corsepius@rtems.org>
181
182        * Makefile.am: Add pci.rel.
183
1842005-10-17      Ralf Corsepius <ralf.corsepius@rtems.org>
185
186        * Makefile.am: Install/preinstall headers from ../../i386/shared.
187
1882005-09-19      Ralf Corsepius <ralf.corsepius@rtems.org>
189
190        * network/network.c: Remove #define KERNEL.
191        Include <errno.h>.
192        * Makefile.am: Add -D_KERNEL to network_CPPFLAGS.
193
1942005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
195
196        * include/bsp.h: New header guard.
197
1982005-05-06      Jennifer Averett <jennifer.averett@oarcorp.com>
199
200        * clock/ckinit.c, console/console.c, include/bsp.h, startup/bspstart.c:
201        Moved irq.h to bsp subdirectory.
202
2032005-05-03      Jennifer Averett <jennifer.averett@oarcorp.com>
204
205        * clock/ckinit.c, console/console.c: Added support for
206        addition of parameter to ISRs.
207        * network/network.c: Modified parameter list to remove
208        warnings.
209
2102005-04-15      Joel Sherrill <joel@OARcorp.com>
211
212        * network/network.c: Fix warnings.
213
2142005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
215
216        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
217
2182005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
219
220        * Makefile.am: Remove build-variant support.
221
2222004-09-24      Ralf Corsepius <ralf.corsepius@rtems.org>
223
224        * configure.ac: Require automake > 1.9.
225
2262004-07-28      Joel Sherrill <joel@OARcorp.com>
227
228        * startup/linkcmds: Add gnu.linkonce.d and gcc_except_table sections.
229
2302004-07-25      Joel Sherrill <joel@OARcorp.com>
231
232        * Makefile.am: Add -D__INSIDE_RTEMS_BSD_TCPIP_STACK__ for network.
233
2342004-04-23      Ralf Corsepius <ralf.corsepius@rtems.org>
235
236        PR 610/bsps
237        * Makefile.am: Add include/tm27.h, Cosmetics.
238        * include/tm27.h: Final cosmetics.
239
2402004-04-22      Ralf Corsepius <ralf.corsepius@rtems.org>
241
242        * include/bsp.h: Split out tmtest27 support.
243        * include/tm27.h: New.
244
2452004-04-21      Ralf Corsepius <ralf.corsepius@rtems.org>
246
247        PR 613/bsps
248        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
249
2502004-04-21      Ralf Corsepius <ralf.corsepius@rtems.org>
251
252        PR 614/bsps
253        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
254
2552004-04-02      Ralf Corsepius <ralf.corsepius@rtems.org>
256
257        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
258        * timer/timerisr.S: Include <rtems/asm.h> instead of <asm.h>.
259
2602004-04-01      Ralf Corsepius <ralf.corsepius@rtems.org>
261
262        * network/network.c: Include <rtems/asm.h> instead of <asm.h>.
263        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
264        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
265        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
266
2672004-03-31      Ralf Corsepius <ralf.corsepius@rtems.org>
268
269        * clock/ckinit.c, include/bsp.h, startup/bspstart.c, timer/timer.c:
270        Convert to using c99 fixed size types.
271
2722004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
273
274        * Makefile.am: Reflect changes to bsp.am.
275        Preinstall dist_project_lib*.
276
2772004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
278
279        * Makefile.am: Reflect changes to bsp.am.
280
2812004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
282
283        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
284
2852004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
286
287        * Makefile.am: Pickup files from ../../i386/shared instead of
288        ../shared. Reformat.
289
2902004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
291
292        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
293        network/Makefile.am, startup/Makefile.am, timer/Makefile.am,
294        wrapup/Makefile.am. Use automake compilation rules.
295        * clock/Makefile.am, console/Makefile.am, network/Makefile.am,
296        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am: Remove.
297        * configure.ac: Reflect changes above.
298
2992004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
300
301        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
302        Add RTEMS_PROG_CCAS.
303
3042004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
305
306        * Makefile.am: Add PREINSTALL_DIRS.
307        * wrapup/Makefile.am: Reflect changes to libcpu.
308
3092004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
310
311        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
312        Add PRE/TMPINSTALL_FILES to CLEANFILES.
313        * startup/Makefile.am: Ditto.
314
3152004-01-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
316
317        * start/Makefile.am: Remove.
318        * Makefile.am: Merge-in start/Makefile.am.
319        * configure.ac: Reflect changes above.
320
3212004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
322
323        * wrapup/Makefile.am: Eliminate $(LIB).
324        Use noinst_DATA to trigger building libbsp.a.
325
3262003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
327
328        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
329        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
330
3312003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
332
333        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
334        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
335
3362003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
337
338        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
339
3402003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
341
342        * wrapup/Makefile.am: Cosmetics.
343
3442003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
345
346        * start/Makefile.am: Misc cleanups and fixes.
347        * startup/Makefile.am: Misc cleanups and fixes.
348        * wrapup/Makefile.am: Misc cleanups and fixes.
349
3502003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
351
352        * Makefile.am: Add preinstallation dirstamp support.
353        * clock/Makefile.am: Cosmetics.
354        * console/Makefile.am: Cosmetics.
355        * network/Makefile.am: Cosmetics.
356        * startup/Makefile.am: Cosmetics.
357        * timer/Makefile.am: Cosmetics.
358        * wrapup/Makefile.am: Cosmetics
359
3602003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
361
362        * clock/Makefile.am: Remove all-local: $(ARCH).
363        * console/Makefile.am: Remove all-local: $(ARCH).
364        * network/Makefile.am: Remove all-local: $(ARCH).
365        * start/Makefile.am: Remove all-local: $(ARCH).
366        * startup/Makefile.am: Remove all-local: $(ARCH).
367        * timer/Makefile.am: Remove all-local: $(ARCH).
368        * wrapup/Makefile.am: Remove all-local: $(ARCH).
369
3702003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
371
372        * Makefile.am: Merge-in include/Makefile.am.
373        Reflect changes to bsp.am.
374        * include/Makefile.am: Remove.
375        * configure.ac: Reflect changes above.
376
3772003-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
378
379        * bsp_specs: Remove *lib:.
380
3812003-09-04      Joel Sherrill <joel@OARcorp.com>
382
383        * clock/ckinit.c, console/console.c, include/bsp.h, include/coverhd.h,
384        start/80386ex.h, start/80386ex.inc, start/macros.inc, start/start.S,
385        startup/bspstart.c, startup/linkcmds, startup/setvec.c,
386        timer/timer.c, timer/timerisr.S: URL for license changed.
387
3882003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
389
390        * Makefile.am: Reflect having moved aclocal/.
391
3922003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
393
394        * Makefile.am: Reflect having moved automake/.
395        * clock/Makefile.am: Reflect having moved automake/.
396        * console/Makefile.am: Reflect having moved automake/.
397        * include/Makefile.am: Reflect having moved automake/.
398        * network/Makefile.am: Reflect having moved automake/.
399        * start/Makefile.am: Reflect having moved automake/.
400        * startup/Makefile.am: Reflect having moved automake/.
401        * timer/Makefile.am: Reflect having moved automake/.
402        * wrapup/Makefile.am: Reflect having moved automake/.
403
4042003-08-13      Joel Sherrill <joel@OARcorp.com>
405
406        PR 451/bsps
407        * startup/Makefile.am: Include shared i386 TTY driver in these BSPs.
408
4092003-08-11      Joel Sherrill <joel@OARcorp.com>
410
411        PR 450/make_build
412        * startup/linkcmds: Added .eh_frame
413
4142003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
415
416        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
417
4182003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
419
420        PR 445/bsps
421        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
422        Remove cpp, old_cpp (now unused).
423
4242003-05-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
425
426        * startup/Makefile.am: Remove -DBSP_IS_I386EX=1 (unused).
427
4282003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
429
430        * configure.ac: Remove AC_CONFIG_AUX_DIR.
431
4322003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
433
434        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
435
4362003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
437
438        * configure.ac: AC_PREREQ(2.57).
439
4402003-01-20      Joel Sherrill <joel@OARcorp.com>
441
442        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
443
4442002-12-19      Joel Sherrill <joel@OARcorp.com>
445
446        * console/console.c: Removed __assert() which conflicts with newlib.
447
4482002-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
449
450        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
451        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
452        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
453        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
454        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
455        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
456
4572002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
458
459        * start/Makefile.am: Use install-data-local to install startfile.
460
4612002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
462
463        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
464
4652002-11-04      Joel Sherrill <joel@OARcorp.com>
466
467        * network/network.c: Removed warnings.
468
4692002-11-04      Joel Sherrill <joel@OARcorp.com>
470
471        * console/console.c, network/network.c: Removed warnings.
472
4732002-11-01      Joel Sherrill <joel@OARcorp.com>
474
475        * startup/bspstart.c: Removed warnings.
476
4772002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
478
479        * .cvsignore: Reformat.
480        Add autom4te*cache.
481        Remove autom4te.cache.
482
4832002-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
484
485        * configure.ac: Remove duplicate timer/Makefile in AC_CONFIG_FILES.
486
4872002-08-21      Joel Sherrill <joel@OARcorp.com>
488
489        * bsp_specs: Added support for -nostdlibs.
490
4912002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
492
493        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
494        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
495        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
496        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
497        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
498        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
499        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
500
5012002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
502
503        * startup/bspstart.c: Per PR252 removed hack that tripled size of
504        RTEMS Workspace when POSIX is configured.  This was probably done to
505        account for confdefs.h missing some application requirements.
506
5072002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
508
509        * start/Makefile.am: Eliminate PGM.
510        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
511
5122002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
513
514        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
515
5162002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
517
518        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
519        Remove $(OBJS) from all-local.
520
5212002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
522
523        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
524
5252001-05-09      Joel Sherrill <joel@OARcorp.com>
526
527        * startup/linkcmds: In support of gcc 3.1, added one of more
528        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
529        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
530        and direction of segments to memory regions may also have been
531        addressed.  This was a sweep across all BSPs.
532 
5332002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
534
535        * include/bsp.h: include <libcpu/cpu.h>.
536
5372002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
538
539        * configure.ac:
540        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
541        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
542        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
543        * Makefile.am: Remove AUTOMAKE_OPTIONS.
544        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
545        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
546        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
547        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
548        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
549        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
550        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
551
5522002-03-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
553
554        * configure.ac: Remove stray ';', PR 139.
555
5562002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
557
558        * include/bsp.h: Include rtems/bspIo.h instead of bspIo.h.
559
5602001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
561
562        * bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu,
563        replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
564
5652001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
566
567        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
568
5692001-10-25      Joel Sherrill <joel@OARcorp.com>
570
571        * startup/linkcmds: Added _init and _fini.
572
5732001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
574
575        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
576        * configure.in: Remove.
577        * configure.ac: New file, generated from configure.in by autoupdate.
578
5792001-09-27      Joel Sherrill <joel@OARcorp.com>
580
581        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
582
5832001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
584
585        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
586
5872001-05-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
588
589        * configure.in: Add bspopts.h.
590        * include/bsp.h: Include bspopts.h.
591        * include/.cvsignore: Add bspopts.h*, stamp-h*.
592        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
593        * start/Makefile.am: Dito.
594        * network/Makefile.am: Dito.
595
5962001-05-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
597
598        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
599
6002000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
601
602        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
603
6042000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
605
606        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
607
6082000-11-01      Joel Sherrill <joel@OARcorp.com>
609
610        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
611        and libcsupport.h moved from libc to lib/include/rtems and
612        now must be referenced as <rtems/XXX.h>.   Header file order
613        was cleaned up while doing this.
614
6152000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
616
617        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
618        Switch to GNU canonicalization.
619
6202000-10-20      Joel Sherrill <joel@OARcorp.com>
621
622        * console/console.c: Invoke BSP_uart_init() with enough arguments
623        now that more communication parameters are settable.
624
6252000-10-17      Joel Sherrill <joel@OARcorp.com>
626
627        * startup/Makefile.am: Added idt.c since it has been moved libcpu/i386
628        to libbsp/i386/shared/irq.
629
6302000-09-29      Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
631
632        * startup/linkcmds: Added lines so DWARF debug information
633        would be available.  Otherwise gdb complains that the offsets
634        for the debug info are incorrect and doesn't load the files.
635
6362000-09-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
637
638        * start/Makefile.am: Remove AM_CPPFLAGS and GAS_CODE16 conditional.
639
6402000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
641
642        * clock/Makefile.am, console/Makefile.am, network/Makefile.am,
643        start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
644        wrapup/Makefile.am: Include compile.am
645
6462000-08-10      Joel Sherrill <joel@OARcorp.com>
647
648        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.