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

4.104.115
Last change on this file since fe6cce1c was fe6cce1c, checked in by Joel Sherrill <joel.sherrill@…>, on 09/15/08 at 22:05:03

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

  • startup/bspstart.c, startup/bspstart.c.nocache: Add use of bsp_get_work_area() in its own file and rely on BSP Framework to perform more initialization.
  • Property mode set to 100644
File size: 19.8 KB
Line 
12008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * startup/bspstart.c, startup/bspstart.c.nocache: Add use of
4        bsp_get_work_area() in its own file and rely on BSP Framework to
5        perform more initialization.
6
72008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
8
9        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds:
10        Create bsp_get_work_area() into its own file and use BSP Framework to
11        perform more initialization.
12        * startup/bspgetworkarea.c: New file.
13
142008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
15
16        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
17        phase, all prototypes were removed from bsp.h and empty
18        implementations were removed and made to use the shared stub.
19
202008-09-06      Ralf Corsépius <ralf.corsepius@rtems.org>
21
22        * ide/pcmcia_ide.c, irq/irq.c, startup/bspstart.c,
23        startup/bspstart.c.nocache: Convert to "bool".
24
252008-08-20      Ralf Corsépius <ralf.corsepius@rtems.org>
26
27        * clock/p_clock.c, console/console.c, irq/irq.c, irq/irq_init.c,
28        vectors/vectors_init.c: Add missing prototypes.
29
302008-07-29      Chris Johns <chrisj@rtems.org>
31
32        * ide/pcmcia_ide.c: Updated to the libblock changes.
33
342008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
35
36        * startup/bspstart.c, startup/bspstart.c.nocache: Add capability for
37        bootcard.c BSP Initialization Framework to ask the BSP where it has
38        memory for the RTEMS Workspace and C Program Heap. These collectively
39        are referred to as work area. If the BSP supports this, then it does
40        not have to include code to split the available memory between the
41        two areas. This reduces the amount of code in the BSP specific
42        bspstart.c file. Additionally, the shared framework can initialize
43        the C Library, call rtems_debug_enable(), and dirty the work area
44        memory. Until most/all BSPs support this new capability, if the BSP
45        supports this, it should call
46        RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac. When
47        the transition is complete, this autoconf macro can be removed.
48
492008-05-15      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
50
51        * irq/irq.c:
52        make sure, that the masking operations in
53        ICTL and MSR are executed in order
54
552008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
56
57        * Makefile.am: Rework to avoid .rel files.
58
592008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
60
61        * startup/bspstart.c, startup/bspstart.c.nocache: Refactored and
62        renamed initialization routines to rtems_initialize_data_structures,
63        rtems_initialize_before_drivers, rtems_initialize_device_drivers, and
64        rtems_initialize_start_multitasking. This opened the sequence up so
65        that bootcard() could provide a more robust and flexible framework
66        which is easier to explain and understand. This also lays the
67        groundwork for sharing the division of available memory between the
68        RTEMS workspace and heap and the C library initialization across all
69        BSPs.
70
712008-04-23      Joel Sherrill <joel.sherrill@OARcorp.com>
72
73        * startup/bspstart.c, startup/bspstart.c.nocache: Remove all references
74        to console_reserve_resources and termios_reserve_resources.
75
762008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
77
78        * startup/linkcmds: Add wildcard to gcc_except_table section so
79        programs compiled with gcc 4.3.x can link.
80
812007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
82
83        * include/bsp.h, startup/bspstart.c, startup/bspstart.c.nocache:
84        Eliminate copies of the Configuration Table. Use the RTEMS provided
85        accessor macros to obtain configuration fields.
86
872007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
88
89        * startup/bspstart.c, startup/bspstart.c.nocache: Move
90        interrupt_stack_size field from CPU Table to Configuration Table.
91        Eliminate CPU Table from all ports. Delete references to CPU Table in
92        all forms.
93
942007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
95
96        * Makefile.am: Add bsppredriverhook.c.
97        * irq/irq.h: Attempt to correct definition of
98        BSP_CPM_IRQ_LOWEST_OFFSET.
99
1002007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
101
102        * startup/bspstart.c, startup/bspstart.c.nocache: Moved most of the
103        remaining CPU Table fields to the Configuration Table. This included
104        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
105        do_zero_of_workspace, extra_mpci_receive_server_stack,
106        stack_allocate_hook, and stack_free_hook. As a side-effect of this
107        effort some multiprocessing code was made conditional and some style
108        clean up occurred.
109
1102007-11-30      Till Straumann <strauman@slac.stanford.edu>
111
112        * irq/irq.h, irq/irq_init.c: Removed the definition
113        of ASM_IRQ_VECTOR_BASE; this symbol was only use to
114        initialize the irqBase member of the rtems_irq_global_settings
115        struct. However, irqBase is an rtems_irq_symbolic_name,
116        so using BSP_LOWEST_OFFSET is more appropriate.
117
1182007-11-28      Joel Sherrill <joel.sherrill@OARcorp.com>
119
120        * startup/bspstart.c, startup/bspstart.c.nocache: Eliminate PowerPC
121        specific elements from the CPU Table. They have been replaced with
122        variables named bsp_XXX as needed.
123
1242007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
125
126        PR 1257/bsps
127        * irq/irq.c: Code outside of cpukit should use the public API for
128        rtems_interrupt_disable/rtems_interrupt_enable. By bypassing the
129        public API and directly accessing _CPU_ISR_Disable and
130        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
131        directive which could lead to problems. This patch also changes the
132        type of the variable passed into these routines and addresses minor
133        style issues.
134
1352007-07-12      Joel Sherrill <joel.sherrill@OARcorp.com>
136
137        * Makefile.am: Correct so it now links.
138
1392007-07-10      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
140
141        * vectors/vectors_init.c, irq/irq_init.c:
142        adapted to shared exception code
143
1442007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
145
146        * bsp_specs: Remove qrtems_debug.
147
1482007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
149
150        * bsp_specs: Remove lib (Now expected to exist in GCC).
151
1522007-03-15  Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
153
154        * startup/bspstart.c: set external clock to 0 for some boards to
155        match the "auto clock detection" scheme in the libcpu clock driver
156        * startup/linkcmds: remove content of dpram section to avoid
157        download hangs with the EPPCBug board monitor
158
1592006-12-13      Ralf Corsépius <ralf.corsepius@rtems.org>
160
161        * network/network.c, startup/imbx8xx.c: Minor warning fixes.
162
1632006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
164
165        * configure.ac: New BUG-REPORT address.
166
1672006-11-15      Joel Sherrill <joel@OARcorp.com>
168
169        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
170        file and simplified initialization.
171
1722006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
173
174        * configure.ac: Require autoconf-2.60. Require automake-1.10.
175
1762006-08-09      Joel Sherrill <joel@OARcorp.com>
177
178        * startup/linkcmds: Clean up a bit after adding missing .rela sections.
179
1802006-03-08      Joel Sherrill <joel@OARcorp.com>
181
182        * startup/linkcmds: Add .gnu.linkonce.b.* section.
183
1842006-02-08      Joel Sherrill <joel@OARcorp.com>
185
186        * startup/linkcmds: Add sections required by newer gcc versions.
187
1882006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
189
190        * configure.ac: Remove explicit ampolish3 support (now in
191        RTEMS_BSP_CONFIGURE).
192
1932006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
194
195        * configure.ac: Add ampolish3 support.
196        * Makefile.am: Add preinstall.am.
197
1982006-01-09      Ralf Corsepius <ralf.corsepius@rtems.org>
199
200        * Makefile.am: Don't include subdirs.am.
201
2022005-10-06      Till Straumann <strauman@slac.stanford.edu>
203
204        PR 833/bsps
205        * irq/irq_asm.S: Currently, all (new exception) BSPs explicitely enable
206        the FPU across the user ISR but DONT save/restore the FPU context.
207        Any use of the FPU fron the user handler (e.g., due to GCC
208        optimizations) result in corruption. The fix results in an exception
209        in such cases (user ISR must explicitely save/enable/restore FPU).
210
2112005-09-12      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
212
213        PR 527/bsps
214        PR 822/bsps
215        * console/console.c, startup/bspstart.c, startup/imbx8xx.c,
216        startup/mmutlbtab.c, startup/start.S, vectors/vectors_init.c:
217        Currently the MBX8xx BSP does not boot, because some logical errors
218        are in the startup code. Additionally, the mpc8xx shared clock driver
219        does not support the clocking scheme of some of the board variants,
220        which are clocked from a 32768Hz (!) external crystal.
221
2222003-12-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
223
224        * startup/Makefile.am: start.S instead of start.s.
225
2262003-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
227
228        PR 545/bsps
229        * startup/setvec.c: Removed.
230        * startup/Makefile.am: Remove setvec.c.
231
2322003-10-22      Joel Sherrill <joel@OARcorp.com>
233
234        PR 510/bsps
235        * irq/irq.h: Add extern C wrapper.
236
2372003-09-04      Joel Sherrill <joel@OARcorp.com>
238
239        * clock/p_clock.c, ide/pcmcia_ide.c, include/bsp.h, include/coverhd.h,
240        irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c,
241        startup/bspstart.c, startup/bspstart.c.nocache, startup/imbx8xx.c,
242        startup/mmutlbtab.c, startup/setvec.c, startup/start.S,
243        vectors/vectors.h, vectors/vectors_init.c: URL for license changed.
244
2452003-08-22      Joel Sherrill <joel@OARcorp.com>
246
247        PR 445/bsps
248        * bsp_specs: Hand edited to duplicate change Ralf applied to the CVS
249        trunk.
250
2512003-08-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
252
253        * ide/Makefile.am: Don't include @RTEMS_BSP@.cfg.
254
2552003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
256
257        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
258
2592003-07-18      Till Straumann <strauman@slac.stanford.edu>
260
261        PR 288/rtems
262        * irq/irq_asm.S, startup/bspstart.c: _ISR_Nest_level is now properly
263        maintained.
264
2652003-03-25      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
266
267        PR 368/filesystem
268        * ide/*: added BSP support for libchip standard ide driver
269
2702003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
271
272        * configure.ac: Remove AC_CONFIG_AUX_DIR.
273
2742003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
275
276        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
277
2782003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
279
280        * configure.ac: AC_PREREQ(2.57).
281
2822003-01-20      Joel Sherrill <joel@OARcorp.com>
283
284        * startup/linkcmds*: Add FreeBSD sysctl() sections.
285
2862002-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
287
288        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
289        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
290        * irq/Makefile.am: Don't include @RTEMS_BSP@.cfg.
291        Remove SORDID_HACK. Eliminate *_O_FILES.
292        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
293        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
294        * vectors/Makefile.am: Don't include @RTEMS_BSP@.cfg.
295
2962002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
297
298        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
299
3002002-11-04      Joel Sherrill <joel@OARcorp.com>
301
302        * console/console.c, network/network.c: Removed warnings.
303
3042002-11-04      Joel Sherrill <joel@OARcorp.com>
305
306        * console/console.c, network/network.c: Removed warnings.
307
3082002-11-01      Joel Sherrill <joel@OARcorp.com>
309
310        * clock/p_clock.c, console/console.c, startup/bspstart.c: Removed
311        warnings.
312
3132002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
314
315        * .cvsignore: Reformat.
316        Add autom4te*cache.
317        Remove autom4te.cache.
318
3192002-08-21      Joel Sherrill <joel@OARcorp.com>
320
321        * bsp_specs: Added support for -nostdlibs.
322
3232002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
324
325        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
326        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
327        * irq/Makefile.am: Use .$(OBJEXT) instead of .o.
328        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
329        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
330        * vectors/Makefile.am: Use .$(OBJEXT) instead of .o.
331        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
332
3332002-08-01      Joel Sherrill <joel@OARcorp.com>
334
335        * include/coverhd.h: Per PR261 removed include of
336        <rtems/score/targopts.h> because the file is no longer being
337        generated and really wasn't being used anyway.
338
3392002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
340
341        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
342
3432002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
344
345        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
346        Remove $(OBJS) from all-local.
347
3482002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
349
350        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
351
3522001-05-09      Joel Sherrill <joel@OARcorp.com>
353
354        * startup/linkcmds: In support of gcc 3.1, added one of more
355        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
356        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
357        and direction of segments to memory regions may also have been
358        addressed.  This was a sweep across all BSPs.
359 
3602002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
361
362        * irq/irq.c: Reflect changes to <rtems/score/cpu.h>.
363        Fix loopCounter.
364        * irq/irq_asm.S:  Reflect changes to <rtems/score/cpu.h>.
365        * vectors/vectors.S: Ditto.
366        * vectors/vectors_init.c: Include <rtems/bspIo.h>.
367
3682002-04-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
369
370        * startup/bspstart.c: Include <libcpu/cpuIdent.h>, <rtems/bspIo.h>.
371
3722002-04-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
373
374        * configure.ac: Add BSPOPTS_*(DISPATCH_HANDLER_STAT).
375          Remove RTEMS_ENABLE_LIBCDIR.
376
3772001-04-08      Joel Sherrill <joel@OARcorp.com>
378
379        * startup/linkcmds: Per PR170, PR171, and PR172 add .eh_frame
380 
3812002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
382
383        * configure.ac:
384        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
385        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
386        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
387        * Makefile.am: Remove AUTOMAKE_OPTIONS.
388        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
389        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
390        * irq/Makefile.am: Remove AUTOMAKE_OPTIONS.
391        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
392        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
393        * vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
394        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
395
3962001-01-16      Eric Valette <valette@crt.canon.fr>
397
398        * vector/vector.S, irq/irq_asm.S: Make sure vectors work properly
399        in RAM and Flash based code.  The code executed for the Flash
400        version runs in both cases (code in Flash/code in RAM) but as it
401        is less efficient than the one optimized for RAM, it put it inside
402        ifdef.  A compilation error is generated if code is linked in Flash
403        with the correct ifdef set...
404
4052001-01-16      Eric Valette <valette@crt.canon.fr>
406
407        * irq/irq.c: Correct minor bug in mbx8xx interrupt handling.
408        Quoting Eric, "In theory it should be applied in each mpc8xx
409        related BSP but as I cannot test it plase maintainer/users
410        submit patch accordingly."
411
4122002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
413
414        * console/console.c: Include rtems/bspIo.h instead of bspIo.h.
415
4162001-12-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
417
418        * configure.ac: Remove RTEMS_ENABLE_NETWORKING.
419
4202001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
421
422        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
423
4242001-11-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
425
426        * configure.ac: Add RTEMS_BSPOPTS_*(DATA_CACHE_ENABLE),
427        RTEMS_BSPOPTS_*(INSTRUCTION_CACHE_ENABLE).
428
4292001-11-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
430
431        * Makefile.am: Add @exceptions@ to SUBDIRS.
432        * configure.ac: Add RTEMS_BSPOPTS_*(), merge-in settings
433        from make/custom/mbx*.cfg, add RTEMS_PPC_EXCEPTIONS([new]).
434        * include/Makefile.am: Convert PREINSTALL_FILES to
435        TMPINSTALL_FILES, include force-preinstall.am.
436        * vectors/Makefile.am: remove bogus VPATH.
437        * wrapup/Makefile.am: Apply @exceptions@.
438
4392001-10-29      Joel Sherrill <joel@OARcorp.com>
440
441        * include/bsp.h: Modify Install_tm27_vector() so this BSP will link tm27.
442
4432001-10-12      Joel Sherrill <joel@OARcorp.com>
444
445        * clock/p_clock.c, include/bsp.h, include/coverhd.h,
446        startup/bspstart.c, startup/bspstart.c.nocache, startup/setvec.c,
447        startup/start.S: Fixed typo.
448
4492001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
450
451        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
452        * configure.in: Remove.
453        * configure.ac: New file, generated from configure.in by autoupdate.
454
4552001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
456
457        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
458        * irq/Makefile.am: Use 'PREINSTALL_FILES ='.
459        * vectors/Makefile.am: Use 'PREINSTALL_FILES ='.
460
4612001-08-31  Eric Valette <valette@crf.canon.fr>
462
463        * network/network.c: Fix to account for return value when
464        installing interrupts handler.
465
4662001-06-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
467
468        * configure.in: Add bspopts.h.
469        * include/.cvsignore: Add bspopts.h*, stamp-h*.
470        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
471        * include/bsp.h: Include bspopts.h.
472
4732000-06-08      Eric Valette <valette@crf.canon.fr>
474
475        * console/console.c, include/commproc.h, startup/start.S:
476        The printk/printf did not work when loaded by EPPCBUG. They did
477        work when loaded with the BDM debugger.  I suspected EPPBUG
478        made some nasty things like patching Communication processor
479        microcode...  Anyway, the attached patch:
480          1) Enables to have printk nearly immediately after boot,
481          2) Make printf work automagically (I do not know why except I make a
482        different initialization for printk that should be overwritten by
483        console init later ?)
484
485        I let the default to be using EPPCBUG embedded firmware to boot and
486        using this printk early enabler code (LOADED_BY_EPPCBUG and
487        EARLY_CONSOLE) are on.
488
4892001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
490
491        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
492
4932001-04-20      Eric Valette <valette@crf.canon.fr>
494
495        * include/bsp.h: Added include of <bsp/vectors.h>
496        * vectors/vectors.h: Corrected typos.
497
4982001-04-11      Eric Valette <valette@crf.canon.fr>
499
500        * network/network.c: Fix unnecessary double assignment.
501
5022001-03-30      Eric Valette <valette@crf.canon.fr>
503
504        * clock/.cvsignore, clock/Makefile.am, clock/p_clock.c,
505        include/8xx_immap.h, include/commproc.h, include/mbx.h,
506        irq/.cvsignore, irq/Makefile.am, irq/irq.c, irq/irq.h,
507        irq/irq_asm.S, irq/irq_init.c, vectors/.cvsignore,
508        vectors/Makefile.am, vectors/vectors.S, vectors/vectors.h,
509        vectors/vectors_init.c: New files.
510        * Makefile.am, configure.in, console/console.c,
511        include/Makefile.am, network/network.c, startup/Makefile.am,
512        startup/bspstart.c, startup/imbx8xx.c, startup/linkcmds,
513        startup/mmutlbtab.c, startup/start.S, wrapup/Makefile.am:
514        The modifications to this BSP reflect the conversion of the
515        mpc8xx CPU to the "new exception processing model."
516
5172000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
518
519        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
520
5212000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
522
523        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
524
5252000-11-01      Joel Sherrill <joel@OARcorp.com>
526
527        * startup/bspstart.c, startup/bspstart.c: assoc.h, error.h, libio_.h,
528        libio.h, and libcsupport.h moved from libc to lib/include/rtems and
529        now must be referenced as <rtems/XXX.h>.   Header file order
530        was cleaned up while doing this.
531        Also removed obsolete references to STACK_CHECKER_ON.
532
5332000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
534
535        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
536        Switch to GNU canonicalization.
537
5382000-10-20      Joel Sherrill <joel@OARcorp.com>
539
540        * console/console.c: Add mbx8xx_console_get_configuration() which
541        returns either nvram configuration or a static equivalent.
542
5432000-10-18      Joel Sherrill <joel@OARcorp.com>
544
545        * console/console.c: Added BSP dependent routine
546        mbx8xx_console_use_maximum_buffer_size() required by mbx8xx
547        console-generic code.  This avoids libcpu use of bsp.h.
548
5492000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
550
551        * console/Makefile.am, network/Makefile.am, startup/Makefile.am,
552        wrapup/Makefile.am: Include compile.am
553
5542000-08-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
555
556        * configure.in: Add RTEMS_PROG_CC_FOR_TARGET, RTEMS_CANONICAL_TOOLS
557
5582000-08-11  Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
559
560        * README:
561        * console/console.c:
562        * include/bsp.h:
563        * network/network.c:
564        * startup/bspstart.c:
565        Add support for configuration parameters in NVRAM
566
5672000-08-11  Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
568
569        * console/console.c: Fix polled input.
570
5712000-08-10      Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
572
573        * README: Updated.
574        * console/console.c: Addition of support for shared printk and
575        no termios.
576        * include/bsp.h: Addition of second parameter to
577        rtems_enet_driver_attach. Removed prototypes for printk and
578        BSP_output_string.
579        * network/network.c(rtems_enet_driver_attach): Addition of second
580        parameter to function.
581
5822000-08-10      Joel Sherrill <joel@OARcorp.com>
583
584        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.