From owner-freebsd-current@FreeBSD.ORG Thu Feb 19 18:08:11 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DAD416A4CE for ; Thu, 19 Feb 2004 18:08:11 -0800 (PST) Received: from cmsrelay03.mx.net (cmsrelay03.mx.net [165.212.11.112]) by mx1.FreeBSD.org (Postfix) with SMTP id 40BD343D2D for ; Thu, 19 Feb 2004 18:08:11 -0800 (PST) (envelope-from noackjr@alumni.rice.edu) Received: from uadvg131.cms.usa.net (165.212.11.131) by cmsoutbound.mx.net with SMTP; 20 Feb 2004 02:08:10 -0000 Received: from optimator.noacks.org [66.136.22.254] by uadvg131.cms.usa.net (ASMTP/noackjr@usa.net) via mtad (C8.MAIN.3.13N) with ESMTP id 473iBTciH0044M31; Fri, 20 Feb 2004 02:08:07 GMT X-USANET-Auth: 66.136.22.254 AUTH noackjr@usa.net optimator.noacks.org Received: from localhost (localhost [127.0.0.1]) by optimator.noacks.org (Postfix) with ESMTP id 46DB06110; Thu, 19 Feb 2004 20:08:06 -0600 (CST) Received: from optimator.noacks.org ([127.0.0.1]) by localhost (optimator.noacks.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 03021-07; Thu, 19 Feb 2004 20:08:04 -0600 (CST) Received: from alumni.rice.edu (compgeek [192.168.1.10]) by optimator.noacks.org (Postfix) with ESMTP id 56917610C; Thu, 19 Feb 2004 20:08:04 -0600 (CST) Message-ID: <40356C03.7060901@alumni.rice.edu> Date: Thu, 19 Feb 2004 20:08:03 -0600 From: Jon Noack User-Agent: Mozilla Thunderbird 0.5 (Windows/20040207) X-Accept-Language: en-us, en MIME-Version: 1.0 To: "Julian St." References: <20040220000320.6dd6fe09@jmmr.boelthorn.wh29.tu-dresden.de> In-Reply-To: <20040220000320.6dd6fe09@jmmr.boelthorn.wh29.tu-dresden.de> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at noacks.org cc: "current@freebsd.org" Subject: Re: hw.crusoe sysctl missing X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: noackjr@alumni.rice.edu List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Feb 2004 02:08:11 -0000 On 2/19/2004 5:03 PM, Julian St. wrote: > I just updated my Transmeta Crusoe(tm) Laptop to -CURRENT as of > yesterday and noticed that all the hw.crusoe variables are gone. This > breaks e.g. wmlongrun, a dockapp to display current CPU clock speed. > > Anything I could have done? I did not nothing besides adding VESA to my > old kernel config. http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/i386/conf/NOTES http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/i386/i386/identcpu.c http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/i386/i386/longrun.c Add the following to your kernel config file and build/install kernel: options CPU_ENABLE_LONGRUN From the commit log: "Move LongRun support out of identcpu.c, where it hardly belongs, into its own file and make it opt-in, not mandatory, depending on CPU_ENABLE_LONGRUN config option." Jon