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

4.104.114.84.95
Last change on this file since e83378d was 0134f4f, checked in by Joel Sherrill <joel.sherrill@…>, on 10/27/00 at 13:57:21

2000-10-27 Ralf Corsepius <corsepiu@…>

  • configure.in, Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros. Switch to GNU canonicalization.
  • Property mode set to 100644
File size: 4.4 KB
Line 
12000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2
3        * configure.in, Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
4        Switch to GNU canonicalization.
5
62000-10-23      Joel Sherrill <joel@OARcorp.com>
7
8        * console/serial_mouse.c: Fixed typos introduced by removal of CR/LF.
9
102000-10-20      Rosimildo da Silva <rdasilva@connecttel.com>
11
12        * console/serial_mouse.c: Added support for changing serial parameters.
13
142000-10-20      Joel Sherrill <joel@OARcorp.com>
15
16        * include/wd80x3.h: Added file header and logic to prevent multiple
17        inclusions of this file.
18        * wd8003/wd8003.c: Corrected attach to include "int attach" parameter.
19
202000-10-20      Joel Sherrill <joel@OARcorp.com>
21
22        * include/bsp.h: Cleaned up network driver name and attach defines.
23
242000-10-20      Dmitry Kargapolov <dk@gentex.ru>
25
26        * ne2000/ne2000.c: Fix some errors in the driver. 
27        1. There was no sufficient check of data in ethernet header.
28        The code in ne_rx_daemon() was:
29            inport_word (dport, len);
30            ...
31            len -= 4;
32              ...
33            if (len > 0)
34              ne_read_data (sc, startaddr, len, p);
35        Unfortunately, sometimes my NIC gave me too big len value,
36        the result was memory override.  To fix this, I added ethernet
37        header data checking.
38
39        2. The way overrides were serviced was not good.  It was complex
40        but sometimes did not provide reliable continuing of NIC working.
41        I had the situation of an endless loop in ne_check_status()
42        after override processing.
43
44        3. There was conceptual error of porting.  The old method of
45        overrides curing was ported from the OS-s, where override-processing
46        did start immediately.  But RTEMS-version uses events, and cleaning
47        of the overrides can start later.
48
49        I selected the way of ne2000 programming that is used
50        in freebsd kernel (v4.0).
51
52        Because of both problems, incorrect data in header of raw packet
53        and receiver override, it went through ne_reset() and fully
54        reset the ne2000.
55
56        So, in summary
57        - added detecting of the incorrect data in ethernet header;
58        - replaced handling of receiver overrides with new scheme,
59        via resetting of NIC, this method is used also in case of
60        invalid header detecting.
61
622000-10-18       Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
63
64        * console/console.c, console/serial_mouse.c, include/bsp.h:
65        Add the ability to set parity, number of data bits and
66        number of stop bits to the existing i386 serial drivers.
67
682000-10-17      Joel Sherrill <joel@OARcorp.com>
69
70        * startup/Makefile.am: Added idt.c since it has been moved libcpu/i386
71        to libbsp/i386/shared/irq.
72
732000-09-29      Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
74
75        * startup/linkcmds: Added lines so DWARF debug information
76        would be available.  Otherwise gdb complains that the offsets
77        for the debug info are incorrect and doesn't load the files.
78
792000-09-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
80
81        * start/Makefile.am: Remove AM_CPPFLAGS and GAS_CODE16 conditional.
82
832000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
84
85        * 3c509/Makefile.am, clock/Makefile.am, console/Makefile.am,
86        ne2000/Makefile.am, start/Makefile.am, startup/Makefile.am,
87        timer/Makefile.am, wd8003/Makefile.am, wrapup/Makefile.am: Include
88        compile.am
89
902000-08-30      Joel Sherrill <joel@OARcorp.com>
91
92        * console/keyboard.h: Changed numerous routines from extern inline
93        to static inline.
94
952000-08-26  Rosimildo da Silva  <rdasilva@connecttel.com>
96
97        * Major rework of the "/dev/console" driver.
98        * Added termios support for stdin ( keyboard ).
99        * Added ioctls() to support modes similar to Linux( XLATE,
100        RAW, MEDIUMRAW ).
101        * Added Keyboard mapping and handling of the keyboard's leds.
102        * Added Micro FrameBuffer driver ( "/dev/fb0" ) for bare VGA
103        controller ( 16 colors ).
104        * Added PS/2 and Serial mouse support for PC386 BSP.
105        * console/defkeymap.c: New file.
106        * console/fb_vga.c: New file.
107        * console/fb_vga.h: New file.
108        * console/i386kbd.h: New file.
109        * console/kd.h: New file.
110        * console/keyboard.c: New file.
111        * console/keyboard.h: New file.
112        * console/mouse_parser.c: New file.
113        * console/mouse_parser.h: New file.
114        * console/pc_keyb.c: New file.
115        * console/ps2_drv.h: New file.
116        * console/ps2_mouse.c: New file.
117        * console/ps2_mouse.h: New file.
118        * console/serial_mouse.c: New file.
119        * console/serial_mouse.h: New file.
120        * console/vgainit.c: New file.
121        * console/vt.c: New file.
122        * console/Makefile.am: Reflect new files.
123        * console/console.c, console/inch.c, console/outch.c: Console
124        functionality modifications.
125        * startup/Makefile.am: Pick up tty_drv.c and gdb_glue.c
126
1272000-08-10      Joel Sherrill <joel@OARcorp.com>
128
129        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.