source: rtems/c/src/lib/libbsp/i386/i386ex/ChangeLog @ 6b2b37d2

4.104.115
Last change on this file since 6b2b37d2 was 6b2b37d2, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/15/09 at 14:45:47

2009-09-15 Ralf Corsépius <ralf.corsepius@…>

  • configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
  • Property mode set to 100644
File size: 21.8 KB
Line 
12009-09-15      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
4
5 2009-08-06     Joel Sherrill <joel.sherrill@oarcorp.com>
6
7        * startup/setvec.c: Removed.
8
92009-08-06      Joel Sherrill <joel.sherrill@oarcorp.com>
10
11        * include/tm27.h: Remove references to rtems_interrupt_catch since this
12        archiecture does not use Simple Vectored Interrupt model.
13
142009-07-16      Joel Sherrill <joel.sherrill@oarcorp.com>
15
16        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
17        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
18        have the same options.
19
202009-07-01      Sebastian Huber <sebastian.huber@embedded-brains.de>
21
22        * Makefile.am, preinstall.am: Update for generic interrupt support.
23
242009-04-28      Chris Johns <chrisj@rtems.org>
25
26        * start/start.S: Update for boot_card command line change.
27
282009-02-10      Ralf Corsépius <ralf.corsepius@rtems.org>
29
30        * clock/ckinit.c, startup/bspstart.c: Add prototypes.
31
322008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
33
34        * bsp_specs: Move -e start from *link to *startfile to avoid warning
35        for undefined entry symbol when linking relocatables with binutils
36        2.19.
37
382008-09-30      Joel Sherrill <joel.sherrill@oarcorp.com>
39
40        * timer/timer.c: Eliminate uses of old benchmark timer names.
41
422008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
43
44        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
45        of building libbspstart.a, using automake-rules.
46
472008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
48
49        * Makefile.am: Eliminate *_SOURCES.
50
512008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
52
53        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
54        components.
55
562008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
57
58        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
59
602008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
61
62        * configure.ac: Make letting boot_card() handle work area allocation
63        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
64        BSP_BOOTCARD_OPTIONS.
65
662008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
67
68        * Makefile.am: Add use of shared bsppost.c
69
702008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
71
72        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds: Use
73        top level shared bsp_get_work_area() implementation.
74
752008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
76
77        * include/bsp.h: Remove unnecessary variables and EXTERN magic.
78
792008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
80
81        * include/bsp.h: Remove unnecessary boilerplate comments.
82
832008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
84
85        * clock/ckinit.c, startup/bspstart.c: Remove unnecessary includes of
86        rtems/libcsupport.h and rtems/libio.h.
87
882008-09-05      Joel Sherrill <joel.sherrill@OARcorp.com>
89
90        * clock/ckinit.c: The Shared Memory Driver no longer requires the
91        special IOCTL in Clock_control. This was a hack which has existed
92        since before the Classic API Timer Manager was implemented. All
93        implementations of and references to Clock_control were removed.
94
952008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
96
97        * timer/timer.c: Convert to "bool".
98
992008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
100
101        * timer/timer.c: Eliminate empty function from every benchmark timer
102        driver. Fix spelling.
103
1042008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
105
106        * timer/timer.c: Rename timer driver methods to follow RTEMS
107        programming conventions.
108
1092008-08-16      Ralf Corsépius <ralf.corsepius@rtems.org>
110
111        * timer/timer.c: Add missing prototypes.
112
1132008-05-23      Joel Sherrill <joel.sherrill@OARcorp.com>
114
115        * console/console.c: Eliminate copies of switches to convert termios
116        Bxxx constants to xxx as an integer. Use the shared
117        termios_baud_to_number() routine to do the same conversion.
118
1192008-05-15      Joel Sherrill <joel.sherrill@oarcorp.com>
120
121        * network/network.c: Eliminate patterns that look like CVS conflict
122        markers.
123
1242008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
125
126        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
127        Framework to ask the BSP where it has memory for the RTEMS Workspace
128        and C Program Heap. These collectively are referred to as work area.
129        If the BSP supports this, then it does not have to include code to
130        split the available memory between the two areas. This reduces the
131        amount of code in the BSP specific bspstart.c file. Additionally, the
132        shared framework can initialize the C Library, call
133        rtems_debug_enable(), and dirty the work area memory. Until most/all
134        BSPs support this new capability, if the BSP supports this, it should
135        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
136        When the transition is complete, this autoconf macro can be removed.
137
1382008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
139
140        * Makefile.am: Rework to avoid .rel files.
141
1422008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
143
144        * startup/bspstart.c: Refactored and renamed initialization routines to
145        rtems_initialize_data_structures, rtems_initialize_before_drivers,
146        rtems_initialize_device_drivers, and
147        rtems_initialize_start_multitasking. This opened the sequence up so
148        that bootcard() could provide a more robust and flexible framework
149        which is easier to explain and understand. This also lays the
150        groundwork for sharing the division of available memory between the
151        RTEMS workspace and heap and the C library initialization across all
152        BSPs.
153
1542008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
155
156        * startup/linkcmds: Add wildcard to gcc_except_table section so
157        programs compiled with gcc 4.3.x can link.
158
1592007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
160
161        * clock/ckinit.c, include/bsp.h, startup/bspstart.c: Eliminate copies
162        of the Configuration Table. Use the RTEMS provided accessor macros to
163        obtain configuration fields.
164
1652007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
166
167        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
168        from CPU Table to Configuration Table. Eliminate CPU Table from all
169        ports. Delete references to CPU Table in all forms.
170
1712007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
172
173        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
174        Table fields to the Configuration Table. This included
175        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
176        do_zero_of_workspace, extra_mpci_receive_server_stack,
177        stack_allocate_hook, and stack_free_hook. As a side-effect of this
178        effort some multiprocessing code was made conditional and some style
179        clean up occurred.
180
1812007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
182
183        * startup/bspstart.c: Eliminate the interrupt_table_segment and
184        interrupt_table_offset fields in the i386 CPU Table since they are
185        never read.
186
1872007-05-03      Joel Sherrill <joel@OARcorp.com>
188
189        * startup/linkcmds: Handle .data.* sections
190
1912007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
192
193        * bsp_specs: Remove qrtems_debug.
194
1952006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
196
197        * network/network.c (uti596_ioctl): Use ioctl_command_t.
198
1992006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
200
201        * configure.ac: New BUG-REPORT address.
202
2032006-11-15      Joel Sherrill <joel@OARcorp.com>
204
205        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
206        file and simplified initialization.
207
2082006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
209
210        * Makefile.am: Remove superfluous -DASM.
211
2122006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
213
214        * configure.ac: Require autoconf-2.60. Require automake-1.10.
215
2162006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
217
218        * configure.ac: Remove explicit ampolish3 support (now in
219        RTEMS_BSP_CONFIGURE).
220
2212006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
222
223        * configure.ac: Add ampolish3 support.
224        * Makefile.am: Add preinstall.am.
225
2262005-10-17      Ralf Corsepius <ralf.corsepius@rtems.org>
227
228        * Makefile.am: Add pci.rel.
229
2302005-10-17      Ralf Corsepius <ralf.corsepius@rtems.org>
231
232        * Makefile.am: Install/preinstall headers from ../../i386/shared.
233
2342005-09-19      Ralf Corsepius <ralf.corsepius@rtems.org>
235
236        * network/network.c: Remove #define KERNEL.
237        Include <errno.h>.
238        * Makefile.am: Add -D_KERNEL to network_CPPFLAGS.
239
2402005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
241
242        * include/bsp.h: New header guard.
243
2442005-05-06      Jennifer Averett <jennifer.averett@oarcorp.com>
245
246        * clock/ckinit.c, console/console.c, include/bsp.h, startup/bspstart.c:
247        Moved irq.h to bsp subdirectory.
248
2492005-05-03      Jennifer Averett <jennifer.averett@oarcorp.com>
250
251        * clock/ckinit.c, console/console.c: Added support for
252        addition of parameter to ISRs.
253        * network/network.c: Modified parameter list to remove
254        warnings.
255
2562005-04-15      Joel Sherrill <joel@OARcorp.com>
257
258        * network/network.c: Fix warnings.
259
2602005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
261
262        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
263
2642005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
265
266        * Makefile.am: Remove build-variant support.
267
2682004-09-24      Ralf Corsepius <ralf.corsepius@rtems.org>
269
270        * configure.ac: Require automake > 1.9.
271
2722004-07-28      Joel Sherrill <joel@OARcorp.com>
273
274        * startup/linkcmds: Add gnu.linkonce.d and gcc_except_table sections.
275
2762004-07-25      Joel Sherrill <joel@OARcorp.com>
277
278        * Makefile.am: Add -D__INSIDE_RTEMS_BSD_TCPIP_STACK__ for network.
279
2802004-04-23      Ralf Corsepius <ralf.corsepius@rtems.org>
281
282        PR 610/bsps
283        * Makefile.am: Add include/tm27.h, Cosmetics.
284        * include/tm27.h: Final cosmetics.
285
2862004-04-22      Ralf Corsepius <ralf.corsepius@rtems.org>
287
288        * include/bsp.h: Split out tmtest27 support.
289        * include/tm27.h: New.
290
2912004-04-21      Ralf Corsepius <ralf.corsepius@rtems.org>
292
293        PR 613/bsps
294        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
295
2962004-04-21      Ralf Corsepius <ralf.corsepius@rtems.org>
297
298        PR 614/bsps
299        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
300
3012004-04-02      Ralf Corsepius <ralf.corsepius@rtems.org>
302
303        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
304        * timer/timerisr.S: Include <rtems/asm.h> instead of <asm.h>.
305
3062004-04-01      Ralf Corsepius <ralf.corsepius@rtems.org>
307
308        * network/network.c: Include <rtems/asm.h> instead of <asm.h>.
309        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
310        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
311        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
312
3132004-03-31      Ralf Corsepius <ralf.corsepius@rtems.org>
314
315        * clock/ckinit.c, include/bsp.h, startup/bspstart.c, timer/timer.c:
316        Convert to using c99 fixed size types.
317
3182004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
319
320        * Makefile.am: Reflect changes to bsp.am.
321        Preinstall dist_project_lib*.
322
3232004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
324
325        * Makefile.am: Reflect changes to bsp.am.
326
3272004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
328
329        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
330
3312004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
332
333        * Makefile.am: Pickup files from ../../i386/shared instead of
334        ../shared. Reformat.
335
3362004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
337
338        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
339        network/Makefile.am, startup/Makefile.am, timer/Makefile.am,
340        wrapup/Makefile.am. Use automake compilation rules.
341        * clock/Makefile.am, console/Makefile.am, network/Makefile.am,
342        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am: Remove.
343        * configure.ac: Reflect changes above.
344
3452004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
346
347        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
348        Add RTEMS_PROG_CCAS.
349
3502004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
351
352        * Makefile.am: Add PREINSTALL_DIRS.
353        * wrapup/Makefile.am: Reflect changes to libcpu.
354
3552004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
356
357        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
358        Add PRE/TMPINSTALL_FILES to CLEANFILES.
359        * startup/Makefile.am: Ditto.
360
3612004-01-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
362
363        * start/Makefile.am: Remove.
364        * Makefile.am: Merge-in start/Makefile.am.
365        * configure.ac: Reflect changes above.
366
3672004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
368
369        * wrapup/Makefile.am: Eliminate $(LIB).
370        Use noinst_DATA to trigger building libbsp.a.
371
3722003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
373
374        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
375        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
376
3772003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
378
379        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
380        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
381
3822003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
383
384        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
385
3862003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
387
388        * wrapup/Makefile.am: Cosmetics.
389
3902003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
391
392        * start/Makefile.am: Misc cleanups and fixes.
393        * startup/Makefile.am: Misc cleanups and fixes.
394        * wrapup/Makefile.am: Misc cleanups and fixes.
395
3962003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
397
398        * Makefile.am: Add preinstallation dirstamp support.
399        * clock/Makefile.am: Cosmetics.
400        * console/Makefile.am: Cosmetics.
401        * network/Makefile.am: Cosmetics.
402        * startup/Makefile.am: Cosmetics.
403        * timer/Makefile.am: Cosmetics.
404        * wrapup/Makefile.am: Cosmetics
405
4062003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
407
408        * clock/Makefile.am: Remove all-local: $(ARCH).
409        * console/Makefile.am: Remove all-local: $(ARCH).
410        * network/Makefile.am: Remove all-local: $(ARCH).
411        * start/Makefile.am: Remove all-local: $(ARCH).
412        * startup/Makefile.am: Remove all-local: $(ARCH).
413        * timer/Makefile.am: Remove all-local: $(ARCH).
414        * wrapup/Makefile.am: Remove all-local: $(ARCH).
415
4162003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
417
418        * Makefile.am: Merge-in include/Makefile.am.
419        Reflect changes to bsp.am.
420        * include/Makefile.am: Remove.
421        * configure.ac: Reflect changes above.
422
4232003-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
424
425        * bsp_specs: Remove *lib:.
426
4272003-09-04      Joel Sherrill <joel@OARcorp.com>
428
429        * clock/ckinit.c, console/console.c, include/bsp.h, include/coverhd.h,
430        start/80386ex.h, start/80386ex.inc, start/macros.inc, start/start.S,
431        startup/bspstart.c, startup/linkcmds, startup/setvec.c,
432        timer/timer.c, timer/timerisr.S: URL for 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      Joel Sherrill <joel@OARcorp.com>
456
457        PR 450/make_build
458        * startup/linkcmds: Added .eh_frame
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-05-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
471
472        * startup/Makefile.am: Remove -DBSP_IS_I386EX=1 (unused).
473
4742003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
475
476        * configure.ac: Remove AC_CONFIG_AUX_DIR.
477
4782003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
479
480        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
481
4822003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
483
484        * configure.ac: AC_PREREQ(2.57).
485
4862003-01-20      Joel Sherrill <joel@OARcorp.com>
487
488        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
489
4902002-12-19      Joel Sherrill <joel@OARcorp.com>
491
492        * console/console.c: Removed __assert() which conflicts with newlib.
493
4942002-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
495
496        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
497        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
498        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
499        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
500        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
501        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
502
5032002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
504
505        * start/Makefile.am: Use install-data-local to install startfile.
506
5072002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
508
509        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
510
5112002-11-04      Joel Sherrill <joel@OARcorp.com>
512
513        * network/network.c: Removed warnings.
514
5152002-11-04      Joel Sherrill <joel@OARcorp.com>
516
517        * console/console.c, network/network.c: Removed warnings.
518
5192002-11-01      Joel Sherrill <joel@OARcorp.com>
520
521        * startup/bspstart.c: Removed warnings.
522
5232002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
524
525        * .cvsignore: Reformat.
526        Add autom4te*cache.
527        Remove autom4te.cache.
528
5292002-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
530
531        * configure.ac: Remove duplicate timer/Makefile in AC_CONFIG_FILES.
532
5332002-08-21      Joel Sherrill <joel@OARcorp.com>
534
535        * bsp_specs: Added support for -nostdlibs.
536
5372002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
538
539        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
540        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
541        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
542        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
543        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
544        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
545        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
546
5472002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
548
549        * startup/bspstart.c: Per PR252 removed hack that tripled size of
550        RTEMS Workspace when POSIX is configured.  This was probably done to
551        account for confdefs.h missing some application requirements.
552
5532002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
554
555        * start/Makefile.am: Eliminate PGM.
556        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
557
5582002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
559
560        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
561
5622002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
563
564        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
565        Remove $(OBJS) from all-local.
566
5672002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
568
569        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
570
5712001-05-09      Joel Sherrill <joel@OARcorp.com>
572
573        * startup/linkcmds: In support of gcc 3.1, added one of more
574        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
575        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
576        and direction of segments to memory regions may also have been
577        addressed.  This was a sweep across all BSPs.
578 
5792002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
580
581        * include/bsp.h: include <libcpu/cpu.h>.
582
5832002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
584
585        * configure.ac:
586        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
587        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
588        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
589        * Makefile.am: Remove AUTOMAKE_OPTIONS.
590        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
591        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
592        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
593        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
594        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
595        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
596        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
597
5982002-03-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
599
600        * configure.ac: Remove stray ';', PR 139.
601
6022002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
603
604        * include/bsp.h: Include rtems/bspIo.h instead of bspIo.h.
605
6062001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
607
608        * bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu,
609        replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
610
6112001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
612
613        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
614
6152001-10-25      Joel Sherrill <joel@OARcorp.com>
616
617        * startup/linkcmds: Added _init and _fini.
618
6192001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
620
621        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
622        * configure.in: Remove.
623        * configure.ac: New file, generated from configure.in by autoupdate.
624
6252001-09-27      Joel Sherrill <joel@OARcorp.com>
626
627        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
628
6292001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
630
631        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
632
6332001-05-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
634
635        * configure.in: Add bspopts.h.
636        * include/bsp.h: Include bspopts.h.
637        * include/.cvsignore: Add bspopts.h*, stamp-h*.
638        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
639        * start/Makefile.am: Dito.
640        * network/Makefile.am: Dito.
641
6422001-05-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
643
644        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
645
6462000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
647
648        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
649
6502000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
651
652        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
653
6542000-11-01      Joel Sherrill <joel@OARcorp.com>
655
656        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
657        and libcsupport.h moved from libc to lib/include/rtems and
658        now must be referenced as <rtems/XXX.h>.   Header file order
659        was cleaned up while doing this.
660
6612000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
662
663        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
664        Switch to GNU canonicalization.
665
6662000-10-20      Joel Sherrill <joel@OARcorp.com>
667
668        * console/console.c: Invoke BSP_uart_init() with enough arguments
669        now that more communication parameters are settable.
670
6712000-10-17      Joel Sherrill <joel@OARcorp.com>
672
673        * startup/Makefile.am: Added idt.c since it has been moved libcpu/i386
674        to libbsp/i386/shared/irq.
675
6762000-09-29      Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
677
678        * startup/linkcmds: Added lines so DWARF debug information
679        would be available.  Otherwise gdb complains that the offsets
680        for the debug info are incorrect and doesn't load the files.
681
6822000-09-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
683
684        * start/Makefile.am: Remove AM_CPPFLAGS and GAS_CODE16 conditional.
685
6862000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
687
688        * clock/Makefile.am, console/Makefile.am, network/Makefile.am,
689        start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
690        wrapup/Makefile.am: Include compile.am
691
6922000-08-10      Joel Sherrill <joel@OARcorp.com>
693
694        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.