From owner-freebsd-current Thu May 9 10:49:57 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id KAA28247 for current-outgoing; Thu, 9 May 1996 10:49:57 -0700 (PDT) Received: from uucp.DK.net (uucp@uucp.DK.net [193.88.44.47]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id KAA28242 Thu, 9 May 1996 10:49:54 -0700 (PDT) Received: from pingnet (uucp@localhost) by uucp.DK.net (8.6.12/8.6.12) with UUCP id TAA15990; Thu, 9 May 1996 19:49:52 +0200 Received: from kyklopen by ic1.ic.dk with UUCP id AA21119 (5.65c8/IDA-1.4.4j); Thu, 9 May 1996 19:29:44 +0200 Received: (from staff@localhost) by kyklopen.ping.dk (8.7.5/8.7.3) id TAA01393; Thu, 9 May 1996 19:28:47 +0200 (MET DST) Date: Thu, 9 May 1996 19:28:45 +0200 (MET DST) From: Thomas Sparrevohn To: freebsd-current@freefall.freebsd.org Cc: phk@freefall.freebsd.org Subject: Rebooting problem solved Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Charset: ISO_8859-1 X-Char-Esc: 29 Sender: owner-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk It seems that the fix to locore.s that Poul-Henning submittet in ctm#1767 fixed the problem. I have included a context diff for the ones who does'nt use ctm. I must admit that thought _etext allways was page aligned. *** /sys/i386/i386/locore.s#ctm Thu May 9 00:31:25 1996 --- /sys/i386/i386/locore.s Thu May 9 19:10:16 1996 *************** *** 34,40 **** * SUCH DAMAGE. * * from: @(#)locore.s 7.3 (Berkeley) 5/13/91 ! * $Id: locore.s,v 1.70 1996/05/02 22:24:55 phk Exp $ * * originally from: locore.s, by William F. Jolitz * --- 34,40 ---- * SUCH DAMAGE. * * from: @(#)locore.s 7.3 (Berkeley) 5/13/91 ! * $Id: locore.s,v 1.71 1996/05/09 07:16:00 phk Exp $ * * originally from: locore.s, by William F. Jolitz * *************** *** 740,745 **** --- 740,747 ---- /* Map read-write, data, bss and symbols */ movl $R(_etext),%eax + addl $PAGE_MASK, %eax + andl $~PAGE_MASK, %eax map_read_write: movl R(_KERNend),%ecx subl %eax,%ecx