From owner-freebsd-questions Wed May 1 21:52:32 2002 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.sunflower.com (smtp.sunflower.com [24.124.0.128]) by hub.freebsd.org (Postfix) with ESMTP id 7F9ED37B417 for ; Wed, 1 May 2002 21:52:26 -0700 (PDT) Received: from workstation4 (dv162s55.lawrence.ks.us [24.124.55.162]) by smtp.sunflower.com (8.11.6/8.11.6) with ESMTP id g424pjv04569; Wed, 1 May 2002 23:51:45 -0500 From: "Brandon Young" To: "'Scott'" Cc: Subject: RE: spontaneous reboots, processor travelling back in time ... Date: Wed, 1 May 2002 23:50:56 -0500 Message-ID: <000001c1f195$0d359100$0100a8c0@workstation4> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.3416 In-reply-to: <5.1.0.14.0.20020501020840.00bca4a0@pop-server.nyc.rr.com> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Scott, I wanted to thank you for your help. I do in fact have an Asus motherboard. Your tip on modifying the i686_mem.c file worked, and X stopped rebooting my machine :-) My processor has seemingly stopped time traveling, too :-) Thank you very much for your quick, clear, and courteous assistance. Brandon -----Original Message----- From: Scott [mailto:scottro@nyc.rr.com] Sent: Wednesday, May 01, 2002 1:18 AM To: Brandon Young; freebsd-questions@FreeBSD.ORG Subject: Re: spontaneous reboots, processor travelling back in time ... At 23:38 2002/04/30 -0500, Brandon Young wrote: >Every time I try to run the command 'XFree86 -configure' my system >reboots. I decided to run xf86config; that worked. Once X was >configured, I tried to start kdm ... the system reboots every time I try >to start X. In searching through the archives, one would be lead to >believe that there exists a hardware problem. This is perplexing, since >this same hardware (whichever piece may be bad) never causes problems in >other operating systems (namely, Windows and Linux). My system is a 1.0 >GHz AMD Thunderbird with a Kingston tulip NIC, Matrox G400 single head >card, and SBLive soundcard. The processor and mobo are new. Is it an ASUS MB? There are still some problems with it, usually with the symptoms you describe. http://www.freebsd.org/cgi/query-pr.cgi?pr=28418 Hrrmm--I see that it seems to be resolved as of two days ago--sigh, this means I'll have to do a buildworld and see if it works without adjustment. The fix has been to open up /usr/src/sys/i386/i368/i686_mem.c Around line 269 you see u_int cr4save; mrd = sc->mr_desc; Between those two lines, insert a line return; So it'll now look like u_int cr4save; return; mrd = sc->mr_desc; It has to do with MTRR problems (This trick was given me by Bill Triplett in case he sees this post and wonders if I've forgotten--Hi Bill. :) ) This of course, assumes you have an ASUS Then, you have to recompile your kernel cd /usr/src/sys/i386/conf config MYKERN You will then see the thing something like source is ../../compile/MYKERN Don't forget to do make depend So cd ../../compile/MYKERN make depend; make; make install Reboot and you should be good to go. (You probably know all that, but I have it kept on my hard drive as a web page so am cutting and pasting--I'm really sleepy--sorry for the extraneous info) HTH Scott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message