diff options
-rw-r--r-- | src/arch/i386/lib/cpu.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/arch/i386/lib/cpu.c b/src/arch/i386/lib/cpu.c index 2006bc3a83..23c35bc816 100644 --- a/src/arch/i386/lib/cpu.c +++ b/src/arch/i386/lib/cpu.c @@ -128,9 +128,12 @@ unsigned long cpu_initialize(struct mem_range *mem) /* Turn on caching if we haven't already */ cache_on(mem); - +#if i586==1 display_cpuid(); +#endif +#if i686==1 mtrr_check(); +#endif /* some cpus need a fixup done. This is the hook for doing that. */ cpufixup(mem); |