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

4.104.114.84.95
Last change on this file since feead226 was feead226, checked in by Joel Sherrill <joel.sherrill@…>, on 11/09/00 at 16:43:05

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

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