Boot monitor shouldn't report memory after 4GB; the addresses are wrong and VM can't deal with it anyways
This commit is contained in:
parent
a7ed430587
commit
f8c56494c9
1 changed files with 1 additions and 1 deletions
|
@ -549,7 +549,7 @@ static void initialize(void)
|
|||
int i, j;
|
||||
j = 0;
|
||||
for(i = 0; i < mem_entries ; i++) {
|
||||
if (j < 3 && emem[i].type == 1) {
|
||||
if (j < 3 && emem[i].type == 1 && !emem[i].base_hi) {
|
||||
mem[j].base = emem[i].base_lo;
|
||||
mem[j].size = emem[i].size_lo;
|
||||
j++;
|
||||
|
|
Loading…
Reference in a new issue