source: rtems/c/src/lib/libbsp/mips/jmr3904/ChangeLog @ d16af043

4.104.114.84.95
Last change on this file since d16af043 was d16af043, checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/04/02 at 05:43:53

2002-07-04 Ralf Corsepius <corsepiu@…>

  • wrapup/Makefile.am: Add $(LIB) to all-local.
  • Property mode set to 100644
File size: 5.6 KB
Line 
12002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2
3        * wrapup/Makefile.am: Add $(LIB) to all-local.
4
52002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
6
7        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
8
92002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
10
11        * configure.ac:
12        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
13        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
14        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
15        * Makefile.am: Remove AUTOMAKE_OPTIONS.
16        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
17        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
18        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
19        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
20        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
21        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
22
232002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
24
25        * console/console-io.c: Include rtems/bspIo.h instead of bspIo.h.
26
272001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
28
29        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
30
312001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
32
33        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
34        * configure.in: Remove.
35        * configure.ac: New file, generated from configure.in by autoupdate.
36
372001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
38
39        * include/Makefile.am: Use 'CLEANFILES ='.
40        * include/Makefile.am: Use 'TMPINSTALL_FILES ='.
41
422001-05-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
43
44        * configure.in: Add bspopts.h.
45        * include/bsp.h: Include bspopts.h.
46        * include/.cvsignore: Add bspopts.h*, coverhd.h, stamp-h*.
47        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
48
492001-05-11      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
50
51        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
52
532001-05-11      Joel Sherrill <joel@OARcorp.com>
54
55        * tools/runtest: Add functionality to avoid letting simulator
56        run too long.
57
582001-04-20      Joel Sherrill <joel@OARcorp.com>
59
60        * include/bsp.h (Clear_tm27_intr): Stop the timer and disable
61        the interrupt.  This was not quite right before and we were
62        getting uncontrolled interrupt nesting in tm27.
63        * timer/timer.c (Timer_Initialize): Added an extra reset and
64        changed the ITMR register so we will never get an interrupt.
65        (Read_timer): Fixed so the timer actually stops before it
66        is read.  Before some times reported were outraguously high.
67        * start/start.S: Major clean including using stack in linkcmds,
68        deleting unused code, and zeroing the BSS using the linkcmds
69        information.
70        * startup/linkcmds: Put heap in lower memory than workspace
71        and move _clear_end so both are zeroed.
72
732001-01-12      Joel Sherrill <joel@OARcorp.com>
74
75        * include/bsp.h, timer/timer.c: Updated so timer appears to
76        work and support tm27.  I would prefer to time a software
77        interrupt rather than an use an extra timer though.
78
792001-01-09      Joel Sherrill <joel@OARcorp.com>
80
81        * clock/clockdrv.c: Clean up.
82        * include/bsp.h: Uncomment and fix set_vector() prototype.
83
842001-01-03      Joel Sherrill <joel@OARcorp.com>
85
86        * console/console-io.c: Removed unused variable initialized.
87
882001-01-03      Joel Sherrill <joel@OARcorp.com>
89
90        * clock/Makefile.am: Fixed reference to ckinit.c.
91        * clock/clockdrv.c: Enabled fast idle.
92        * console/console-io.c: Added console_initialize_hardware().
93
942000-12-19      Joel Sherrill <joel@OARcorp.com>
95
96        * timer: New subdirectory.
97        * timer/.cvsignore, timer/Makefile.am, timer/timer.c: New files.
98        * tools/ChangeLog: New file.
99
1002000-12-19      Joel Sherrill <joel@OARcorp.com>
101
102        * Makefile.am: Added tools subdirectory and removed commented out line.
103        * configure.in: Added tools subdirectory.
104        * tools: New subdirectory.
105        * tools/.cvsignore, tools/Makefile.am, tools/configure.in,
106        tools/runtest: New files -- based on powerpc/psim.
107        * clock/clockdrv.c: Guessed new value for clock tick.  Need to
108        add fast idle support.
109        * include/bsp.h: tm27 support initiated.
110        * Most tests appear to run correctly!
111
1122000-12-13      Joel Sherrill <joel@OARcorp.com>
113
114        * README: Updated.  We are now vectoring a clock tick ISR handler.
115        But RTEMS is not returning from the ISR properly.
116        * clock/clockdrv.c: Now causes interrupts but has not been calibrated.
117        * include/bsp.h: Use <libcpu/tx3904.h>
118        * startup/Makefile.am: Add setvec.c from shared.
119        * startup/bspstart.c: Initialize the status register (SR) so
120        no interrupts are masked but global interrupts (SR_IEC) are off.
121        Added call to install the ISR prologue code.
122        * wrapup/Makefile.am: Pick up more pieces from libcpu.
123
1242000-12-11      Joel Sherrill <joel@OARcorp.com>
125
126        * startup/bspclean.c: New file to explicitly invoke _sys_exit().
127        * README: Updated.
128
1292000-12-06      Joel Sherrill <joel@OARcorp.com>
130
131        * README: Updated to reflect status.
132        * startup/linkcmds: Added .ctor and .dtor sections to no avail.
133
1342000-11-30      Joel Sherrill <joel@OARcorp.com>
135
136        * README: Updated to reflect current status.  Misaligned reference
137        during initialization may be compiler problem.
138        * console/console-io.c: Added support for printk().
139        * startup/linkcmds: Reserve 512K for RTEMS Workspace.
140
1412000-11-27      Joel Sherrill <joel@OARcorp.com>
142
143        * startup/linkcmds: Fix typo and add extra 0 to base address.
144        Now runs until printf() tries to put a character and then
145        it locks up checking a status bit that does not change.
146
1472000-11-25      Joel Sherrill <joel@OARcorp.com>
148
149        * The JMR BSP is for a Toshiba TX39 evaluation board but
150        can also be used with the mips simulator in gdb.
151        * .cvsignore, ChangeLog, Makefile.am, README, bsp_specs,
152        configure.in, clock/.cvsignore, clock/Makefile.am,
153        clock/clockdrv.c, console/.cvsignore, console/Makefile.am,
154        console/console-io.c, include/.cvsignore,
155        include/Makefile.am, include/bsp.h, start/.cvsignore,
156        start/Makefile.am, start/regs.S, start/start.S,
157        startup/.cvsignore, startup/Makefile.am, startup/bspstart.c,
158        startup/linkcmds, wrapup/.cvsignore, wrapup/Makefile.am: New files.
Note: See TracBrowser for help on using the repository browser.