Changeset 202d54e in rtems
- Timestamp:
- 04/19/99 14:58:16 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 7cdf7fc1
- Parents:
- 5409453
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/networking/driver.t
r5409453 r202d54e 114 114 115 115 Network drivers are considered part of the BSD network package and as such 116 are to be compiled with the appropriate flags. 116 are to be compiled with the appropriate flags. This can be accomplished by 117 adding @code{-D__INSIDE_RTEMS_BSD_TCPIP_STACK__} to the @code{command line}. 118 If the driver is inside the RTEMS source tree or is built using the 119 RTEMS application Makefiles, then adding the following line accomplishes 120 this: 121 122 @example 123 DEFINES += -D__INSIDE_RTEMS_BSD_TCPIP_STACK__ 124 @end example 125 126 This is equivalent to the following list of definitions. Early versions 127 of the RTEMS BSD network stack required that all of these be defined. 117 128 118 129 @example … … 135 146 136 147 @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 be148 daemon are @b{not} part of the BSD kernel network code and should not be 138 149 compiled with the BSD network flags. They should include 139 150 @code{<stdlib.h>} and not define the network stack visibility … … 141 152 142 153 @section Write the Driver Attach Function 154 143 155 The driver attach function is responsible for configuring the driver 144 156 and making the connection between the network stack
Note: See TracChangeset
for help on using the changeset viewer.