Bandaid for the Uniprocessor kernel exploding. This makes a UP kernel

boot and run (and indeed I am committing from it) instead of exploding
during the int 0x15 call from inside the atkbd driver to get the keyboard
repeat rates.
This commit is contained in:
Peter Wemm 2002-02-27 06:05:24 +00:00
parent 60d9b32e44
commit 5c004dc68e
2 changed files with 2 additions and 2 deletions

View File

@ -369,7 +369,7 @@ pmap_bootstrap(firstaddr, loadaddr)
PTD[i] = 0;
pgeflag = 0;
#if !defined(SMP) || defined(ENABLE_PG_G)
#if /* !defined(SMP) || */ defined(ENABLE_PG_G)
if (cpu_feature & CPUID_PGE)
pgeflag = PG_G;
#endif

View File

@ -369,7 +369,7 @@ pmap_bootstrap(firstaddr, loadaddr)
PTD[i] = 0;
pgeflag = 0;
#if !defined(SMP) || defined(ENABLE_PG_G)
#if /* !defined(SMP) || */ defined(ENABLE_PG_G)
if (cpu_feature & CPUID_PGE)
pgeflag = PG_G;
#endif