diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-10-25 06:20:15 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-10-25 06:20:15 +0000 |
commit | a3b9838fbf80be0c0da02254378c06702c5a651d (patch) | |
tree | 058b85d3fb444ed212fff5f551bd60c4b4dcf284 | |
parent | cbbec9ecbdc32226c819b7d2eb9e9804ebb9bb3a (diff) |
be slightly more verbose for my sake
-rw-r--r-- | sys/arch/i386/i386/machdep.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index 29c5365a391..a8be82eebae 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.25 1996/10/23 05:23:39 etheisen Exp $ */ +/* $OpenBSD: machdep.c,v 1.26 1996/10/25 06:20:14 downsj Exp $ */ /* $NetBSD: machdep.c,v 1.202 1996/05/18 15:54:59 christos Exp $ */ /*- @@ -1181,6 +1181,8 @@ init386(first_avail) #endif #ifdef EXTMEM_SIZE /* Override memory size */ + if (biosextmem != EXTMEM_SIZE) + printf("Note: Overriding BIOS memsize of %d.\n", biosextmem); biosextmem = EXTMEM_SIZE; #endif |