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

4.104.114.84.95
Last change on this file since d8cdc1f5 was df25c998, checked in by Joel Sherrill <joel.sherrill@…>, on 10/11/01 at 19:36:23

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

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