aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1995-12-29 02:04:20 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1995-12-29 02:04:20 +0000
commit56c7a48c936a8f891f0e0eabb2bc7154c9fb71b7 (patch)
tree6084c6c526b42fe856c816961168f69875f45dc0 /sys
parent221f90d3408ad53292b21b26d2d2cf40da92fc35 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/amd64/conf/GENERIC5
-rw-r--r--sys/conf/NOTES17
-rw-r--r--sys/i386/conf/GENERIC5
-rw-r--r--sys/i386/conf/LINT17
-rw-r--r--sys/i386/conf/NOTES17
5 files changed, 39 insertions, 22 deletions
diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC
index 14d07c50e588..1dcebcb647de 100644
--- a/sys/amd64/conf/GENERIC
+++ b/sys/amd64/conf/GENERIC
@@ -1,7 +1,7 @@
#
# GENERIC -- Generic machine with WD/AHx/NCR/BTx family disks
#
-# $Id: GENERIC,v 1.56 1995/12/24 08:11:44 davidg Exp $
+# $Id: GENERIC,v 1.57 1995/12/24 08:13:22 davidg Exp $
#
machine "i386"
@@ -19,7 +19,7 @@ options NFS #Network Filesystem
options MSDOSFS #MSDOS Filesystem
options "CD9660" #ISO 9660 Filesystem
options PROCFS #Process filesystem
-options "COMPAT_43" #Compatible with BSD 4.3
+options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!]
options SCSI_DELAY=15 #Be pessimistic about Joe SCSI device
options BOUNCE_BUFFERS #include support for DMA bounce buffers
options UCONSOLE #Allow users to grab the console
@@ -123,4 +123,5 @@ pseudo-device sl 1
#pseudo-device ppp 1
pseudo-device tun 1
pseudo-device pty 16
+# keep this if you want to be able to continue to use /stand/sysinstall
pseudo-device gzip # Exec gzipped a.out's
diff --git a/sys/conf/NOTES b/sys/conf/NOTES
index 9900deb9ba4f..72c9db554af7 100644
--- a/sys/conf/NOTES
+++ b/sys/conf/NOTES
@@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
-# $Id: LINT,v 1.228 1995/12/25 07:38:35 bde Exp $
+# $Id: LINT,v 1.229 1995/12/26 14:01:16 bde Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@@ -69,7 +69,8 @@ config kernel root on wd0 dumps on wd0
#
# Implement system calls compatible with 4.3BSD and older versions of
-# FreeBSD.
+# FreeBSD. You probably do NOT want to remove this as much current code
+# still relies on the 4.3 emulation.
#
options "COMPAT_43"
@@ -144,9 +145,9 @@ options IPX_ERRPRINTFS=0 #IPX/SPX Console Debugging Information
#
# Network interfaces:
-# The `loop' pseudo-device is mandatory when networking is enabled.
+# The `loop' pseudo-device is MANDATORY when networking is enabled.
# The `ether' pseudo-device provides generic code to handle
-# Ethernets; it is mandatory when a Ethernet device driver is
+# Ethernets; it is MANDATORY when a Ethernet device driver is
# configured.
# The 'fddi' pseudo-device provides generic code to support FDDI.
# The `sppp' pseudo-device serves a similar role for certain types
@@ -187,7 +188,9 @@ options HDLC #X.25 link layer for serial lines
# machine and TCP connections fail.
#
# GATEWAY allows the machine to forward packets, and also configures
-# larger static sizes of a number of system tables.
+# larger static sizes of a number of system tables. It is largely
+# replaced by the more dynamic behavior of
+# sysctl -w net.inet.ip.forwarding=1
#
# MROUTING enables the kernel multicast packet forwarder, which works
# with mrouted(8).
@@ -344,7 +347,9 @@ options SCSI_REPORT_GEOMETRY
# device usually turns out to be ``effectively mandatory'', as it is
# required for `telnetd', `rlogind', `screen', `emacs', and `xterm',
# among others. The `isdn', `ii', `ity', `itel', and `ispy' devices
-# are all required when ISDN support is used.
+# are all required when ISDN support is used. If you wish to run certain
+# system utilities which are compressed by default (like /stand/sysinstall)
+# then `gzip' becomes mandatory too.
#
pseudo-device pty 16 #Pseudo ttys - can go as high as 64
pseudo-device speaker #Play IBM BASIC-style noises out your speaker
diff --git a/sys/i386/conf/GENERIC b/sys/i386/conf/GENERIC
index 14d07c50e588..1dcebcb647de 100644
--- a/sys/i386/conf/GENERIC
+++ b/sys/i386/conf/GENERIC
@@ -1,7 +1,7 @@
#
# GENERIC -- Generic machine with WD/AHx/NCR/BTx family disks
#
-# $Id: GENERIC,v 1.56 1995/12/24 08:11:44 davidg Exp $
+# $Id: GENERIC,v 1.57 1995/12/24 08:13:22 davidg Exp $
#
machine "i386"
@@ -19,7 +19,7 @@ options NFS #Network Filesystem
options MSDOSFS #MSDOS Filesystem
options "CD9660" #ISO 9660 Filesystem
options PROCFS #Process filesystem
-options "COMPAT_43" #Compatible with BSD 4.3
+options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!]
options SCSI_DELAY=15 #Be pessimistic about Joe SCSI device
options BOUNCE_BUFFERS #include support for DMA bounce buffers
options UCONSOLE #Allow users to grab the console
@@ -123,4 +123,5 @@ pseudo-device sl 1
#pseudo-device ppp 1
pseudo-device tun 1
pseudo-device pty 16
+# keep this if you want to be able to continue to use /stand/sysinstall
pseudo-device gzip # Exec gzipped a.out's
diff --git a/sys/i386/conf/LINT b/sys/i386/conf/LINT
index 9900deb9ba4f..72c9db554af7 100644
--- a/sys/i386/conf/LINT
+++ b/sys/i386/conf/LINT
@@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
-# $Id: LINT,v 1.228 1995/12/25 07:38:35 bde Exp $
+# $Id: LINT,v 1.229 1995/12/26 14:01:16 bde Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@@ -69,7 +69,8 @@ config kernel root on wd0 dumps on wd0
#
# Implement system calls compatible with 4.3BSD and older versions of
-# FreeBSD.
+# FreeBSD. You probably do NOT want to remove this as much current code
+# still relies on the 4.3 emulation.
#
options "COMPAT_43"
@@ -144,9 +145,9 @@ options IPX_ERRPRINTFS=0 #IPX/SPX Console Debugging Information
#
# Network interfaces:
-# The `loop' pseudo-device is mandatory when networking is enabled.
+# The `loop' pseudo-device is MANDATORY when networking is enabled.
# The `ether' pseudo-device provides generic code to handle
-# Ethernets; it is mandatory when a Ethernet device driver is
+# Ethernets; it is MANDATORY when a Ethernet device driver is
# configured.
# The 'fddi' pseudo-device provides generic code to support FDDI.
# The `sppp' pseudo-device serves a similar role for certain types
@@ -187,7 +188,9 @@ options HDLC #X.25 link layer for serial lines
# machine and TCP connections fail.
#
# GATEWAY allows the machine to forward packets, and also configures
-# larger static sizes of a number of system tables.
+# larger static sizes of a number of system tables. It is largely
+# replaced by the more dynamic behavior of
+# sysctl -w net.inet.ip.forwarding=1
#
# MROUTING enables the kernel multicast packet forwarder, which works
# with mrouted(8).
@@ -344,7 +347,9 @@ options SCSI_REPORT_GEOMETRY
# device usually turns out to be ``effectively mandatory'', as it is
# required for `telnetd', `rlogind', `screen', `emacs', and `xterm',
# among others. The `isdn', `ii', `ity', `itel', and `ispy' devices
-# are all required when ISDN support is used.
+# are all required when ISDN support is used. If you wish to run certain
+# system utilities which are compressed by default (like /stand/sysinstall)
+# then `gzip' becomes mandatory too.
#
pseudo-device pty 16 #Pseudo ttys - can go as high as 64
pseudo-device speaker #Play IBM BASIC-style noises out your speaker
diff --git a/sys/i386/conf/NOTES b/sys/i386/conf/NOTES
index 9900deb9ba4f..72c9db554af7 100644
--- a/sys/i386/conf/NOTES
+++ b/sys/i386/conf/NOTES
@@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
-# $Id: LINT,v 1.228 1995/12/25 07:38:35 bde Exp $
+# $Id: LINT,v 1.229 1995/12/26 14:01:16 bde Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@@ -69,7 +69,8 @@ config kernel root on wd0 dumps on wd0
#
# Implement system calls compatible with 4.3BSD and older versions of
-# FreeBSD.
+# FreeBSD. You probably do NOT want to remove this as much current code
+# still relies on the 4.3 emulation.
#
options "COMPAT_43"
@@ -144,9 +145,9 @@ options IPX_ERRPRINTFS=0 #IPX/SPX Console Debugging Information
#
# Network interfaces:
-# The `loop' pseudo-device is mandatory when networking is enabled.
+# The `loop' pseudo-device is MANDATORY when networking is enabled.
# The `ether' pseudo-device provides generic code to handle
-# Ethernets; it is mandatory when a Ethernet device driver is
+# Ethernets; it is MANDATORY when a Ethernet device driver is
# configured.
# The 'fddi' pseudo-device provides generic code to support FDDI.
# The `sppp' pseudo-device serves a similar role for certain types
@@ -187,7 +188,9 @@ options HDLC #X.25 link layer for serial lines
# machine and TCP connections fail.
#
# GATEWAY allows the machine to forward packets, and also configures
-# larger static sizes of a number of system tables.
+# larger static sizes of a number of system tables. It is largely
+# replaced by the more dynamic behavior of
+# sysctl -w net.inet.ip.forwarding=1
#
# MROUTING enables the kernel multicast packet forwarder, which works
# with mrouted(8).
@@ -344,7 +347,9 @@ options SCSI_REPORT_GEOMETRY
# device usually turns out to be ``effectively mandatory'', as it is
# required for `telnetd', `rlogind', `screen', `emacs', and `xterm',
# among others. The `isdn', `ii', `ity', `itel', and `ispy' devices
-# are all required when ISDN support is used.
+# are all required when ISDN support is used. If you wish to run certain
+# system utilities which are compressed by default (like /stand/sysinstall)
+# then `gzip' becomes mandatory too.
#
pseudo-device pty 16 #Pseudo ttys - can go as high as 64
pseudo-device speaker #Play IBM BASIC-style noises out your speaker