From owner-freebsd-questions@FreeBSD.ORG Thu Feb 8 16:55:30 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DFA2116A4D5 for ; Thu, 8 Feb 2007 16:55:26 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from ns1.jnielsen.net (ns1.jnielsen.net [69.55.238.237]) by mx1.freebsd.org (Postfix) with ESMTP id 3A7ED13C4CB for ; Thu, 8 Feb 2007 16:55:20 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from localhost (jn@ns1 [69.55.238.237]) (authenticated bits=0) by ns1.jnielsen.net (8.12.9p2/8.12.9) with ESMTP id l18GtJAE097389; Thu, 8 Feb 2007 11:55:19 -0500 (EST) (envelope-from lists@jnielsen.net) From: John Nielsen To: freebsd-questions@freebsd.org Date: Thu, 8 Feb 2007 11:55:24 -0500 User-Agent: KMail/1.9.5 References: <3648a9d10702080816t2d38d4dbx7b6b54d544367f79@mail.gmail.com> In-Reply-To: <3648a9d10702080816t2d38d4dbx7b6b54d544367f79@mail.gmail.com> X-Face: #X5#Y*q>F:]zT!DegL3z5Xo'^MN[$8k\[4^3rN~wm=s=Uw(sW}R?3b^*f1Wu*.<=?utf-8?q?of=5F4NrS=0A=09P*M/9CpxDo!D6?=)IY1w<9B1jB; tBQf[RU-R<,I)e"$q7N7 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200702081155.24446.lists@jnielsen.net> X-Virus-Scanned: ClamAV version 0.88.4, clamav-milter version 0.88.4 on ns1.jnielsen.net X-Virus-Status: Clean Cc: Philip Radford Subject: Re: FreeBSD 5.4 on a Pentium 4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Feb 2007 16:55:31 -0000 On Thursday 08 February 2007 11:16, Philip Radford wrote: > Hi all, > > Just wondering if anyone could help me out with an issue on FreeBSD which > has been puzzling me for a while and only now do I have the time to go and > figure it out. > > We currently have version 5.4 installed but understand that the > architecture it is set up for is a generic i386. > > How do I go about optimising my base system and/or installed ports to > recognise my CPU as an i686 and therefore make use of this type of CPU. > > I have enclosed the first part of my dmesg output to identify the CPU. > > CPU: Intel(R) Pentium(R) 4 CPU 3.00GHz (3000.12-MHz 686-class CPU) > Origin = "GenuineIntel" Id = 0xf41 Stepping = 1 > > Features=0xbfebfbffA,C MOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE> > Hyperthreading: 2 logical CPUs Add "CPUTYPE?=pentium4" to /etc/make.conf. Remove the "cpu I486_CPU" and "cpu I586_CPU" lines from your kernel config (if present), leaving only "cpu I686_CPU". Rebuild your kernel, world, and ports. JN