diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1994-10-15 21:18:11 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1994-10-15 21:18:11 +0000 |
| commit | 9d40918f0f23df82a31dc5deaefb23b1db1c8f46 (patch) | |
| tree | c94ae2431b57ec0aa36dd69e4c70f33664bc9edf | |
| parent | d6f9c011d2b2395fee57f0fcd271f5e7015a5878 (diff) | |
Notes
| -rw-r--r-- | sys/amd64/include/cpu.h | 6 | ||||
| -rw-r--r-- | sys/i386/include/cpu.h | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/sys/amd64/include/cpu.h b/sys/amd64/include/cpu.h index 90ee9a28d759..16a5f25bf462 100644 --- a/sys/amd64/include/cpu.h +++ b/sys/amd64/include/cpu.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)cpu.h 5.4 (Berkeley) 5/9/91 - * $Id: cpu.h,v 1.12 1994/10/08 22:21:32 phk Exp $ + * $Id: cpu.h,v 1.13 1994/10/10 01:06:48 phk Exp $ */ #ifndef _MACHINE_CPU_H_ @@ -100,13 +100,15 @@ struct cpu_nameclass { #define CPU_CONSDEV 1 /* dev_t: console terminal device */ #define CPU_ADJKERNTZ 2 /* int: timezone offset for resettodr() */ #define CPU_DISRTCSET 3 /* int: disable resettodr() call */ -#define CPU_MAXID 4 /* number of valid machdep ids */ +#define CPU_COLORDISP 4 /* int: console display type */ +#define CPU_MAXID 5 /* number of valid machdep ids */ #define CTL_MACHDEP_NAMES { \ { 0, 0 }, \ { "console_device", CTLTYPE_STRUCT }, \ { "adjkerntz", CTLTYPE_INT }, \ { "disable_rtc_set", CTLTYPE_INT }, \ + { "color_display", CTLTYPE_INT }, \ } #ifdef KERNEL diff --git a/sys/i386/include/cpu.h b/sys/i386/include/cpu.h index 90ee9a28d759..16a5f25bf462 100644 --- a/sys/i386/include/cpu.h +++ b/sys/i386/include/cpu.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)cpu.h 5.4 (Berkeley) 5/9/91 - * $Id: cpu.h,v 1.12 1994/10/08 22:21:32 phk Exp $ + * $Id: cpu.h,v 1.13 1994/10/10 01:06:48 phk Exp $ */ #ifndef _MACHINE_CPU_H_ @@ -100,13 +100,15 @@ struct cpu_nameclass { #define CPU_CONSDEV 1 /* dev_t: console terminal device */ #define CPU_ADJKERNTZ 2 /* int: timezone offset for resettodr() */ #define CPU_DISRTCSET 3 /* int: disable resettodr() call */ -#define CPU_MAXID 4 /* number of valid machdep ids */ +#define CPU_COLORDISP 4 /* int: console display type */ +#define CPU_MAXID 5 /* number of valid machdep ids */ #define CTL_MACHDEP_NAMES { \ { 0, 0 }, \ { "console_device", CTLTYPE_STRUCT }, \ { "adjkerntz", CTLTYPE_INT }, \ { "disable_rtc_set", CTLTYPE_INT }, \ + { "color_display", CTLTYPE_INT }, \ } #ifdef KERNEL |
