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

4.104.114.95
Last change on this file since b67a822 was b67a822, checked in by Joel Sherrill <joel.sherrill@…>, on 05/15/08 at 15:54:11

2008-05-15 Joel Sherrill <joel.sherrill@…>

  • startup/bspstart.c, startup/bspstart.c.nocache: Add capability for bootcard.c BSP Initialization Framework to ask the BSP where it has memory for the RTEMS Workspace and C Program Heap. These collectively are referred to as work area. If the BSP supports this, then it does not have to include code to split the available memory between the two areas. This reduces the amount of code in the BSP specific bspstart.c file. Additionally, the shared framework can initialize the C Library, call rtems_debug_enable(), and dirty the work area memory. Until most/all BSPs support this new capability, if the BSP supports this, it should call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac. When the transition is complete, this autoconf macro can be removed.
  • Property mode set to 100644
File size: 18.7 KB
Line 
12008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
2
3        * startup/bspstart.c, startup/bspstart.c.nocache: Add capability for
4        bootcard.c BSP Initialization Framework to ask the BSP where it has
5        memory for the RTEMS Workspace and C Program Heap. These collectively
6        are referred to as work area. If the BSP supports this, then it does
7        not have to include code to split the available memory between the
8        two areas. This reduces the amount of code in the BSP specific
9        bspstart.c file. Additionally, the shared framework can initialize
10        the C Library, call rtems_debug_enable(), and dirty the work area
11        memory. Until most/all BSPs support this new capability, if the BSP
12        supports this, it should call
13        RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac. When
14        the transition is complete, this autoconf macro can be removed.
15
162008-05-15      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
17
18        * irq/irq.c:
19        make sure, that the masking operations in
20        ICTL and MSR are executed in order
21
222008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
23
24        * Makefile.am: Rework to avoid .rel files.
25
262008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
27
28        * startup/bspstart.c, startup/bspstart.c.nocache: Refactored and
29        renamed initialization routines to rtems_initialize_data_structures,
30        rtems_initialize_before_drivers, rtems_initialize_device_drivers, and
31        rtems_initialize_start_multitasking. This opened the sequence up so
32        that bootcard() could provide a more robust and flexible framework
33        which is easier to explain and understand. This also lays the
34        groundwork for sharing the division of available memory between the
35        RTEMS workspace and heap and the C library initialization across all
36        BSPs.
37
382008-04-23      Joel Sherrill <joel.sherrill@OARcorp.com>
39
40        * startup/bspstart.c, startup/bspstart.c.nocache: Remove all references
41        to console_reserve_resources and termios_reserve_resources.
42
432008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
44
45        * startup/linkcmds: Add wildcard to gcc_except_table section so
46        programs compiled with gcc 4.3.x can link.
47
482007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
49
50        * include/bsp.h, startup/bspstart.c, startup/bspstart.c.nocache:
51        Eliminate copies of the Configuration Table. Use the RTEMS provided
52        accessor macros to obtain configuration fields.
53
542007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
55
56        * startup/bspstart.c, startup/bspstart.c.nocache: Move
57        interrupt_stack_size field from CPU Table to Configuration Table.
58        Eliminate CPU Table from all ports. Delete references to CPU Table in
59        all forms.
60
612007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
62
63        * Makefile.am: Add bsppredriverhook.c.
64        * irq/irq.h: Attempt to correct definition of
65        BSP_CPM_IRQ_LOWEST_OFFSET.
66
672007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
68
69        * startup/bspstart.c, startup/bspstart.c.nocache: Moved most of the
70        remaining CPU Table fields to the Configuration Table. This included
71        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
72        do_zero_of_workspace, extra_mpci_receive_server_stack,
73        stack_allocate_hook, and stack_free_hook. As a side-effect of this
74        effort some multiprocessing code was made conditional and some style
75        clean up occurred.
76
772007-11-30      Till Straumann <strauman@slac.stanford.edu>
78
79        * irq/irq.h, irq/irq_init.c: Removed the definition
80        of ASM_IRQ_VECTOR_BASE; this symbol was only use to
81        initialize the irqBase member of the rtems_irq_global_settings
82        struct. However, irqBase is an rtems_irq_symbolic_name,
83        so using BSP_LOWEST_OFFSET is more appropriate.
84
852007-11-28      Joel Sherrill <joel.sherrill@OARcorp.com>
86
87        * startup/bspstart.c, startup/bspstart.c.nocache: Eliminate PowerPC
88        specific elements from the CPU Table. They have been replaced with
89        variables named bsp_XXX as needed.
90
912007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
92
93        PR 1257/bsps
94        * irq/irq.c: Code outside of cpukit should use the public API for
95        rtems_interrupt_disable/rtems_interrupt_enable. By bypassing the
96        public API and directly accessing _CPU_ISR_Disable and
97        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
98        directive which could lead to problems. This patch also changes the
99        type of the variable passed into these routines and addresses minor
100        style issues.
101
1022007-07-12      Joel Sherrill <joel.sherrill@OARcorp.com>
103
104        * Makefile.am: Correct so it now links.
105
1062007-07-10      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
107
108        * vectors/vectors_init.c, irq/irq_init.c:
109        adapted to shared exception code
110
1112007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
112
113        * bsp_specs: Remove qrtems_debug.
114
1152007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
116
117        * bsp_specs: Remove lib (Now expected to exist in GCC).
118
1192007-03-15  Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
120
121        * startup/bspstart.c: set external clock to 0 for some boards to
122        match the "auto clock detection" scheme in the libcpu clock driver
123        * startup/linkcmds: remove content of dpram section to avoid
124        download hangs with the EPPCBug board monitor
125
1262006-12-13      Ralf Corsépius <ralf.corsepius@rtems.org>
127
128        * network/network.c, startup/imbx8xx.c: Minor warning fixes.
129
1302006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
131
132        * configure.ac: New BUG-REPORT address.
133
1342006-11-15      Joel Sherrill <joel@OARcorp.com>
135
136        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
137        file and simplified initialization.
138
1392006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
140
141        * configure.ac: Require autoconf-2.60. Require automake-1.10.
142
1432006-08-09      Joel Sherrill <joel@OARcorp.com>
144
145        * startup/linkcmds: Clean up a bit after adding missing .rela sections.
146
1472006-03-08      Joel Sherrill <joel@OARcorp.com>
148
149        * startup/linkcmds: Add .gnu.linkonce.b.* section.
150
1512006-02-08      Joel Sherrill <joel@OARcorp.com>
152
153        * startup/linkcmds: Add sections required by newer gcc versions.
154
1552006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
156
157        * configure.ac: Remove explicit ampolish3 support (now in
158        RTEMS_BSP_CONFIGURE).
159
1602006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
161
162        * configure.ac: Add ampolish3 support.
163        * Makefile.am: Add preinstall.am.
164
1652006-01-09      Ralf Corsepius <ralf.corsepius@rtems.org>
166
167        * Makefile.am: Don't include subdirs.am.
168
1692005-10-06      Till Straumann <strauman@slac.stanford.edu>
170
171        PR 833/bsps
172        * irq/irq_asm.S: Currently, all (new exception) BSPs explicitely enable
173        the FPU across the user ISR but DONT save/restore the FPU context.
174        Any use of the FPU fron the user handler (e.g., due to GCC
175        optimizations) result in corruption. The fix results in an exception
176        in such cases (user ISR must explicitely save/enable/restore FPU).
177
1782005-09-12      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
179
180        PR 527/bsps
181        PR 822/bsps
182        * console/console.c, startup/bspstart.c, startup/imbx8xx.c,
183        startup/mmutlbtab.c, startup/start.S, vectors/vectors_init.c:
184        Currently the MBX8xx BSP does not boot, because some logical errors
185        are in the startup code. Additionally, the mpc8xx shared clock driver
186        does not support the clocking scheme of some of the board variants,
187        which are clocked from a 32768Hz (!) external crystal.
188
1892003-12-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
190
191        * startup/Makefile.am: start.S instead of start.s.
192
1932003-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
194
195        PR 545/bsps
196        * startup/setvec.c: Removed.
197        * startup/Makefile.am: Remove setvec.c.
198
1992003-10-22      Joel Sherrill <joel@OARcorp.com>
200
201        PR 510/bsps
202        * irq/irq.h: Add extern C wrapper.
203
2042003-09-04      Joel Sherrill <joel@OARcorp.com>
205
206        * clock/p_clock.c, ide/pcmcia_ide.c, include/bsp.h, include/coverhd.h,
207        irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c,
208        startup/bspstart.c, startup/bspstart.c.nocache, startup/imbx8xx.c,
209        startup/mmutlbtab.c, startup/setvec.c, startup/start.S,
210        vectors/vectors.h, vectors/vectors_init.c: URL for license changed.
211
2122003-08-22      Joel Sherrill <joel@OARcorp.com>
213
214        PR 445/bsps
215        * bsp_specs: Hand edited to duplicate change Ralf applied to the CVS
216        trunk.
217
2182003-08-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
219
220        * ide/Makefile.am: Don't include @RTEMS_BSP@.cfg.
221
2222003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
223
224        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
225
2262003-07-18      Till Straumann <strauman@slac.stanford.edu>
227
228        PR 288/rtems
229        * irq/irq_asm.S, startup/bspstart.c: _ISR_Nest_level is now properly
230        maintained.
231
2322003-03-25      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
233
234        PR 368/filesystem
235        * ide/*: added BSP support for libchip standard ide driver
236
2372003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
238
239        * configure.ac: Remove AC_CONFIG_AUX_DIR.
240
2412003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
242
243        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
244
2452003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
246
247        * configure.ac: AC_PREREQ(2.57).
248
2492003-01-20      Joel Sherrill <joel@OARcorp.com>
250
251        * startup/linkcmds*: Add FreeBSD sysctl() sections.
252
2532002-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
254
255        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
256        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
257        * irq/Makefile.am: Don't include @RTEMS_BSP@.cfg.
258        Remove SORDID_HACK. Eliminate *_O_FILES.
259        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
260        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
261        * vectors/Makefile.am: Don't include @RTEMS_BSP@.cfg.
262
2632002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
264
265        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
266
2672002-11-04      Joel Sherrill <joel@OARcorp.com>
268
269        * console/console.c, network/network.c: Removed warnings.
270
2712002-11-04      Joel Sherrill <joel@OARcorp.com>
272
273        * console/console.c, network/network.c: Removed warnings.
274
2752002-11-01      Joel Sherrill <joel@OARcorp.com>
276
277        * clock/p_clock.c, console/console.c, startup/bspstart.c: Removed
278        warnings.
279
2802002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
281
282        * .cvsignore: Reformat.
283        Add autom4te*cache.
284        Remove autom4te.cache.
285
2862002-08-21      Joel Sherrill <joel@OARcorp.com>
287
288        * bsp_specs: Added support for -nostdlibs.
289
2902002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
291
292        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
293        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
294        * irq/Makefile.am: Use .$(OBJEXT) instead of .o.
295        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
296        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
297        * vectors/Makefile.am: Use .$(OBJEXT) instead of .o.
298        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
299
3002002-08-01      Joel Sherrill <joel@OARcorp.com>
301
302        * include/coverhd.h: Per PR261 removed include of
303        <rtems/score/targopts.h> because the file is no longer being
304        generated and really wasn't being used anyway.
305
3062002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
307
308        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
309
3102002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
311
312        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
313        Remove $(OBJS) from all-local.
314
3152002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
316
317        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
318
3192001-05-09      Joel Sherrill <joel@OARcorp.com>
320
321        * startup/linkcmds: In support of gcc 3.1, added one of more
322        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
323        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
324        and direction of segments to memory regions may also have been
325        addressed.  This was a sweep across all BSPs.
326 
3272002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
328
329        * irq/irq.c: Reflect changes to <rtems/score/cpu.h>.
330        Fix loopCounter.
331        * irq/irq_asm.S:  Reflect changes to <rtems/score/cpu.h>.
332        * vectors/vectors.S: Ditto.
333        * vectors/vectors_init.c: Include <rtems/bspIo.h>.
334
3352002-04-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
336
337        * startup/bspstart.c: Include <libcpu/cpuIdent.h>, <rtems/bspIo.h>.
338
3392002-04-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
340
341        * configure.ac: Add BSPOPTS_*(DISPATCH_HANDLER_STAT).
342          Remove RTEMS_ENABLE_LIBCDIR.
343
3442001-04-08      Joel Sherrill <joel@OARcorp.com>
345
346        * startup/linkcmds: Per PR170, PR171, and PR172 add .eh_frame
347 
3482002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
349
350        * configure.ac:
351        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
352        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
353        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
354        * Makefile.am: Remove AUTOMAKE_OPTIONS.
355        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
356        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
357        * irq/Makefile.am: Remove AUTOMAKE_OPTIONS.
358        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
359        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
360        * vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
361        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
362
3632001-01-16      Eric Valette <valette@crt.canon.fr>
364
365        * vector/vector.S, irq/irq_asm.S: Make sure vectors work properly
366        in RAM and Flash based code.  The code executed for the Flash
367        version runs in both cases (code in Flash/code in RAM) but as it
368        is less efficient than the one optimized for RAM, it put it inside
369        ifdef.  A compilation error is generated if code is linked in Flash
370        with the correct ifdef set...
371
3722001-01-16      Eric Valette <valette@crt.canon.fr>
373
374        * irq/irq.c: Correct minor bug in mbx8xx interrupt handling.
375        Quoting Eric, "In theory it should be applied in each mpc8xx
376        related BSP but as I cannot test it plase maintainer/users
377        submit patch accordingly."
378
3792002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
380
381        * console/console.c: Include rtems/bspIo.h instead of bspIo.h.
382
3832001-12-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
384
385        * configure.ac: Remove RTEMS_ENABLE_NETWORKING.
386
3872001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
388
389        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
390
3912001-11-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
392
393        * configure.ac: Add RTEMS_BSPOPTS_*(DATA_CACHE_ENABLE),
394        RTEMS_BSPOPTS_*(INSTRUCTION_CACHE_ENABLE).
395
3962001-11-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
397
398        * Makefile.am: Add @exceptions@ to SUBDIRS.
399        * configure.ac: Add RTEMS_BSPOPTS_*(), merge-in settings
400        from make/custom/mbx*.cfg, add RTEMS_PPC_EXCEPTIONS([new]).
401        * include/Makefile.am: Convert PREINSTALL_FILES to
402        TMPINSTALL_FILES, include force-preinstall.am.
403        * vectors/Makefile.am: remove bogus VPATH.
404        * wrapup/Makefile.am: Apply @exceptions@.
405
4062001-10-29      Joel Sherrill <joel@OARcorp.com>
407
408        * include/bsp.h: Modify Install_tm27_vector() so this BSP will link tm27.
409
4102001-10-12      Joel Sherrill <joel@OARcorp.com>
411
412        * clock/p_clock.c, include/bsp.h, include/coverhd.h,
413        startup/bspstart.c, startup/bspstart.c.nocache, startup/setvec.c,
414        startup/start.S: Fixed typo.
415
4162001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
417
418        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
419        * configure.in: Remove.
420        * configure.ac: New file, generated from configure.in by autoupdate.
421
4222001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
423
424        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
425        * irq/Makefile.am: Use 'PREINSTALL_FILES ='.
426        * vectors/Makefile.am: Use 'PREINSTALL_FILES ='.
427
4282001-08-31  Eric Valette <valette@crf.canon.fr>
429
430        * network/network.c: Fix to account for return value when
431        installing interrupts handler.
432
4332001-06-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
434
435        * configure.in: Add bspopts.h.
436        * include/.cvsignore: Add bspopts.h*, stamp-h*.
437        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
438        * include/bsp.h: Include bspopts.h.
439
4402000-06-08      Eric Valette <valette@crf.canon.fr>
441
442        * console/console.c, include/commproc.h, startup/start.S:
443        The printk/printf did not work when loaded by EPPCBUG. They did
444        work when loaded with the BDM debugger.  I suspected EPPBUG
445        made some nasty things like patching Communication processor
446        microcode...  Anyway, the attached patch:
447          1) Enables to have printk nearly immediately after boot,
448          2) Make printf work automagically (I do not know why except I make a
449        different initialization for printk that should be overwritten by
450        console init later ?)
451
452        I let the default to be using EPPCBUG embedded firmware to boot and
453        using this printk early enabler code (LOADED_BY_EPPCBUG and
454        EARLY_CONSOLE) are on.
455
4562001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
457
458        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
459
4602001-04-20      Eric Valette <valette@crf.canon.fr>
461
462        * include/bsp.h: Added include of <bsp/vectors.h>
463        * vectors/vectors.h: Corrected typos.
464
4652001-04-11      Eric Valette <valette@crf.canon.fr>
466
467        * network/network.c: Fix unnecessary double assignment.
468
4692001-03-30      Eric Valette <valette@crf.canon.fr>
470
471        * clock/.cvsignore, clock/Makefile.am, clock/p_clock.c,
472        include/8xx_immap.h, include/commproc.h, include/mbx.h,
473        irq/.cvsignore, irq/Makefile.am, irq/irq.c, irq/irq.h,
474        irq/irq_asm.S, irq/irq_init.c, vectors/.cvsignore,
475        vectors/Makefile.am, vectors/vectors.S, vectors/vectors.h,
476        vectors/vectors_init.c: New files.
477        * Makefile.am, configure.in, console/console.c,
478        include/Makefile.am, network/network.c, startup/Makefile.am,
479        startup/bspstart.c, startup/imbx8xx.c, startup/linkcmds,
480        startup/mmutlbtab.c, startup/start.S, wrapup/Makefile.am:
481        The modifications to this BSP reflect the conversion of the
482        mpc8xx CPU to the "new exception processing model."
483
4842000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
485
486        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
487
4882000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
489
490        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
491
4922000-11-01      Joel Sherrill <joel@OARcorp.com>
493
494        * startup/bspstart.c, startup/bspstart.c: assoc.h, error.h, libio_.h,
495        libio.h, and libcsupport.h moved from libc to lib/include/rtems and
496        now must be referenced as <rtems/XXX.h>.   Header file order
497        was cleaned up while doing this.
498        Also removed obsolete references to STACK_CHECKER_ON.
499
5002000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
501
502        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
503        Switch to GNU canonicalization.
504
5052000-10-20      Joel Sherrill <joel@OARcorp.com>
506
507        * console/console.c: Add mbx8xx_console_get_configuration() which
508        returns either nvram configuration or a static equivalent.
509
5102000-10-18      Joel Sherrill <joel@OARcorp.com>
511
512        * console/console.c: Added BSP dependent routine
513        mbx8xx_console_use_maximum_buffer_size() required by mbx8xx
514        console-generic code.  This avoids libcpu use of bsp.h.
515
5162000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
517
518        * console/Makefile.am, network/Makefile.am, startup/Makefile.am,
519        wrapup/Makefile.am: Include compile.am
520
5212000-08-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
522
523        * configure.in: Add RTEMS_PROG_CC_FOR_TARGET, RTEMS_CANONICAL_TOOLS
524
5252000-08-11  Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
526
527        * README:
528        * console/console.c:
529        * include/bsp.h:
530        * network/network.c:
531        * startup/bspstart.c:
532        Add support for configuration parameters in NVRAM
533
5342000-08-11  Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
535
536        * console/console.c: Fix polled input.
537
5382000-08-10      Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
539
540        * README: Updated.
541        * console/console.c: Addition of support for shared printk and
542        no termios.
543        * include/bsp.h: Addition of second parameter to
544        rtems_enet_driver_attach. Removed prototypes for printk and
545        BSP_output_string.
546        * network/network.c(rtems_enet_driver_attach): Addition of second
547        parameter to function.
548
5492000-08-10      Joel Sherrill <joel@OARcorp.com>
550
551        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.