source: rtems/c/src/lib/libbsp/i386/pc386/ChangeLog @ ba748523

4.104.114.84.95
Last change on this file since ba748523 was 9e1ae79, checked in by Joel Sherrill <joel.sherrill@…>, on 12/03/01 at 01:07:18

2001-11-30 Ralf Corsepius <corsepiu@…>

  • configure.ac: Introduce RTEMS_BSP_CONFIGURE.
  • Property mode set to 100644
File size: 7.3 KB
Line 
12001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2
3        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
4
52001-10-12      Joel Sherrill <joel@OARcorp.com>
6
7        * console/inch.c: Fixed typo.
8
92001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
10
11        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
12        * configure.in: Remove.
13        * configure.ac: New file, generated from configure.in by autoupdate.
14
152001-09-27      Joel Sherrill <joel@OARcorp.com>
16
17        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
18
192001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
20
21        * include/Makefile.am: Use 'CLEANFILES ='.
22        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
23        * console/Makefile.am: Use 'PREINSTALL_FILES ='.
24        * Makefile.am: Use 'TMPINSTALL_FILES ='.
25
262001-06-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
27
28        * console/Makefile.am: Remove RTEMS_H_FILES.
29        * start/start16.S: include <bspopts.h> to get NEW_GAS.
30
312001-06-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
32
33        * configure.in: Add bspopts.h.
34        * include/.cvsignore: Add bspopts.h*, stamp-h*.
35        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
36        * 3c509/Makefile.am: Dito.
37        * console/Makefile.am: Dito.
38        * include/bsp.h: Include bspopts.h.
39
402001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
41
42        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
43
442001-04-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
45
46        * ne2000/ne2000.c: Remove #define __INSIDE_RTEMS_BSD_TCPIP_STACK__.
47
482001-01-05      Joel Sherrill <joel@OARcorp.com>
49
50        * console/vt.c: Added include of <rtems.h> so _CPU_ISR_disable
51        would be visible.
52
532000-12-05       Eric Valette <valette@crf.canon.fr>
54
55        * console/inch.c, console/keyboard.c, console/pc_keyb.c,
56        console/vt.c, include/bsp.h: Correct incorrect interrupt level
57        handling in new keyboard management code.  Correct
58        BSP_poll_char initialization routine.
59        * start/start.S, startup/bspstart.c: Correct when the video is
60        initialized.
61        * timer/timer.c (Calibrate_1ms_loop): Address problem where this
62        did not work correctly on all PC speeds. The new calibrate routine
63        has been tested on Pentium 166, pentium II 200, pentium III
64        300 Mhz and does work as expected.
65
662000-12-05      Joel Sherrill <joel@OARcorp.com>
67
68        * pc386/console/console.c, pc386/console/serial_mouse.c,
69        pc386/console/vgainit.c, shared/comm/tty_drv.c: Remove warnings.
70
712000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
72
73        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
74
752000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
76
77        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
78
792000-11-01      Joel Sherrill <joel@OARcorp.com>
80
81        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
82        and libcsupport.h moved from libc to lib/include/rtems and
83        now must be referenced as <rtems/XXX.h>.   Header file order
84        was cleaned up while doing this.
85
862000-10-29      Joel Sherrill <joel@OARcorp.com>
87
88        * startup/sbrk.c: Removed.  Redundant with shared version.
89
902000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
91
92        * configure.in, Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
93        Switch to GNU canonicalization.
94
952000-10-23      Joel Sherrill <joel@OARcorp.com>
96
97        * console/serial_mouse.c: Fixed typos introduced by removal of CR/LF.
98
992000-10-20      Rosimildo da Silva <rdasilva@connecttel.com>
100
101        * console/serial_mouse.c: Added support for changing serial parameters.
102
1032000-10-20      Joel Sherrill <joel@OARcorp.com>
104
105        * include/wd80x3.h: Added file header and logic to prevent multiple
106        inclusions of this file.
107        * wd8003/wd8003.c: Corrected attach to include "int attach" parameter.
108
1092000-10-20      Joel Sherrill <joel@OARcorp.com>
110
111        * include/bsp.h: Cleaned up network driver name and attach defines.
112
1132000-10-20      Dmitry Kargapolov <dk@gentex.ru>
114
115        * ne2000/ne2000.c: Fix some errors in the driver. 
116        1. There was no sufficient check of data in ethernet header.
117        The code in ne_rx_daemon() was:
118            inport_word (dport, len);
119            ...
120            len -= 4;
121              ...
122            if (len > 0)
123              ne_read_data (sc, startaddr, len, p);
124        Unfortunately, sometimes my NIC gave me too big len value,
125        the result was memory override.  To fix this, I added ethernet
126        header data checking.
127
128        2. The way overrides were serviced was not good.  It was complex
129        but sometimes did not provide reliable continuing of NIC working.
130        I had the situation of an endless loop in ne_check_status()
131        after override processing.
132
133        3. There was conceptual error of porting.  The old method of
134        overrides curing was ported from the OS-s, where override-processing
135        did start immediately.  But RTEMS-version uses events, and cleaning
136        of the overrides can start later.
137
138        I selected the way of ne2000 programming that is used
139        in freebsd kernel (v4.0).
140
141        Because of both problems, incorrect data in header of raw packet
142        and receiver override, it went through ne_reset() and fully
143        reset the ne2000.
144
145        So, in summary
146        - added detecting of the incorrect data in ethernet header;
147        - replaced handling of receiver overrides with new scheme,
148        via resetting of NIC, this method is used also in case of
149        invalid header detecting.
150
1512000-10-18       Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
152
153        * console/console.c, console/serial_mouse.c, include/bsp.h:
154        Add the ability to set parity, number of data bits and
155        number of stop bits to the existing i386 serial drivers.
156
1572000-10-17      Joel Sherrill <joel@OARcorp.com>
158
159        * startup/Makefile.am: Added idt.c since it has been moved libcpu/i386
160        to libbsp/i386/shared/irq.
161
1622000-09-29      Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
163
164        * startup/linkcmds: Added lines so DWARF debug information
165        would be available.  Otherwise gdb complains that the offsets
166        for the debug info are incorrect and doesn't load the files.
167
1682000-09-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
169
170        * start/Makefile.am: Remove AM_CPPFLAGS and GAS_CODE16 conditional.
171
1722000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
173
174        * 3c509/Makefile.am, clock/Makefile.am, console/Makefile.am,
175        ne2000/Makefile.am, start/Makefile.am, startup/Makefile.am,
176        timer/Makefile.am, wd8003/Makefile.am, wrapup/Makefile.am: Include
177        compile.am
178
1792000-08-30      Joel Sherrill <joel@OARcorp.com>
180
181        * console/keyboard.h: Changed numerous routines from extern inline
182        to static inline.
183
1842000-08-26  Rosimildo da Silva  <rdasilva@connecttel.com>
185
186        * Major rework of the "/dev/console" driver.
187        * Added termios support for stdin ( keyboard ).
188        * Added ioctls() to support modes similar to Linux( XLATE,
189        RAW, MEDIUMRAW ).
190        * Added Keyboard mapping and handling of the keyboard's leds.
191        * Added Micro FrameBuffer driver ( "/dev/fb0" ) for bare VGA
192        controller ( 16 colors ).
193        * Added PS/2 and Serial mouse support for PC386 BSP.
194        * console/defkeymap.c: New file.
195        * console/fb_vga.c: New file.
196        * console/fb_vga.h: New file.
197        * console/i386kbd.h: New file.
198        * console/kd.h: New file.
199        * console/keyboard.c: New file.
200        * console/keyboard.h: New file.
201        * console/mouse_parser.c: New file.
202        * console/mouse_parser.h: New file.
203        * console/pc_keyb.c: New file.
204        * console/ps2_drv.h: New file.
205        * console/ps2_mouse.c: New file.
206        * console/ps2_mouse.h: New file.
207        * console/serial_mouse.c: New file.
208        * console/serial_mouse.h: New file.
209        * console/vgainit.c: New file.
210        * console/vt.c: New file.
211        * console/Makefile.am: Reflect new files.
212        * console/console.c, console/inch.c, console/outch.c: Console
213        functionality modifications.
214        * startup/Makefile.am: Pick up tty_drv.c and gdb_glue.c
215
2162000-08-10      Joel Sherrill <joel@OARcorp.com>
217
218        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.