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

4.104.114.84.95
Last change on this file since a314d3b4 was a314d3b4, checked in by Joel Sherrill <joel.sherrill@…>, on 11/02/00 at 15:49:06

2000-11-02 Ralf Corsepius <corsepiu@…>

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