From owner-freebsd-sparc64@FreeBSD.ORG Fri Jul 9 05:05:09 2004 Return-Path: Delivered-To: freebsd-sparc64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D75F616A4CE for ; Fri, 9 Jul 2004 05:05:09 +0000 (GMT) Received: from liberty.onthenet.com.au (liberty.OntheNet.com.au [203.22.124.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F9D343D5C for ; Fri, 9 Jul 2004 05:05:09 +0000 (GMT) (envelope-from grehan@freebsd.org) Received: from freebsd.org (CPE-19-32.dsl.OntheNet.net [203.144.19.32]) i69557u9020880; Fri, 9 Jul 2004 15:05:07 +1000 (EST) (envelope-from grehan@freebsd.org) Message-ID: <40EE2921.4090503@freebsd.org> Date: Fri, 09 Jul 2004 15:12:01 +1000 From: Peter Grehan User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3.1) Gecko/20030524 X-Accept-Language: en-us, en MIME-Version: 1.0 To: yongari@kt-is.co.kr References: <40ED61D8.8000600@freebsd.org> <20040709023814.GA15095@kt-is.co.kr> In-Reply-To: <20040709023814.GA15095@kt-is.co.kr> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-sparc64@freebsd.org Subject: Re: ofw console change breaks powerpc X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jul 2004 05:05:10 -0000 > > - tp->t_cflag = TTYDEF_CFLAG|CLOCAL; > > + tp->t_cflag = TTYDEF_CFLAG; ... > Yes, it works here with CLOCAL(Ultra2, type-5 keyboard). Thanks, I'll commit the change. > However, ofw console is still too slow to work on.(IMO) I tried > syscons + creator to get more speed by hardware acceleration. > To build that kernel, I had to add to source files. > (I guess it was both sys/dev/fb/creator.c and > sys/sparc64/creator/creator_upa.c) After really fast booting > message scrolls and login prompt, the machine locked up. :( One thing to try is the simplistic OpenFirmware frame-buffer console that I've done for powerpc (powerpc/ofw/ofw_syscons.c). As long as there is a linear frame-buffer that can be mapped it should work OK. This may not be the case for something fancy like Creator, but could work on others. later, Peter.