1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

Removed options MAXCONS & HARDFONT, they are no longer in use

(and havn't been for long, sigh)
This commit is contained in:
Søren Schmidt 1996-04-26 06:45:41 +00:00
parent 5da0cf3eec
commit 03475c250b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=15390
8 changed files with 8 additions and 52 deletions

View File

@ -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.249 1996/04/11 06:19:44 scrappy Exp $
# $Id: LINT,v 1.250 1996/04/22 19:40:25 nate 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
@ -449,19 +449,6 @@ options PCVT_SCANSET=2 # IBM keyboards are non-std
# The syscons console driver (sco color console compatible) - default.
device sc0 at isa? port "IO_KBD" tty irq 1 vector scintr
#
# Options for `sc':
#
# HARDFONTS allows the driver to load an ISO-8859-1 font to replace
# the default font in your display adapter's memory.
#
options HARDFONTS
#
# MAXCONS is maximum number of virtual consoles, no more than 16
# default value: 12
#
options MAXCONS=16
#
# This device is mandatory.
#

View File

@ -1,9 +1,8 @@
# $Id: options.i386,v 1.9 1996/04/11 21:18:26 bde Exp $
# $Id: options.i386,v 1.10 1996/04/13 16:50:23 bde Exp $
BOUNCEPAGES opt_bounce.h
USER_LDT
MATH_EMULATE opt_math_emulate.h
GPL_MATH_EMULATE opt_math_emulate.h
MAXCONS opt_syscons.h
IBCS2 opt_ibcs2.h
SHOW_BUSYBUFS opt_machdep.h
PANIC_REBOOT_WAIT_TIME opt_machdep.h

View File

@ -25,13 +25,12 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: syscons.c,v 1.143 1996/03/02 18:24:03 peter Exp $
* $Id: syscons.c,v 1.144 1996/03/27 19:11:41 bde Exp $
*/
#include "sc.h"
#include "apm.h"
#include "opt_ddb.h"
#include "opt_syscons.h"
#if NSC > 0
#include <sys/param.h>

View File

@ -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.249 1996/04/11 06:19:44 scrappy Exp $
# $Id: LINT,v 1.250 1996/04/22 19:40:25 nate 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
@ -449,19 +449,6 @@ options PCVT_SCANSET=2 # IBM keyboards are non-std
# The syscons console driver (sco color console compatible) - default.
device sc0 at isa? port "IO_KBD" tty irq 1 vector scintr
#
# Options for `sc':
#
# HARDFONTS allows the driver to load an ISO-8859-1 font to replace
# the default font in your display adapter's memory.
#
options HARDFONTS
#
# MAXCONS is maximum number of virtual consoles, no more than 16
# default value: 12
#
options MAXCONS=16
#
# This device is mandatory.
#

View File

@ -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.249 1996/04/11 06:19:44 scrappy Exp $
# $Id: LINT,v 1.250 1996/04/22 19:40:25 nate 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
@ -449,19 +449,6 @@ options PCVT_SCANSET=2 # IBM keyboards are non-std
# The syscons console driver (sco color console compatible) - default.
device sc0 at isa? port "IO_KBD" tty irq 1 vector scintr
#
# Options for `sc':
#
# HARDFONTS allows the driver to load an ISO-8859-1 font to replace
# the default font in your display adapter's memory.
#
options HARDFONTS
#
# MAXCONS is maximum number of virtual consoles, no more than 16
# default value: 12
#
options MAXCONS=16
#
# This device is mandatory.
#

View File

@ -1,9 +1,8 @@
# $Id: options.i386,v 1.9 1996/04/11 21:18:26 bde Exp $
# $Id: options.i386,v 1.10 1996/04/13 16:50:23 bde Exp $
BOUNCEPAGES opt_bounce.h
USER_LDT
MATH_EMULATE opt_math_emulate.h
GPL_MATH_EMULATE opt_math_emulate.h
MAXCONS opt_syscons.h
IBCS2 opt_ibcs2.h
SHOW_BUSYBUFS opt_machdep.h
PANIC_REBOOT_WAIT_TIME opt_machdep.h

View File

@ -25,13 +25,12 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: syscons.c,v 1.143 1996/03/02 18:24:03 peter Exp $
* $Id: syscons.c,v 1.144 1996/03/27 19:11:41 bde Exp $
*/
#include "sc.h"
#include "apm.h"
#include "opt_ddb.h"
#include "opt_syscons.h"
#if NSC > 0
#include <sys/param.h>

View File

@ -25,13 +25,12 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: syscons.c,v 1.143 1996/03/02 18:24:03 peter Exp $
* $Id: syscons.c,v 1.144 1996/03/27 19:11:41 bde Exp $
*/
#include "sc.h"
#include "apm.h"
#include "opt_ddb.h"
#include "opt_syscons.h"
#if NSC > 0
#include <sys/param.h>