Changeset 202d54e in rtems


Ignore:
Timestamp:
04/19/99 14:58:16 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
7cdf7fc1
Parents:
5409453
Message:

Comments from Eric Norum taken into account.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/networking/driver.t

    r5409453 r202d54e  
    114114
    115115Network drivers are considered part of the BSD network package and as such
    116 are to be compiled with the appropriate flags.
     116are to be compiled with the appropriate flags.  This can be accomplished by
     117adding @code{-D__INSIDE_RTEMS_BSD_TCPIP_STACK__} to the @code{command line}.
     118If the driver is inside the RTEMS source tree or is built using the
     119RTEMS application Makefiles, then adding the following line accomplishes
     120this:
     121
     122@example
     123DEFINES += -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
     124@end example
     125
     126This is equivalent to the following list of definitions.  Early versions
     127of the RTEMS BSD network stack required that all of these be defined.
    117128
    118129@example
     
    135146
    136147@b{Application level} code including network servers such as the FTP
    137 daemon are @b{not} part of the BSD network package and should not be
     148daemon are @b{not} part of the BSD kernel network code and should not be
    138149compiled with the BSD network flags.  They should include
    139150@code{<stdlib.h>} and not define the network stack visibility
     
    141152
    142153@section Write the Driver Attach Function
     154
    143155The driver attach function is responsible for configuring the driver
    144156and making the connection between the network stack
Note: See TracChangeset for help on using the changeset viewer.