Source-Changes-HG archive

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

[src/netbsd-1-5]: src/sys/arch/mvme68k/stand/netboot Pullup from trunk: 1.3 -...



details:   https://anonhg.NetBSD.org/src/rev/d22d44826df1
branches:  netbsd-1-5
changeset: 488535:d22d44826df1
user:      scw <scw%NetBSD.org@localhost>
date:      Sat Jul 15 20:34:40 2000 +0000

description:
Pullup from trunk: 1.3 - 1.4
Approved by: thorpej

Move the address of the packet buffer to avoid overwriting it with
the ramdisk image.

diffstat:

 sys/arch/mvme68k/stand/netboot/if_ie.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 7e10fedb8833 -r d22d44826df1 sys/arch/mvme68k/stand/netboot/if_ie.c
--- a/sys/arch/mvme68k/stand/netboot/if_ie.c    Sat Jul 15 19:47:04 2000 +0000
+++ b/sys/arch/mvme68k/stand/netboot/if_ie.c    Sat Jul 15 20:34:40 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_ie.c,v 1.3 1999/03/28 18:08:55 scw Exp $    */
+/*     $NetBSD: if_ie.c,v 1.3.20.1 2000/07/15 20:34:40 scw Exp $       */
 
 /*
  * Copyright (c) 1995 Theo de Raadt
@@ -446,7 +446,7 @@
        bzero(&ie_softc, sizeof(ie_softc));
        ie_softc.sc_reg =
            (struct iereg *) ie_config[desc->io_netif->nif_unit].phys_addr;
-       ie_softc.sc_mem = (struct iemem *) 0x1e0000;
+       ie_softc.sc_mem = (struct iemem *) 0x3e0000;
        ie_reset(desc->io_netif, desc->myea);
        printf("device: %s%d attached to %s\n", nif->nif_driver->netif_bname,
            nif->nif_unit, ether_sprintf(desc->myea));



Home | Main Index | Thread Index | Old Index