Deleted Added
sdiff udiff text old ( 13942 ) new ( 14093 )
full compact
1#
2# LINT -- config file for checking all the sources, tries to pull in
3# as much of the source tree as it can.
4#
5# $Id: LINT,v 1.238 1996/02/06 20:57:46 wollman Exp $
6#
7# NB: You probably don't want to try running a kernel built from this
8# file. Instead, you should start from GENERIC, and add options from
9# this file as required.
10#
11
12#
13# This directive is mandatory; it defines the architecture to be

--- 110 unchanged lines hidden (view full) ---

124#
125# Protocol families:
126# Only the INET (Internet) family is officially supported in FreeBSD.
127# Source code for the NS (Xerox Network Service), ISO (OSI), and
128# CCITT (X.25) families is provided for amusement value, although we
129# try to ensure that it actually compiles.
130#
131options INET #Internet communications protocols
132
133options IPX #IPX/SPX communications protocols
134options IPXIP #IPX in IP encapsulation (not available)
135options IPTUNNEL #IP in IPX encapsulation (not available)
136options IPXPRINTFS=0 #IPX/SPX Console Debugging Information
137options IPX_ERRPRINTFS=0 #IPX/SPX Console Debugging Information
138
139# These are currently broken and are no longer shipped due to lack
140# of interest.
141#options CCITT #X.25 network layer
142#options ISO
143#options TPIP #ISO TP class 4 over IP
144#options TPCONS #ISO TP class 0 over X.25
145#options LLC #X.25 link layer for Ethernets
146#options HDLC #X.25 link layer for serial lines
147#options EON #ISO CLNP over IP
148#options NS #Xerox NS protocols
149#options NSIP #XNS over IP
150
151#
152# Network interfaces:
153# The `loop' pseudo-device is MANDATORY when networking is enabled.
154# The `ether' pseudo-device provides generic code to handle
155# Ethernets; it is MANDATORY when a Ethernet device driver is
156# configured.
157# The 'fddi' pseudo-device provides generic code to support FDDI.

--- 15 unchanged lines hidden (view full) ---

173pseudo-device sppp #Generic Synchronous PPP
174pseudo-device loop #Network loopback device
175pseudo-device sl 2 #Serial Line IP
176pseudo-device ppp 2 #Point-to-point protocol
177pseudo-device bpfilter 4 #Berkeley packet filter
178pseudo-device disc #Discard device
179pseudo-device tun 1 #Tunnel driver(user process ppp)
180
181#
182# Internet family options:
183#
184# TCP_COMPAT_42 causes the TCP code to emulate certain bugs present in
185# 4.2BSD. This option should not be used unless you have a 4.2BSD
186# machine and TCP connections fail.
187#
188# MROUTING enables the kernel multicast packet forwarder, which works

--- 665 unchanged lines hidden ---