diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2007-06-17 12:59:53 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2007-06-17 12:59:53 +0000 |
commit | 60648e5a607112549120f667adfb4fd125f79277 (patch) | |
tree | 0ab323feba906c8ae48f85bd0204273a536abf34 /sys/arch | |
parent | 47a1a0cafdf5d00a7e299290e1f380ddb1ff5d22 (diff) |
Disable memory above 256MB for now, it triggers bugs (probably related to
cache operations).
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sgi/sgi/machdep.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/sgi/sgi/machdep.c b/sys/arch/sgi/sgi/machdep.c index 7e73cb74824..cbe87a635d8 100644 --- a/sys/arch/sgi/sgi/machdep.c +++ b/sys/arch/sgi/sgi/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.43 2007/05/29 20:36:48 deraadt Exp $ */ +/* $OpenBSD: machdep.c,v 1.44 2007/06/17 12:59:52 miod Exp $ */ /* * Copyright (c) 2003-2004 Opsycon AB (www.opsycon.se / www.opsycon.com) @@ -298,7 +298,9 @@ bios_printf("SR=%08x\n", getsr()); /* leave this in for now. need to see sr */ sys_config.pci_mem[0].bus_reverse = my_endian; sys_config.cpu[0].tlbwired = 2; +#if 0 crime_configure_memory(); +#endif sys_config.cpu[0].clock = 180000000; /* Reasonable default */ cp = Bios_GetEnvironmentVariable("cpufreq"); |