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

4.104.115
Last change on this file since 6bf9e0a was 6bf9e0a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 10/20/09 at 05:51:15

2009-10-20 Ralf Corsépius <ralf.corsepius@…>

  • configure.ac: Don't add -ansi -fasm to CFLAGS.
  • Property mode set to 100644
File size: 21.6 KB
Line 
12009-10-20      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * configure.ac: Don't add -ansi -fasm to CFLAGS.
4
52009-10-15      Ralf Corsépius <ralf.corsepius@rtems.org>
6
7        * make/custom/ts_386ex.cfg: New (relocated from /make/custom).
8
92009-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
10
11        * console/console.c: Reflect termios_baud_to_number having been
12        renamed to rtems_termios_baud_to_number.
13
142009-09-15      Ralf Corsépius <ralf.corsepius@rtems.org>
15
16        * configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
17
182009-08-06      Joel Sherrill <joel.sherrill@oarcorp.com>
19
20        * startup/setvec.c: Removed.
21
222009-08-06      Joel Sherrill <joel.sherrill@oarcorp.com>
23
24        * include/tm27.h: Remove references to rtems_interrupt_catch since this
25        archiecture does not use Simple Vectored Interrupt model.
26
272009-07-16      Joel Sherrill <joel.sherrill@oarcorp.com>
28
29        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
30        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
31        have the same options.
32
332009-07-01      Sebastian Huber <sebastian.huber@embedded-brains.de>
34
35        * Makefile.am, preinstall.am: Update for generic interrupt support.
36
372009-04-28      Chris Johns <chrisj@rtems.org>
38
39        * start/start.S: Update for boot_card command line change.
40
412008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
42
43        * bsp_specs: Move -e start from *link to *startfile to avoid warning
44        for undefined entry symbol when linking relocatables with binutils
45        2.19.
46
472008-09-30      Joel Sherrill <joel.sherrill@oarcorp.com>
48
49        * timer/timer.c: Eliminate uses of old benchmark timer names.
50
512008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
52
53        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
54        of building libbspstart.a, using automake-rules.
55
562008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
57
58        * Makefile.am: Eliminate *_SOURCES.
59
602008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
61
62        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
63        components.
64
652008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
66
67        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
68
692008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
70
71        * configure.ac: Make letting boot_card() handle work area allocation
72        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
73        BSP_BOOTCARD_OPTIONS.
74
752008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
76
77        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds: Use
78        top level shared bsp_get_work_area() implementation.
79
802008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
81
82        * include/bsp.h: Remove unnecessary variables and EXTERN magic.
83
842008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
85
86        * include/bsp.h: Remove unnecessary boilerplate comments.
87
882008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
89
90        * clock/ckinit.c, startup/bspstart.c: Remove unnecessary includes of
91        rtems/libcsupport.h and rtems/libio.h.
92
932008-09-05      Joel Sherrill <joel.sherrill@OARcorp.com>
94
95        * clock/ckinit.c: The Shared Memory Driver no longer requires the
96        special IOCTL in Clock_control. This was a hack which has existed
97        since before the Classic API Timer Manager was implemented. All
98        implementations of and references to Clock_control were removed.
99
1002008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
101
102        * timer/timer.c: Convert to "bool".
103
1042008-09-02      Ralf Corsépius <ralf.corsepius@rtems.org>
105
106        * clock/rtc.c, network/ne2000.c: Eliminate rtems_boolean.
107
1082008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
109
110        * timer/timer.c: Eliminate empty function from every benchmark timer
111        driver. Fix spelling.
112
1132008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
114
115        * timer/timer.c: Rename timer driver methods to follow RTEMS
116        programming conventions.
117
1182008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
119
120        * clock/ckinit.c, startup/bspstart.c, timer/timer.c:
121        Add missing prototypes.
122
1232008-05-23      Joel Sherrill <joel.sherrill@OARcorp.com>
124
125        * console/console.c: Eliminate copies of switches to convert termios
126        Bxxx constants to xxx as an integer. Use the shared
127        termios_baud_to_number() routine to do the same conversion.
128
1292008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
130
131        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
132        Framework to ask the BSP where it has memory for the RTEMS Workspace
133        and C Program Heap. These collectively are referred to as work area.
134        If the BSP supports this, then it does not have to include code to
135        split the available memory between the two areas. This reduces the
136        amount of code in the BSP specific bspstart.c file. Additionally, the
137        shared framework can initialize the C Library, call
138        rtems_debug_enable(), and dirty the work area memory. Until most/all
139        BSPs support this new capability, if the BSP supports this, it should
140        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
141        When the transition is complete, this autoconf macro can be removed.
142
1432008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
144
145        * Makefile.am: Rework to avoid .rel files.
146
1472008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
148
149        * startup/bspstart.c: Refactored and renamed initialization routines to
150        rtems_initialize_data_structures, rtems_initialize_before_drivers,
151        rtems_initialize_device_drivers, and
152        rtems_initialize_start_multitasking. This opened the sequence up so
153        that bootcard() could provide a more robust and flexible framework
154        which is easier to explain and understand. This also lays the
155        groundwork for sharing the division of available memory between the
156        RTEMS workspace and heap and the C library initialization across all
157        BSPs.
158
1592008-05-07      Joel Sherrill <joel.sherrill@OARcorp.com>
160
161        PR 649/bsps
162        * clock/ckinit.c, console/console.c: Add missing structure element.
163
1642008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
165
166        * startup/linkcmds: Add wildcard to gcc_except_table section so
167        programs compiled with gcc 4.3.x can link.
168
1692007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
170
171        * clock/ckinit.c, include/bsp.h, startup/bspstart.c: Eliminate copies
172        of the Configuration Table. Use the RTEMS provided accessor macros to
173        obtain configuration fields.
174
1752007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
176
177        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
178        from CPU Table to Configuration Table. Eliminate CPU Table from all
179        ports. Delete references to CPU Table in all forms.
180
1812007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
182
183        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
184        Table fields to the Configuration Table. This included
185        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
186        do_zero_of_workspace, extra_mpci_receive_server_stack,
187        stack_allocate_hook, and stack_free_hook. As a side-effect of this
188        effort some multiprocessing code was made conditional and some style
189        clean up occurred.
190
1912007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
192
193        * startup/bspstart.c: Eliminate the interrupt_table_segment and
194        interrupt_table_offset fields in the i386 CPU Table since they are
195        never read.
196
1972007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
198
199        * startup/bspstart.c: Eliminate maximum_drivers configuration parameter
200        since it was used to configure a no longer used feature. Device names
201        are now part of the filesystem not in a table.
202
2032007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
204
205        * bsp_specs: Remove qrtems_debug.
206
2072006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
208
209        * network/ne2000.c: Use ioctl_command_t as arg in ioctl-functions.
210
2112006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
212
213        * configure.ac: New BUG-REPORT address.
214
2152006-11-15      Joel Sherrill <joel@OARcorp.com>
216
217        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
218        file and simplified initialization.
219
2202006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
221
222        * Makefile.am: Remove superfluous -DASM.
223
2242006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
225
226        * configure.ac: Require autoconf-2.60. Require automake-1.10.
227
2282006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
229
230        * configure.ac: Remove explicit ampolish3 support (now in
231        RTEMS_BSP_CONFIGURE).
232
2332006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
234
235        * configure.ac: Add ampolish3 support.
236        * Makefile.am: Add preinstall.am.
237
2382005-10-17      Ralf Corsepius <ralf.corsepius@rtems.org>
239
240        * Makefile.am: Add pci.rel.
241
2422005-10-17      Ralf Corsepius <ralf.corsepius@rtems.org>
243
244        * Makefile.am: Install/preinstall headers from ../../i386/shared.
245
2462005-09-19      Ralf Corsepius <ralf.corsepius@rtems.org>
247
248        * network/ne2000.c: Include <errno.h> instead of <sys/errno.h>.
249
2502005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
251
252        * include/bsp.h: New header guard.
253
2542005-05-06      Jennifer Averett <jennifer.averett@oarcorp.com>
255
256        * clock/ckinit.c, console/console.c, include/bsp.h, network/ne2000.c:
257        Moved irq.h to bsp subdirectory.
258
2592005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
260
261        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
262
2632005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
264
265        * Makefile.am: Remove build-variant support.
266
2672004-09-24      Ralf Corsepius <ralf.corsepius@rtems.org>
268
269        * configure.ac: Require automake > 1.9.
270
2712004-07-25      Joel Sherrill <joel@OARcorp.com>
272
273        * Makefile.am: Add -D__INSIDE_RTEMS_BSD_TCPIP_STACK__ for network.
274        * network/ne2000.c: Add include of <sys/errno.h>.
275
2762004-04-23      Ralf Corsepius <ralf.corsepius@rtems.org>
277
278        PR 610/bsps
279        * Makefile.am: Add include/tm27.h, Cosmetics.
280        * include/tm27.h: Final cosmetics.
281
2822004-04-22      Ralf Corsepius <ralf.corsepius@rtems.org>
283
284        * include/bsp.h: Split out tmtest27 support.
285        * include/tm27.h: New.
286
2872004-04-21      Ralf Corsepius <ralf.corsepius@rtems.org>
288
289        PR 613/bsps
290        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
291
2922004-04-21      Ralf Corsepius <ralf.corsepius@rtems.org>
293
294        PR 614/bsps
295        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
296
2972004-04-02      Ralf Corsepius <ralf.corsepius@rtems.org>
298
299        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
300        * timer/timerisr.S: Include <rtems/asm.h> instead of <asm.h>.
301
3022004-04-01      Ralf Corsepius <ralf.corsepius@rtems.org>
303
304        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
305        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
306        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
307
3082004-03-31      Ralf Corsepius <ralf.corsepius@rtems.org>
309
310        * clock/ckinit.c, clock/rtc.c, include/bsp.h, startup/bspstart.c,
311        timer/timer.c: Convert to using c99 fixed size types.
312
3132004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
314
315        * Makefile.am: Reflect changes to bsp.am.
316        Preinstall dist_project_lib*.
317
3182004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
319
320        * Makefile.am: Reflect changes to bsp.am.
321
3222004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
323
324        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
325
3262004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
327
328        * Makefile.am: Pickup files from ../../i386/shared instead of
329        ../shared. Reformat.
330
3312004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
332
333        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
334        network/Makefile.am, startup/Makefile.am, timer/Makefile.am,
335        wrapup/Makefile.am. Use automake compilation rules.
336        * clock/Makefile.am, console/Makefile.am, network/Makefile.am,
337        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am: Remove.
338        * configure.ac: Reflect changes above.
339
3402004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
341
342        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
343        Add RTEMS_PROG_CCAS.
344
3452004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
346
347        * Makefile.am: Add PREINSTALL_DIRS.
348        * wrapup/Makefile.am: Reflect changes to libcpu.
349
3502004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
351
352        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
353        Add PRE/TMPINSTALL_FILES to CLEANFILES.
354        * startup/Makefile.am: Ditto.
355
3562004-01-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
357
358        * start/Makefile.am: Remove.
359        * Makefile.am: Merge-in start/Makefile.am.
360        * configure.ac: Reflect changes above.
361
3622004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
363
364        * wrapup/Makefile.am: Eliminate $(LIB).
365        Use noinst_DATA to trigger building libbsp.a.
366
3672003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
368
369        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
370        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
371
3722003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
373
374        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
375        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
376
3772003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
378
379        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
380
3812003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
382
383        * wrapup/Makefile.am: Cosmetics.
384
3852003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
386
387        * start/Makefile.am: Misc cleanups and fixes.
388        * startup/Makefile.am: Misc cleanups and fixes.
389        * wrapup/Makefile.am: Misc cleanups and fixes.
390
3912003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
392
393        * Makefile.am: Add preinstallation dirstamp support.
394        * clock/Makefile.am: Cosmetics.
395        * console/Makefile.am: Cosmetics.
396        * network/Makefile.am: Cosmetics.
397        * startup/Makefile.am: Cosmetics.
398        * timer/Makefile.am: Cosmetics.
399        * wrapup/Makefile.am: Cosmetics.
400
4012003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
402
403        * clock/Makefile.am: Remove all-local: $(ARCH).
404        * console/Makefile.am: Remove all-local: $(ARCH).
405        * network/Makefile.am: Remove all-local: $(ARCH).
406        * start/Makefile.am: Remove all-local: $(ARCH).
407        * startup/Makefile.am: Remove all-local: $(ARCH).
408        * timer/Makefile.am: Remove all-local: $(ARCH).
409        * wrapup/Makefile.am: Remove all-local: $(ARCH).
410
4112003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
412
413        * Makefile.am: Merge-in include/Makefile.am.
414        Reflect changes to bsp.am.
415        * include/Makefile.am: Remove.
416        * configure.ac: Reflect changes above.
417
4182003-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
419
420        * bsp_specs: Remove *lib:.
421
4222003-09-04      Joel Sherrill <joel@OARcorp.com>
423
424        * clock/ckinit.c, clock/rtc.c, console/console.c, include/bsp.h,
425        include/coverhd.h, network/ne2000.c, start/80386ex.h,
426        start/80386ex.inc, start/macros.inc, start/start.S,
427        startup/bspstart.c, startup/linkcmds, startup/setvec.c,
428        timer/timer.c, timer/timerisr.S, tools/debug_ada/init.c,
429        tools/debug_c/init.c, tools/debug_c/serial_gdb.c,
430        tools/debug_c/system.h, tools/network_ada/listener/init.c,
431        tools/network_ada/tcprelay/init.c, tools/ts_1325_ada/init.c: URL for
432        license changed.
433
4342003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
435
436        * Makefile.am: Reflect having moved aclocal/.
437
4382003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
439
440        * Makefile.am: Reflect having moved automake/.
441        * clock/Makefile.am: Reflect having moved automake/.
442        * console/Makefile.am: Reflect having moved automake/.
443        * include/Makefile.am: Reflect having moved automake/.
444        * network/Makefile.am: Reflect having moved automake/.
445        * start/Makefile.am: Reflect having moved automake/.
446        * startup/Makefile.am: Reflect having moved automake/.
447        * timer/Makefile.am: Reflect having moved automake/.
448        * wrapup/Makefile.am: Reflect having moved automake/.
449
4502003-08-13      Joel Sherrill <joel@OARcorp.com>
451
452        PR 451/bsps
453        * startup/Makefile.am: Include shared i386 TTY driver in these BSPs.
454
4552003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
456
457        PR 452/bsps
458        * startup/Makefile.am: Remove USE_INIT_FINI.
459
4602003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
461
462        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
463
4642003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
465
466        PR 445/bsps
467        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
468        Remove cpp, old_cpp (now unused).
469
4702003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
471
472        * configure.ac: Remove AC_CONFIG_AUX_DIR.
473
4742003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
475
476        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
477
4782003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
479
480        * configure.ac: AC_PREREQ(2.57).
481
4822003-01-20      Joel Sherrill <joel@OARcorp.com>
483
484        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
485
4862002-12-19      Joel Sherrill <joel@OARcorp.com>
487
488        * console/console.c: Removed __assert() which conflicts with newlib.
489
4902002-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
491
492        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
493        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
494        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
495        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
496        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
497        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
498
4992002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
500
501        * start/Makefile.am: Use install-data-local to install startfile.
502
5032002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
504
505        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
506
5072002-11-04      Joel Sherrill <joel@OARcorp.com>
508
509        * console/console.c, network/ne2000.c: Removed warnings.
510
5112002-11-01      Joel Sherrill <joel@OARcorp.com>
512
513        * startup/bspstart.c: Removed warnings.
514
5152002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
516
517        * .cvsignore: Reformat.
518        Add autom4te*cache.
519        Remove autom4te.cache.
520
5212002-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
522
523        * configure.ac: Remove duplicate timer/Makefile in AC_CONFIG_FILES.
524
5252002-08-21      Joel Sherrill <joel@OARcorp.com>
526
527        * bsp_specs: Added support for -nostdlibs.
528
5292002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
530
531        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
532        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
533        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
534        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
535        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
536        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
537        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
538
5392002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
540
541        * start/Makefile.am: Eliminate PGM.
542        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
543
5442002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
545
546        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
547
5482002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
549
550        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
551        Remove $(OBJS) from all-local.
552
5532002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
554
555        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
556
5572001-05-17      Joel Sherrill <joel@OARcorp.com>
558
559        * startup/linkcmds: Per PR224, added wild card math to .rodata.
560
5612002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
562
563        * include/bsp.h: include <libcpu/cpu.h>.
564        * console/console.c: Remove unused variable console_open_count.
565
5662002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
567
568        * configure.ac:
569        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
570        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
571        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
572        * Makefile.am: Remove AUTOMAKE_OPTIONS.
573        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
574        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
575        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
576        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
577        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
578        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
579        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
580
5812002-03-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
582
583        * configure.ac: Remove stray ';', PR 139.
584
5852002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
586
587        * include/bsp.h: Include rtems/bspIo.h instead of bspIo.h.
588
5892001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
590
591        * bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu,
592        replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
593
5942001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
595
596        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
597
5982001-11-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
599
600        * configure.ac: Add RTEMS_BSPOPTS_*(LOAD_RTC_AT_START),
601        RTEMS_BSPOPTS_*(BSP_DEBUG), RTEMS_BSPOPTS_*(UARTDEBUG),
602        remove RTEMS_OUTPUT_BUILD_SUBDIRS.
603
6042001-10-12      Joel Sherrill <joel@OARcorp.com>
605
606        * startup/linkcmds: Fixed typo.
607
6082001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
609
610        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
611        * configure.in: Remove.
612        * configure.ac: New file, generated from configure.in by autoupdate.
613
6142001-09-27      Joel Sherrill <joel@OARcorp.com>
615
616        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
617
6182001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
619
620        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
621
6222001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
623
624        * configure.in: Add bspopts.h.
625        * include/.cvsignore: Add bspopts.h*, stamp-h*.
626        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
627        * include/bsp.h: Include bspopts.h.
628
6292001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
630
631        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
632
6332000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
634
635        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
636
6372000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
638
639        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
640
6412000-11-01      Joel Sherrill <joel@OARcorp.com>
642
643        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
644        and libcsupport.h moved from libc to lib/include/rtems and
645        now must be referenced as <rtems/XXX.h>.   Header file order
646        was cleaned up while doing this.
647
6482000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
649
650        * configure.in, Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
651        Switch to GNU canonicalization.
652
6532000-10-19      Joel Sherrill <joel@OARcorp.com>
654
655        * console/console.c: Invoke BSP_uart_init() with all arguments
656        now that it takes more parameters.
657
6582000-10-17      Joel Sherrill <joel@OARcorp.com>
659
660        * startup/Makefile.am: Added idt.c since it has been moved libcpu/i386
661        to libbsp/i386/shared/irq.
662
6632000-09-29      Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
664
665        * startup/linkcmds: Added lines so DWARF debug information
666        would be available.  Otherwise gdb complains that the offsets
667        for the debug info are incorrect and doesn't load the files.
668
6692000-09-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
670
671        * start/Makefile.am: Remove AM_CPPFLAGS and GAS_CODE16 conditional.
672        * startup/Makefile.am: Cleanup comments.
673
6742000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
675
676        * clock/Makefile.am, console/Makefile.am, network/Makefile.am,
677        start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
678        wrapup/Makefile.am: Include compile.am
679
6802000-08-10      Joel Sherrill <joel@OARcorp.com>
681
682        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.