Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/pmax/include Move BOOTINFO_ADDR up to 0x8001fc00, a...



details:   https://anonhg.NetBSD.org/src/rev/b2a107ede45f
branches:  trunk
changeset: 472124:b2a107ede45f
user:      simonb <simonb%NetBSD.org@localhost>
date:      Thu Apr 22 01:52:54 1999 +0000

description:
Move BOOTINFO_ADDR up to 0x8001fc00, and reduce the maximum size of a
bootinfo record to 1kB (we are using less than 200 bytes now) so that it
doesn't run into addition PROM memory.

At 0x8001f00 the bootinfo record was stomping on some memory used by the
SFB cards for font information.

diffstat:

 sys/arch/pmax/include/bootinfo.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (25 lines):

diff -r 1150e991bda8 -r b2a107ede45f sys/arch/pmax/include/bootinfo.h
--- a/sys/arch/pmax/include/bootinfo.h  Thu Apr 22 01:32:30 1999 +0000
+++ b/sys/arch/pmax/include/bootinfo.h  Thu Apr 22 01:52:54 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bootinfo.h,v 1.1 1999/03/23 22:53:02 simonb Exp $      */
+/*     $NetBSD: bootinfo.h,v 1.2 1999/04/22 01:52:54 simonb Exp $      */
 
 /*
  * Copyright (c) 1997
@@ -33,13 +33,13 @@
  */
 
 #define BOOTINFO_MAGIC 0xb007babe
-#define BOOTINFO_SIZE  4096
+#define BOOTINFO_SIZE  1024
 
 /*
  * The bootinfo structure is at the end of the 64kB hole between
  * 0x80010000 to 0x8001ffff that neither NetBSD nor the PROM uses.
  */
-#define BOOTINFO_ADDR  0x8001f000      
+#define BOOTINFO_ADDR  0x8001fc00      
 
 struct btinfo_common {
        int next;               /* offset of next item, or zero */



Home | Main Index | Thread Index | Old Index