diff options
author | kato <kato@FreeBSD.org> | 1998-10-06 13:16:29 +0000 |
---|---|---|
committer | kato <kato@FreeBSD.org> | 1998-10-06 13:16:29 +0000 |
commit | 5c811970f93597f910f75c2df6a06a262c02984f (patch) | |
tree | 15b2411727db7060104658127a54dd17de6e7b9a /sys/i386/conf/LINT | |
parent | f37c35755da9a0f27e648ac1ffc453524689aac6 (diff) | |
download | FreeBSD-src-5c811970f93597f910f75c2df6a06a262c02984f.zip FreeBSD-src-5c811970f93597f910f75c2df6a06a262c02984f.tar.gz |
- Implement enabling write allocate on AMD K5/K6/K6-2 cpus.
The code was originaly contributed by Kelly Yancey
<kbyanc@freedomnet.com> in PR i386/6269 and revised by Akio Morita
<amorita@meadow.scphys.kyoto-u.ac.jp> and me. Test was performed by
Akio Morita and Toshiomi Moriki <moriki@db.is.kyushu-u.ac.jp>.
- Fix stylistic bug in identcpu.c.
- Update copyright in initcpu.c
- Fix typo in LINT.
PR: 6269 and 6270
Diffstat (limited to 'sys/i386/conf/LINT')
-rw-r--r-- | sys/i386/conf/LINT | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/i386/conf/LINT b/sys/i386/conf/LINT index dc8ccff..b74cb36 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.481 1998/10/02 21:00:58 ken Exp $ +# $Id: LINT,v 1.482 1998/10/05 07:45:54 obrien 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 @@ -163,7 +163,8 @@ cpu "I686_CPU" # aka Pentium Pro(tm) # CPU_SUSP_HLT enables suspend on HALT. If this option is set, CPU # enters suspend mode following execution of HALT instruction. # -# CPU_WT_ALLOC enables write-through allocation. +# CPU_WT_ALLOC enables write allocation on Cyrix 6x86/6x86MX and AMD +# K5/K6/K6-2 cpus. # # CYRIX_CACHE_WORKS enables CPU cache on Cyrix 486 CPUs with cache # flush at hold state. @@ -178,7 +179,7 @@ cpu "I686_CPU" # aka Pentium Pro(tm) # on a Pentium. # # NOTE 1: The options, CPU_BTB_EN, CPU_LOOP_EN, CPU_IORT, -# CPU_LOOP_ENand CPU_RSTK_EN should no be used becasue of CPU bugs. +# CPU_LOOP_ENand CPU_RSTK_EN should not be used becasue of CPU bugs. # These options may crash your system. # # NOTE 2: If CYRIX_CACHE_REALLY_WORKS is not set, CPU cache is enabled @@ -199,6 +200,7 @@ options "CPU_IORT" options "CPU_LOOP_EN" options "CPU_RSTK_EN" options "CPU_SUSP_HLT" +options "CPU_WT_ALLOC" options "CYRIX_CACHE_WORKS" options "CYRIX_CACHE_REALLY_WORKS" #options "NO_F00F_HACK" |