1 |
1026 |
ivang |
2002-08-05 Eric Norum
|
2 |
|
|
|
3 |
|
|
* pci/pcibios.c: Per PR262, removed all asserts so probes for
|
4 |
|
|
devices that are not present will work. This lets you have
|
5 |
|
|
multiple PCI Ethernet drivers in an application and dynamically
|
6 |
|
|
use the one for the card othat is present.
|
7 |
|
|
|
8 |
|
|
2002-07-16 Eric Norum
|
9 |
|
|
|
10 |
|
|
* comm/uart.c: I am using a PC-104 card with no video output. I
|
11 |
|
|
found that things would lock up if a printk was followed closely by
|
12 |
|
|
a printf when BSPConsolePort = BSP_UART_COM2 and
|
13 |
|
|
BSPPrintkPort = BSP_UART_COM1. With this change in place,
|
14 |
|
|
printf/printk calls can be intermingled with no apparent problems.
|
15 |
|
|
|
16 |
|
|
2002-05-01 Eric Norum
|
17 |
|
|
|
18 |
|
|
* console/console.c, fatal/bspfatal.c, startup/bspclean.c,
|
19 |
|
|
startup/page_table.c: Per PR200 fix multi-line inline assembly
|
20 |
|
|
to satisfy gcc 3.1 and newer.
|
21 |
|
|
|
22 |
|
|
2002-03-27 Ralf Corsepius
|
23 |
|
|
|
24 |
|
|
* comm/Makefile.am: Remove AUTOMAKE_OPTIONS.
|
25 |
|
|
* io/Makefile.am: Remove AUTOMAKE_OPTIONS.
|
26 |
|
|
* Makefile.am: Remove AUTOMAKE_OPTIONS.
|
27 |
|
|
* irq/Makefile.am: Remove AUTOMAKE_OPTIONS.
|
28 |
|
|
* pci/Makefile.am: Remove AUTOMAKE_OPTIONS.
|
29 |
|
|
|
30 |
|
|
2002-01-03 Ralf Corsepius
|
31 |
|
|
|
32 |
|
|
* irq/irq_init.c: Include rtems/bspIo.h instead of bspIo.h.
|
33 |
|
|
|
34 |
|
|
2001-10-12 Joel Sherrill
|
35 |
|
|
|
36 |
|
|
* startup/linkcmds: Fixed typo.
|
37 |
|
|
|
38 |
|
|
2001-09-27 Ralf Corsepius
|
39 |
|
|
|
40 |
|
|
* irq/Makefile.am: Use 'PREINSTALL_FILES ='.
|
41 |
|
|
* comm/Makefile.am: Use 'PREINSTALL_FILES ='.
|
42 |
|
|
* pci/Makefile.am: Use 'PREINSTALL_FILES ='.
|
43 |
|
|
|
44 |
|
|
2001-08-16 Mike Siers
|
45 |
|
|
|
46 |
|
|
* comm/tty_drv.c, comm/uart.c: Correct some minor cut and paste bugs.
|
47 |
|
|
|
48 |
|
|
2001-07-03 Mike Seirs
|
49 |
|
|
|
50 |
|
|
* comm/tty_drv.c, comm/uart.c, comm/uart.h: Adds the capability
|
51 |
|
|
to use task driven serial I/O to ti386 BSPs. This patch leaves thex
|
52 |
|
|
default I/O mode to be IRQ. If you want to use task I/O mode,
|
53 |
|
|
then the tty_drv.c file needs to be modified. Basically, all
|
54 |
|
|
you need to change is the data values of the termios callbacks
|
55 |
|
|
structure. This callback structure is used in the tty1_open
|
56 |
|
|
and tty2_open functions. The values you need to set are commented
|
57 |
|
|
out in the source code.
|
58 |
|
|
|
59 |
|
|
2001-06-19 Ralf Corsepius
|
60 |
|
|
|
61 |
|
|
* comm/Makefile.am: Use *_HEADERS instead of *H_FILES.
|
62 |
|
|
* io/Makefile.am: Ditto.
|
63 |
|
|
* irq/Makefile.am: Ditto.
|
64 |
|
|
* pci/Makefile.am: Ditto.
|
65 |
|
|
|
66 |
|
|
2000-10-19 Joel Sherrill
|
67 |
|
|
|
68 |
|
|
* common/uart.h: Added prototype for BSP_uart_set_baud().
|
69 |
|
|
|
70 |
|
|
2000-10-19 Charles-Antoine Gauthier
|
71 |
|
|
|
72 |
|
|
* comm/uart.c (BSP_uart_init): Save more line state parameters.
|
73 |
|
|
|
74 |
|
|
2000-10-18 Charles-Antoine Gauthier
|
75 |
|
|
|
76 |
|
|
* comm/i386-stub-glue.c, comm/tty_drv.c, comm/uart.c, comm/uart.h:
|
77 |
|
|
Add the ability to set parity, number of data bits and
|
78 |
|
|
number of stop bits to the existing i386 serial drivers.
|
79 |
|
|
|
80 |
|
|
2000-10-17 Joel Sherrill
|
81 |
|
|
|
82 |
|
|
* irq/idt.c, irq/Makefile.am: Moved idt.c to from libcpu/i386 so
|
83 |
|
|
i386 RTEMS can be multilib'ed.
|
84 |
|
|
|
85 |
|
|
2000-09-04 Ralf Corsepius
|
86 |
|
|
|
87 |
|
|
* io/Makefile.am: Formatting.
|
88 |
|
|
|
89 |
|
|
2000-08-26 Rosimildo da Silva
|
90 |
|
|
|
91 |
|
|
* shared/comm: Added "/dev/ttyS1" & "/dev/ttyS2" support for
|
92 |
|
|
the i386 BSPs.
|
93 |
|
|
* shared/comm/gdb_glue.c: New file.
|
94 |
|
|
* shared/comm/i386_io.c: New file.
|
95 |
|
|
* shared/comm/tty_drv.c: New file.
|
96 |
|
|
* shared/comm/tty_drv.h: New file.
|
97 |
|
|
* shared/comm/Makefile.am: Account for new files.
|
98 |
|
|
* shared/comm/uart.c: Adds support for sending characters to
|
99 |
|
|
another "line discipline."
|
100 |
|
|
|
101 |
|
|
2000-08-10 Joel Sherrill
|
102 |
|
|
|
103 |
|
|
* ChangeLog: New file.
|