OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [io/] [usb/] [eth/] [slave/] [current/] [ChangeLog] - Blame information for rev 825

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 786 skrzyp
2003-06-27  Manu Sharma  
2
 
3
        * src/usbsethdrv.c (usbs_ethdrv_ioctl): Return 0 when we handle
4
        ETH_DRV_GET_IF_STATS* otherwise the caller thinks we don't support
5
        these ioctl calls.
6
 
7
2003-03-23  Iztok Zupet 
8
 
9
        * doc/usbseth.sgml: Remove .eps and .gif and introduce .png for
10
        for PDF output.
11
        * doc/simple.gif, doc/tcpip.gif: Delete.
12
        * doc/simple.png, doc/tcpip.png: New files to replace GIFs.
13
 
14
2003-04-19  Bart Veer  
15
 
16
        * cdl/usbs_eth.cdl: Add per-package compiler flag support and
17
        default to -D_KERNEL and -D__ECOS for use with the new network
18
        stack.
19
 
20
2003-04-17  Bart Veer  
21
 
22
        * doc/usbseth.sgml: Fix typo reported by Patrick Doyle
23
 
24
2003-02-25  Jonathan Larmour  
25
 
26
        * doc/usbseth.sgml: Declare as  not  to get
27
        correct TOC numbering.
28
 
29
2003-02-24  Jonathan Larmour  
30
 
31
        * cdl/usbs_eth.cdl: Fix doc link.
32
 
33
        * doc/usbseth.sgml: Comment out DOCTYPE for now to allow building
34
        with standard doc build.
35
 
36
2002-07-26  David Smith  
37
 
38
        * host/ecos_usbeth.c (ecos_usbeth_probe):
39
        Two changes to the code that checks to see if this is the correct
40
        driver for the USB peripheral that was just loaded.  Fixed a bug
41
        that was comparing the product id of the peripheral to the vendor
42
        id.  Supports multiple implementations (vendor id/product id sets)
43
        so that the same driver could be used for several devices.
44
 
45
2001-07-10  Bart Veer  
46
 
47
        * doc/usbseth.sgml, doc/*.html:
48
        Document the below changes.
49
 
50
        * cdl/usbs_eth.cdl:
51
        The USB-ethernet device now registers itself as either eth0 or
52
        eth1 by default, depending on what else is present in the system.
53
        Also bootp/dhcp support is prohibited for this network device on
54
        the ground that it is rather unlikely that a host will provide
55
        a dhcp service for a network device that does not exist until the
56
        host-target connection has been fully established.
57
 
58
 
59
2001-07-02  Bart Veer  
60
 
61
        * host/ecos_usbeth.c (ecos_usbeth_probe):
62
        Determine the endpoints to use for transmits and receives
63
        from the descriptors supplied by the device.
64
 
65
2001-06-28  Bart Veer  
66
 
67
        * include/usbs_eth.h, src/usbsethdrv.c, src/usbseth.c:
68
        Align receive boundaries to cacheline boundaries, and
69
        always transfer a multiple of the cacheline size. This
70
        avoids problems with some USB device drivers.
71
 
72
2001-05-21  Bart Veer  
73
 
74
        * host/ecos_usbeth.c (ecos_usbeth_start_tx):
75
        Cope with targets that have problems receiving zero-byte
76
        packets.
77
 
78
2001-02-02  Bart Veer  
79
 
80
        * cdl/usbs_eth.cdl:
81
        Add doc property to point at the HTML
82
 
83
        * doc/usbseth.sgml, doc/*.html:
84
        Incorporate changes from docs department, regenerate HTML
85
 
86
2001-01-26  Bart Veer  
87
 
88
        * src/usbsethdrv.c (usbs_ethdrv_ioctl):
89
        Change chipset specification to null, since there is no real
90
        hardware involved, plus SNMP cleanup.
91
 
92
2001-01-22  Bart Veer  
93
 
94
        * doc/usbseth.sgml, doc/makefile, doc/simple.fig, doc/tcpip.fig:
95
        Added documentation.
96
 
97
2000-12-15  Bart Veer  
98
 
99
        * src/usbsethdrv.c:
100
        Enable poll functions.
101
 
102
2000-11-29  Bart Veer  
103
 
104
        * host/ecos_usbeth.c:
105
        Remove debugging and fix the MTU
106
 
107
2000-11-28  Bart Veer  
108
 
109
        * cdl/usbs_eth.cdl
110
        * include/usbs_eth.h
111
        * src/usbseth.c
112
        * src/usbsethdrv
113
        Clean-up, adding missing functionality such as SNMP support,
114
        update to current USB API.
115
 
116
2000-11-24  Bart Veer  
117
 
118
        * host/ecos_usbeth.c:
119
        Ignore runt packets, cope with the confusion between
120
        CRC errors and timeouts.
121
 
122
        * include/usbs_eth.h, src/usbseth.c
123
        Clean up alignments.
124
 
125
2000-11-22  Bart Veer  
126
 
127
        * include/usbs_eth.h: Fix nested #include protection
128
 
129
2000-11-21  Bart Veer  
130
 
131
        * First check-in of eCos USB support.
132
 
133
//===========================================================================
134
// ####GPLCOPYRIGHTBEGIN####
135
// -------------------------------------------
136
// This file is part of eCos, the Embedded Configurable Operating System.
137
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
138
//
139
// This program is free software; you can redistribute it and/or modify
140
// it under the terms of the GNU General Public License as published by
141
// the Free Software Foundation; either version 2 or (at your option) any
142
// later version.
143
//
144
// This program is distributed in the hope that it will be useful, but
145
// WITHOUT ANY WARRANTY; without even the implied warranty of
146
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
147
// General Public License for more details.
148
//
149
// You should have received a copy of the GNU General Public License
150
// along with this program; if not, write to the
151
// Free Software Foundation, Inc., 51 Franklin Street,
152
// Fifth Floor, Boston, MA  02110-1301, USA.
153
// -------------------------------------------
154
// ####GPLCOPYRIGHTEND####
155
//===========================================================================

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.