source: rtems/c/src/lib/libbsp/powerpc/mbx8xx/ChangeLog @ bc98089

4.104.115
Last change on this file since bc98089 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: 22.2 KB
Line 
12009-09-15      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
4
5 2009-07-16     Joel Sherrill <joel.sherrill@oarcorp.com>
6
7        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
8        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
9        have the same options.
10
112009-05-18      Joel Sherrill <joel.sherrill@OARcorp.com>
12
13        * startup/linkcmds: Correct name of ENTRY.
14
152009-04-28      Chris Johns <chrisj@rtems.org>
16
17        * startup/start.S: Update for boot_card command line change.
18
192009-03-12      Joel Sherrill <joel.sherrill@OARcorp.com>
20
21        PR 1385/cpukit
22        * irq/irq_asm.S: When the type rtems_boolean was switched to the C99
23        bool, the size changed from 4 bytes to 1 byte. The interrupt
24        dispatching code accesses two boolean variables for scheduling
25        purposes and the assembly implementations of this code did not get
26        updated.
27
282008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
29
30        * bsp_specs: Move -e start from *link to *startfile to avoid warning
31        for undefined entry symbol when linking relocatables with binutils
32        2.19.
33
342008-10-02      Joel Sherrill <joel.sherrill@OARcorp.com>
35
36        * Makefile.am, preinstall.am: Use shared tm27.h stub.
37        * include/tm27.h: Removed.
38
392008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
40
41        * Makefile.am: Eliminate bsp.am.
42
432008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
44
45        * Makefile.am: Eliminate *_SOURCES.
46
472008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
48
49        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
50        components.
51
522008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
53
54        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
55
562008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
57
58        * configure.ac: Make letting boot_card() handle work area allocation
59        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
60        BSP_BOOTCARD_OPTIONS.
61
622008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
63
64        * include/bsp.h: Remove unnecessary boilerplate comments.
65
662008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
67
68        * include/bsp.h: Eliminate definitions of BSP_LIBIO_MAX_FDS since this
69        is NOT used anywhere.
70
712008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
72
73        * Makefile.am, startup/linkcmds: Use top level shared
74        bsp_get_work_area() implementation.
75        * startup/bspgetworkarea.c: Removed.
76
772008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
78
79        * startup/bspstart.c: Remove unnecessary includes of
80        rtems/libcsupport.h and rtems/libio.h.
81
822008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
83
84        * startup/bspstart.c, startup/bspstart.c.nocache: Add use of
85        bsp_get_work_area() in its own file and rely on BSP Framework to
86        perform more initialization.
87
882008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
89
90        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds:
91        Create bsp_get_work_area() into its own file and use BSP Framework to
92        perform more initialization.
93        * startup/bspgetworkarea.c: New file.
94
952008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
96
97        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
98        phase, all prototypes were removed from bsp.h and empty
99        implementations were removed and made to use the shared stub.
100
1012008-09-06      Ralf Corsépius <ralf.corsepius@rtems.org>
102
103        * ide/pcmcia_ide.c, irq/irq.c, startup/bspstart.c,
104        startup/bspstart.c.nocache: Convert to "bool".
105
1062008-08-20      Ralf Corsépius <ralf.corsepius@rtems.org>
107
108        * clock/p_clock.c, console/console.c, irq/irq.c, irq/irq_init.c,
109        vectors/vectors_init.c: Add missing prototypes.
110
1112008-07-29      Chris Johns <chrisj@rtems.org>
112
113        * ide/pcmcia_ide.c: Updated to the libblock changes.
114
1152008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
116
117        * startup/bspstart.c, startup/bspstart.c.nocache: Add capability for
118        bootcard.c BSP Initialization Framework to ask the BSP where it has
119        memory for the RTEMS Workspace and C Program Heap. These collectively
120        are referred to as work area. If the BSP supports this, then it does
121        not have to include code to split the available memory between the
122        two areas. This reduces the amount of code in the BSP specific
123        bspstart.c file. Additionally, the shared framework can initialize
124        the C Library, call rtems_debug_enable(), and dirty the work area
125        memory. Until most/all BSPs support this new capability, if the BSP
126        supports this, it should call
127        RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac. When
128        the transition is complete, this autoconf macro can be removed.
129
1302008-05-15      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
131
132        * irq/irq.c:
133        make sure, that the masking operations in
134        ICTL and MSR are executed in order
135
1362008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
137
138        * Makefile.am: Rework to avoid .rel files.
139
1402008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
141
142        * startup/bspstart.c, startup/bspstart.c.nocache: Refactored and
143        renamed initialization routines to rtems_initialize_data_structures,
144        rtems_initialize_before_drivers, rtems_initialize_device_drivers, and
145        rtems_initialize_start_multitasking. This opened the sequence up so
146        that bootcard() could provide a more robust and flexible framework
147        which is easier to explain and understand. This also lays the
148        groundwork for sharing the division of available memory between the
149        RTEMS workspace and heap and the C library initialization across all
150        BSPs.
151
1522008-04-23      Joel Sherrill <joel.sherrill@OARcorp.com>
153
154        * startup/bspstart.c, startup/bspstart.c.nocache: Remove all references
155        to console_reserve_resources and termios_reserve_resources.
156
1572008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
158
159        * startup/linkcmds: Add wildcard to gcc_except_table section so
160        programs compiled with gcc 4.3.x can link.
161
1622007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
163
164        * include/bsp.h, startup/bspstart.c, startup/bspstart.c.nocache:
165        Eliminate copies of the Configuration Table. Use the RTEMS provided
166        accessor macros to obtain configuration fields.
167
1682007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
169
170        * startup/bspstart.c, startup/bspstart.c.nocache: Move
171        interrupt_stack_size field from CPU Table to Configuration Table.
172        Eliminate CPU Table from all ports. Delete references to CPU Table in
173        all forms.
174
1752007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
176
177        * Makefile.am: Add bsppredriverhook.c.
178        * irq/irq.h: Attempt to correct definition of
179        BSP_CPM_IRQ_LOWEST_OFFSET.
180
1812007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
182
183        * startup/bspstart.c, startup/bspstart.c.nocache: Moved most of the
184        remaining CPU 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-30      Till Straumann <strauman@slac.stanford.edu>
192
193        * irq/irq.h, irq/irq_init.c: Removed the definition
194        of ASM_IRQ_VECTOR_BASE; this symbol was only use to
195        initialize the irqBase member of the rtems_irq_global_settings
196        struct. However, irqBase is an rtems_irq_symbolic_name,
197        so using BSP_LOWEST_OFFSET is more appropriate.
198
1992007-11-28      Joel Sherrill <joel.sherrill@OARcorp.com>
200
201        * startup/bspstart.c, startup/bspstart.c.nocache: Eliminate PowerPC
202        specific elements from the CPU Table. They have been replaced with
203        variables named bsp_XXX as needed.
204
2052007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
206
207        PR 1257/bsps
208        * irq/irq.c: Code outside of cpukit should use the public API for
209        rtems_interrupt_disable/rtems_interrupt_enable. By bypassing the
210        public API and directly accessing _CPU_ISR_Disable and
211        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
212        directive which could lead to problems. This patch also changes the
213        type of the variable passed into these routines and addresses minor
214        style issues.
215
2162007-07-12      Joel Sherrill <joel.sherrill@OARcorp.com>
217
218        * Makefile.am: Correct so it now links.
219
2202007-07-10      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
221
222        * vectors/vectors_init.c, irq/irq_init.c:
223        adapted to shared exception code
224
2252007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
226
227        * bsp_specs: Remove qrtems_debug.
228
2292007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
230
231        * bsp_specs: Remove lib (Now expected to exist in GCC).
232
2332007-03-15  Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
234
235        * startup/bspstart.c: set external clock to 0 for some boards to
236        match the "auto clock detection" scheme in the libcpu clock driver
237        * startup/linkcmds: remove content of dpram section to avoid
238        download hangs with the EPPCBug board monitor
239
2402006-12-13      Ralf Corsépius <ralf.corsepius@rtems.org>
241
242        * network/network.c, startup/imbx8xx.c: Minor warning fixes.
243
2442006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
245
246        * configure.ac: New BUG-REPORT address.
247
2482006-11-15      Joel Sherrill <joel@OARcorp.com>
249
250        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
251        file and simplified initialization.
252
2532006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
254
255        * configure.ac: Require autoconf-2.60. Require automake-1.10.
256
2572006-08-09      Joel Sherrill <joel@OARcorp.com>
258
259        * startup/linkcmds: Clean up a bit after adding missing .rela sections.
260
2612006-03-08      Joel Sherrill <joel@OARcorp.com>
262
263        * startup/linkcmds: Add .gnu.linkonce.b.* section.
264
2652006-02-08      Joel Sherrill <joel@OARcorp.com>
266
267        * startup/linkcmds: Add sections required by newer gcc versions.
268
2692006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
270
271        * configure.ac: Remove explicit ampolish3 support (now in
272        RTEMS_BSP_CONFIGURE).
273
2742006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
275
276        * configure.ac: Add ampolish3 support.
277        * Makefile.am: Add preinstall.am.
278
2792006-01-09      Ralf Corsepius <ralf.corsepius@rtems.org>
280
281        * Makefile.am: Don't include subdirs.am.
282
2832005-10-06      Till Straumann <strauman@slac.stanford.edu>
284
285        PR 833/bsps
286        * irq/irq_asm.S: Currently, all (new exception) BSPs explicitely enable
287        the FPU across the user ISR but DONT save/restore the FPU context.
288        Any use of the FPU fron the user handler (e.g., due to GCC
289        optimizations) result in corruption. The fix results in an exception
290        in such cases (user ISR must explicitely save/enable/restore FPU).
291
2922005-09-12      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
293
294        PR 527/bsps
295        PR 822/bsps
296        * console/console.c, startup/bspstart.c, startup/imbx8xx.c,
297        startup/mmutlbtab.c, startup/start.S, vectors/vectors_init.c:
298        Currently the MBX8xx BSP does not boot, because some logical errors
299        are in the startup code. Additionally, the mpc8xx shared clock driver
300        does not support the clocking scheme of some of the board variants,
301        which are clocked from a 32768Hz (!) external crystal.
302
3032003-12-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
304
305        * startup/Makefile.am: start.S instead of start.s.
306
3072003-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
308
309        PR 545/bsps
310        * startup/setvec.c: Removed.
311        * startup/Makefile.am: Remove setvec.c.
312
3132003-10-22      Joel Sherrill <joel@OARcorp.com>
314
315        PR 510/bsps
316        * irq/irq.h: Add extern C wrapper.
317
3182003-09-04      Joel Sherrill <joel@OARcorp.com>
319
320        * clock/p_clock.c, ide/pcmcia_ide.c, include/bsp.h, include/coverhd.h,
321        irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c,
322        startup/bspstart.c, startup/bspstart.c.nocache, startup/imbx8xx.c,
323        startup/mmutlbtab.c, startup/setvec.c, startup/start.S,
324        vectors/vectors.h, vectors/vectors_init.c: URL for license changed.
325
3262003-08-22      Joel Sherrill <joel@OARcorp.com>
327
328        PR 445/bsps
329        * bsp_specs: Hand edited to duplicate change Ralf applied to the CVS
330        trunk.
331
3322003-08-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
333
334        * ide/Makefile.am: Don't include @RTEMS_BSP@.cfg.
335
3362003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
337
338        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
339
3402003-07-18      Till Straumann <strauman@slac.stanford.edu>
341
342        PR 288/rtems
343        * irq/irq_asm.S, startup/bspstart.c: _ISR_Nest_level is now properly
344        maintained.
345
3462003-03-25      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
347
348        PR 368/filesystem
349        * ide/*: added BSP support for libchip standard ide driver
350
3512003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
352
353        * configure.ac: Remove AC_CONFIG_AUX_DIR.
354
3552003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
356
357        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
358
3592003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
360
361        * configure.ac: AC_PREREQ(2.57).
362
3632003-01-20      Joel Sherrill <joel@OARcorp.com>
364
365        * startup/linkcmds*: Add FreeBSD sysctl() sections.
366
3672002-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
368
369        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
370        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
371        * irq/Makefile.am: Don't include @RTEMS_BSP@.cfg.
372        Remove SORDID_HACK. Eliminate *_O_FILES.
373        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
374        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
375        * vectors/Makefile.am: Don't include @RTEMS_BSP@.cfg.
376
3772002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
378
379        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
380
3812002-11-04      Joel Sherrill <joel@OARcorp.com>
382
383        * console/console.c, network/network.c: Removed warnings.
384
3852002-11-04      Joel Sherrill <joel@OARcorp.com>
386
387        * console/console.c, network/network.c: Removed warnings.
388
3892002-11-01      Joel Sherrill <joel@OARcorp.com>
390
391        * clock/p_clock.c, console/console.c, startup/bspstart.c: Removed
392        warnings.
393
3942002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
395
396        * .cvsignore: Reformat.
397        Add autom4te*cache.
398        Remove autom4te.cache.
399
4002002-08-21      Joel Sherrill <joel@OARcorp.com>
401
402        * bsp_specs: Added support for -nostdlibs.
403
4042002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
405
406        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
407        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
408        * irq/Makefile.am: Use .$(OBJEXT) instead of .o.
409        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
410        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
411        * vectors/Makefile.am: Use .$(OBJEXT) instead of .o.
412        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
413
4142002-08-01      Joel Sherrill <joel@OARcorp.com>
415
416        * include/coverhd.h: Per PR261 removed include of
417        <rtems/score/targopts.h> because the file is no longer being
418        generated and really wasn't being used anyway.
419
4202002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
421
422        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
423
4242002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
425
426        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
427        Remove $(OBJS) from all-local.
428
4292002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
430
431        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
432
4332001-05-09      Joel Sherrill <joel@OARcorp.com>
434
435        * startup/linkcmds: In support of gcc 3.1, added one of more
436        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
437        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
438        and direction of segments to memory regions may also have been
439        addressed.  This was a sweep across all BSPs.
440 
4412002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
442
443        * irq/irq.c: Reflect changes to <rtems/score/cpu.h>.
444        Fix loopCounter.
445        * irq/irq_asm.S:  Reflect changes to <rtems/score/cpu.h>.
446        * vectors/vectors.S: Ditto.
447        * vectors/vectors_init.c: Include <rtems/bspIo.h>.
448
4492002-04-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
450
451        * startup/bspstart.c: Include <libcpu/cpuIdent.h>, <rtems/bspIo.h>.
452
4532002-04-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
454
455        * configure.ac: Add BSPOPTS_*(DISPATCH_HANDLER_STAT).
456          Remove RTEMS_ENABLE_LIBCDIR.
457
4582001-04-08      Joel Sherrill <joel@OARcorp.com>
459
460        * startup/linkcmds: Per PR170, PR171, and PR172 add .eh_frame
461 
4622002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
463
464        * configure.ac:
465        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
466        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
467        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
468        * Makefile.am: Remove AUTOMAKE_OPTIONS.
469        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
470        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
471        * irq/Makefile.am: Remove AUTOMAKE_OPTIONS.
472        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
473        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
474        * vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
475        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
476
4772001-01-16      Eric Valette <valette@crt.canon.fr>
478
479        * vector/vector.S, irq/irq_asm.S: Make sure vectors work properly
480        in RAM and Flash based code.  The code executed for the Flash
481        version runs in both cases (code in Flash/code in RAM) but as it
482        is less efficient than the one optimized for RAM, it put it inside
483        ifdef.  A compilation error is generated if code is linked in Flash
484        with the correct ifdef set...
485
4862001-01-16      Eric Valette <valette@crt.canon.fr>
487
488        * irq/irq.c: Correct minor bug in mbx8xx interrupt handling.
489        Quoting Eric, "In theory it should be applied in each mpc8xx
490        related BSP but as I cannot test it plase maintainer/users
491        submit patch accordingly."
492
4932002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
494
495        * console/console.c: Include rtems/bspIo.h instead of bspIo.h.
496
4972001-12-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
498
499        * configure.ac: Remove RTEMS_ENABLE_NETWORKING.
500
5012001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
502
503        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
504
5052001-11-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
506
507        * configure.ac: Add RTEMS_BSPOPTS_*(DATA_CACHE_ENABLE),
508        RTEMS_BSPOPTS_*(INSTRUCTION_CACHE_ENABLE).
509
5102001-11-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
511
512        * Makefile.am: Add @exceptions@ to SUBDIRS.
513        * configure.ac: Add RTEMS_BSPOPTS_*(), merge-in settings
514        from make/custom/mbx*.cfg, add RTEMS_PPC_EXCEPTIONS([new]).
515        * include/Makefile.am: Convert PREINSTALL_FILES to
516        TMPINSTALL_FILES, include force-preinstall.am.
517        * vectors/Makefile.am: remove bogus VPATH.
518        * wrapup/Makefile.am: Apply @exceptions@.
519
5202001-10-29      Joel Sherrill <joel@OARcorp.com>
521
522        * include/bsp.h: Modify Install_tm27_vector() so this BSP will link tm27.
523
5242001-10-12      Joel Sherrill <joel@OARcorp.com>
525
526        * clock/p_clock.c, include/bsp.h, include/coverhd.h,
527        startup/bspstart.c, startup/bspstart.c.nocache, startup/setvec.c,
528        startup/start.S: Fixed typo.
529
5302001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
531
532        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
533        * configure.in: Remove.
534        * configure.ac: New file, generated from configure.in by autoupdate.
535
5362001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
537
538        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
539        * irq/Makefile.am: Use 'PREINSTALL_FILES ='.
540        * vectors/Makefile.am: Use 'PREINSTALL_FILES ='.
541
5422001-08-31  Eric Valette <valette@crf.canon.fr>
543
544        * network/network.c: Fix to account for return value when
545        installing interrupts handler.
546
5472001-06-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
548
549        * configure.in: Add bspopts.h.
550        * include/.cvsignore: Add bspopts.h*, stamp-h*.
551        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
552        * include/bsp.h: Include bspopts.h.
553
5542000-06-08      Eric Valette <valette@crf.canon.fr>
555
556        * console/console.c, include/commproc.h, startup/start.S:
557        The printk/printf did not work when loaded by EPPCBUG. They did
558        work when loaded with the BDM debugger.  I suspected EPPBUG
559        made some nasty things like patching Communication processor
560        microcode...  Anyway, the attached patch:
561          1) Enables to have printk nearly immediately after boot,
562          2) Make printf work automagically (I do not know why except I make a
563        different initialization for printk that should be overwritten by
564        console init later ?)
565
566        I let the default to be using EPPCBUG embedded firmware to boot and
567        using this printk early enabler code (LOADED_BY_EPPCBUG and
568        EARLY_CONSOLE) are on.
569
5702001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
571
572        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
573
5742001-04-20      Eric Valette <valette@crf.canon.fr>
575
576        * include/bsp.h: Added include of <bsp/vectors.h>
577        * vectors/vectors.h: Corrected typos.
578
5792001-04-11      Eric Valette <valette@crf.canon.fr>
580
581        * network/network.c: Fix unnecessary double assignment.
582
5832001-03-30      Eric Valette <valette@crf.canon.fr>
584
585        * clock/.cvsignore, clock/Makefile.am, clock/p_clock.c,
586        include/8xx_immap.h, include/commproc.h, include/mbx.h,
587        irq/.cvsignore, irq/Makefile.am, irq/irq.c, irq/irq.h,
588        irq/irq_asm.S, irq/irq_init.c, vectors/.cvsignore,
589        vectors/Makefile.am, vectors/vectors.S, vectors/vectors.h,
590        vectors/vectors_init.c: New files.
591        * Makefile.am, configure.in, console/console.c,
592        include/Makefile.am, network/network.c, startup/Makefile.am,
593        startup/bspstart.c, startup/imbx8xx.c, startup/linkcmds,
594        startup/mmutlbtab.c, startup/start.S, wrapup/Makefile.am:
595        The modifications to this BSP reflect the conversion of the
596        mpc8xx CPU to the "new exception processing model."
597
5982000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
599
600        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
601
6022000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
603
604        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
605
6062000-11-01      Joel Sherrill <joel@OARcorp.com>
607
608        * startup/bspstart.c, startup/bspstart.c: assoc.h, error.h, libio_.h,
609        libio.h, and libcsupport.h moved from libc to lib/include/rtems and
610        now must be referenced as <rtems/XXX.h>.   Header file order
611        was cleaned up while doing this.
612        Also removed obsolete references to STACK_CHECKER_ON.
613
6142000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
615
616        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
617        Switch to GNU canonicalization.
618
6192000-10-20      Joel Sherrill <joel@OARcorp.com>
620
621        * console/console.c: Add mbx8xx_console_get_configuration() which
622        returns either nvram configuration or a static equivalent.
623
6242000-10-18      Joel Sherrill <joel@OARcorp.com>
625
626        * console/console.c: Added BSP dependent routine
627        mbx8xx_console_use_maximum_buffer_size() required by mbx8xx
628        console-generic code.  This avoids libcpu use of bsp.h.
629
6302000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
631
632        * console/Makefile.am, network/Makefile.am, startup/Makefile.am,
633        wrapup/Makefile.am: Include compile.am
634
6352000-08-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
636
637        * configure.in: Add RTEMS_PROG_CC_FOR_TARGET, RTEMS_CANONICAL_TOOLS
638
6392000-08-11  Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
640
641        * README:
642        * console/console.c:
643        * include/bsp.h:
644        * network/network.c:
645        * startup/bspstart.c:
646        Add support for configuration parameters in NVRAM
647
6482000-08-11  Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
649
650        * console/console.c: Fix polled input.
651
6522000-08-10      Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
653
654        * README: Updated.
655        * console/console.c: Addition of support for shared printk and
656        no termios.
657        * include/bsp.h: Addition of second parameter to
658        rtems_enet_driver_attach. Removed prototypes for printk and
659        BSP_output_string.
660        * network/network.c(rtems_enet_driver_attach): Addition of second
661        parameter to function.
662
6632000-08-10      Joel Sherrill <joel@OARcorp.com>
664
665        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.