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

4.104.114.84.95
Last change on this file since 8d0782a was 8d0782a, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:41:38

2002-03-27 Ralf Corsepius <corsepiu@…>

  • configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]).
  • clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Makefile.am: Remove AUTOMAKE_OPTIONS.
  • console/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • include/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • irq/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • network/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Property mode set to 100644
File size: 7.1 KB
Line 
12002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2
3        * configure.ac:
4        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
5        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
6        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
7        * Makefile.am: Remove AUTOMAKE_OPTIONS.
8        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
9        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
10        * irq/Makefile.am: Remove AUTOMAKE_OPTIONS.
11        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
12        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
13        * vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
14        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
15
162001-01-16      Eric Valette <valette@crt.canon.fr>
17
18        * vector/vector.S, irq/irq_asm.S: Make sure vectors work properly
19        in RAM and Flash based code.  The code executed for the Flash
20        version runs in both cases (code in Flash/code in RAM) but as it
21        is less efficient than the one optimized for RAM, it put it inside
22        ifdef.  A compilation error is generated if code is linked in Flash
23        with the correct ifdef set...
24
252001-01-16      Eric Valette <valette@crt.canon.fr>
26
27        * irq/irq.c: Correct minor bug in mbx8xx interrupt handling.
28        Quoting Eric, "In theory it should be applied in each mpc8xx
29        related BSP but as I cannot test it plase maintainer/users
30        submit patch accordingly."
31
322002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
33
34        * console/console.c: Include rtems/bspIo.h instead of bspIo.h.
35
362001-12-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
37
38        * configure.ac: Remove RTEMS_ENABLE_NETWORKING.
39
402001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
41
42        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
43
442001-11-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
45
46        * configure.ac: Add RTEMS_BSPOPTS_*(DATA_CACHE_ENABLE),
47        RTEMS_BSPOPTS_*(INSTRUCTION_CACHE_ENABLE).
48
492001-11-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
50
51        * Makefile.am: Add @exceptions@ to SUBDIRS.
52        * configure.ac: Add RTEMS_BSPOPTS_*(), merge-in settings
53        from make/custom/mbx*.cfg, add RTEMS_PPC_EXCEPTIONS([new]).
54        * include/Makefile.am: Convert PREINSTALL_FILES to
55        TMPINSTALL_FILES, include force-preinstall.am.
56        * vectors/Makefile.am: remove bogus VPATH.
57        * wrapup/Makefile.am: Apply @exceptions@.
58
592001-10-29      Joel Sherrill <joel@OARcorp.com>
60
61        * include/bsp.h: Modify Install_tm27_vector() so this BSP will link tm27.
62
632001-10-12      Joel Sherrill <joel@OARcorp.com>
64
65        * clock/p_clock.c, include/bsp.h, include/coverhd.h,
66        startup/bspstart.c, startup/bspstart.c.nocache, startup/setvec.c,
67        startup/start.S: Fixed typo.
68
692001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
70
71        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
72        * configure.in: Remove.
73        * configure.ac: New file, generated from configure.in by autoupdate.
74
752001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
76
77        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
78        * irq/Makefile.am: Use 'PREINSTALL_FILES ='.
79        * vectors/Makefile.am: Use 'PREINSTALL_FILES ='.
80
812001-08-31  Eric Valette <valette@crf.canon.fr>
82
83        * network/network.c: Fix to account for return value when
84        installing interrupts handler.
85
862001-06-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
87
88        * configure.in: Add bspopts.h.
89        * include/.cvsignore: Add bspopts.h*, stamp-h*.
90        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
91        * include/bsp.h: Include bspopts.h.
92
932000-06-08      Eric Valette <valette@crf.canon.fr>
94
95        * console/console.c, include/commproc.h, startup/start.S:
96        The printk/printf did not work when loaded by EPPCBUG. They did
97        work when loaded with the BDM debugger.  I suspected EPPBUG
98        made some nasty things like patching Communication processor
99        microcode...  Anyway, the attached patch:
100          1) Enables to have printk nearly immediately after boot,
101          2) Make printf work automagically (I do not know why except I make a
102        different initialization for printk that should be overwritten by
103        console init later ?)
104
105        I let the default to be using EPPCBUG embedded firmware to boot and
106        using this printk early enabler code (LOADED_BY_EPPCBUG and
107        EARLY_CONSOLE) are on.
108
1092001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
110
111        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
112
1132001-04-20      Eric Valette <valette@crf.canon.fr>
114
115        * include/bsp.h: Added include of <bsp/vectors.h>
116        * vectors/vectors.h: Corrected typos.
117
1182001-04-11      Eric Valette <valette@crf.canon.fr>
119
120        * network/network.c: Fix unnecessary double assignment.
121
1222001-03-30      Eric Valette <valette@crf.canon.fr>
123
124        * clock/.cvsignore, clock/Makefile.am, clock/p_clock.c,
125        include/8xx_immap.h, include/commproc.h, include/mbx.h,
126        irq/.cvsignore, irq/Makefile.am, irq/irq.c, irq/irq.h,
127        irq/irq_asm.S, irq/irq_init.c, vectors/.cvsignore,
128        vectors/Makefile.am, vectors/vectors.S, vectors/vectors.h,
129        vectors/vectors_init.c: New files.
130        * Makefile.am, configure.in, console/console.c,
131        include/Makefile.am, network/network.c, startup/Makefile.am,
132        startup/bspstart.c, startup/imbx8xx.c, startup/linkcmds,
133        startup/mmutlbtab.c, startup/start.S, wrapup/Makefile.am:
134        The modifications to this BSP reflect the conversion of the
135        mpc8xx CPU to the "new exception processing model."
136
1372000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
138
139        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
140
1412000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
142
143        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
144
1452000-11-01      Joel Sherrill <joel@OARcorp.com>
146
147        * startup/bspstart.c, startup/bspstart.c: assoc.h, error.h, libio_.h,
148        libio.h, and libcsupport.h moved from libc to lib/include/rtems and
149        now must be referenced as <rtems/XXX.h>.   Header file order
150        was cleaned up while doing this.
151        Also removed obsolete references to STACK_CHECKER_ON.
152
1532000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
154
155        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
156        Switch to GNU canonicalization.
157
1582000-10-20      Joel Sherrill <joel@OARcorp.com>
159
160        * console/console.c: Add mbx8xx_console_get_configuration() which
161        returns either nvram configuration or a static equivalent.
162
1632000-10-18      Joel Sherrill <joel@OARcorp.com>
164
165        * console/console.c: Added BSP dependent routine
166        mbx8xx_console_use_maximum_buffer_size() required by mbx8xx
167        console-generic code.  This avoids libcpu use of bsp.h.
168
1692000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
170
171        * console/Makefile.am, network/Makefile.am, startup/Makefile.am,
172        wrapup/Makefile.am: Include compile.am
173
1742000-08-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
175
176        * configure.in: Add RTEMS_PROG_CC_FOR_TARGET, RTEMS_CANONICAL_TOOLS
177
1782000-08-11  Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
179
180        * README:
181        * console/console.c:
182        * include/bsp.h:
183        * network/network.c:
184        * startup/bspstart.c:
185        Add support for configuration parameters in NVRAM
186
1872000-08-11  Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
188
189        * console/console.c: Fix polled input.
190
1912000-08-10      Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
192
193        * README: Updated.
194        * console/console.c: Addition of support for shared printk and
195        no termios.
196        * include/bsp.h: Addition of second parameter to
197        rtems_enet_driver_attach. Removed prototypes for printk and
198        BSP_output_string.
199        * network/network.c(rtems_enet_driver_attach): Addition of second
200        parameter to function.
201
2022000-08-10      Joel Sherrill <joel@OARcorp.com>
203
204        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.