Source-Changes-HG archive

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

[src/netbsd-1-4]: src/usr.sbin/mopd/mopd Pull up revision 1.7 (requested by r...



details:   https://anonhg.NetBSD.org/src/rev/bc3486a7b220
branches:  netbsd-1-4
changeset: 470692:bc3486a7b220
user:      he <he%NetBSD.org@localhost>
date:      Wed Jun 28 18:50:24 2000 +0000

description:
Pull up revision 1.7 (requested by ragge):
  Allow "big" VAXes to be mop-booted.

diffstat:

 usr.sbin/mopd/mopd/process.c |  6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diffs (27 lines):

diff -r a777354d2818 -r bc3486a7b220 usr.sbin/mopd/mopd/process.c
--- a/usr.sbin/mopd/mopd/process.c      Wed Jun 28 18:47:02 2000 +0000
+++ b/usr.sbin/mopd/mopd/process.c      Wed Jun 28 18:50:24 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: process.c,v 1.5 1997/10/16 23:25:19 lukem Exp $        */
+/*     $NetBSD: process.c,v 1.5.4.1 2000/06/28 18:50:24 he Exp $       */
 
 /*
  * Copyright (c) 1993-95 Mats O Jansson.  All rights reserved.
@@ -31,7 +31,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: process.c,v 1.5 1997/10/16 23:25:19 lukem Exp $");
+__RCSID("$NetBSD: process.c,v 1.5.4.1 2000/06/28 18:50:24 he Exp $");
 #endif
 
 #include "os.h"
@@ -282,6 +282,8 @@
                dllist[slot].dl_bsz = 1492;
        if (dllist[slot].dl_bsz == 1030)        /* VS/uVAX 2000 needs this */
                dllist[slot].dl_bsz = 1000;
+       if (dllist[slot].dl_bsz == 0)           /* Needed by "big" VAXen */
+               dllist[slot].dl_bsz = 1492;
        if (trans == TRANS_8023)
                dllist[slot].dl_bsz = dllist[slot].dl_bsz - 8;
 



Home | Main Index | Thread Index | Old Index