Hardwire physmem to 32MB if not called from CFE.

This should be a kernel config option, but for now is enough to get
a sbmips GENERIC kernel running under a simulator.
This commit is contained in:
simonb 2003-07-06 12:14:50 +00:00
parent be66d7b092
commit 91dc378d5c
1 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.19 2003/04/26 11:05:23 ragge Exp $ */
/* $NetBSD: machdep.c,v 1.20 2003/07/06 12:14:50 simonb Exp $ */
/*
* Copyright 2000, 2001
@ -264,6 +264,8 @@ mach_init(long fwhandle, long magic, long bootdata, long reserved)
/*
* Handle the case of not being called from the firmware.
*/
/* XXX hardwire to 32MB; should be kernel config option */
physmem = 32 * 1024 * 1024 / 4096;
mem_clusters[0].start = 0;
mem_clusters[0].size = ctob(physmem);
mem_cluster_cnt = 1;