From owner-cvs-all@FreeBSD.ORG Tue May 29 17:59:28 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CE37216A46B; Tue, 29 May 2007 17:59:28 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.freebsd.org (Postfix) with ESMTP id 9456913C4B8; Tue, 29 May 2007 17:59:28 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.47] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.8) with ESMTP id l4THxPRs037116 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 29 May 2007 10:59:26 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <465C6972.5050907@FreeBSD.org> Date: Tue, 29 May 2007 10:57:06 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: Hidetoshi Shimokawa References: <200705291435.l4TEZvBv063063@repoman.freebsd.org> In-Reply-To: <200705291435.l4TEZvBv063063@repoman.freebsd.org> Content-Type: text/plain; charset=KOI8-U; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/i386 Makefile src/sys/boot/i386/libfirewire Makefile dconsole.c firewire.c fwohci.c fwohci.h fwohcireg.h src/sys/boot/i386/loader Makefile conf.c main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 May 2007 17:59:28 -0000 Great! Thank you Shimokawa-san! -Maxim Hidetoshi Shimokawa wrote: > simokawa 2007-05-29 14:35:57 UTC > > FreeBSD src repository > > Modified files: > sys/boot/i386 Makefile > sys/boot/i386/loader Makefile conf.c main.c > Added files: > sys/boot/i386/libfirewire Makefile dconsole.c firewire.c > fwohci.c fwohci.h fwohcireg.h > Log: > MFp4: add FireWire/dcons support in loader for i386/amd64. > > It is disabled by default. You need to put > LOADER_FIREWIRE_SUPPORT=yes in /etc/make.conf > and rebuild loader to enable it. > (cd /sys/boot/i386 && make clean && make && make install) > > You can find a short introduction of dcons at > http://wiki.freebsd.org/DebugWithDcons > > Revision Changes Path > 1.21 +2 -1 src/sys/boot/i386/Makefile > 1.1 +30 -0 src/sys/boot/i386/libfirewire/Makefile (new) > 1.1 +127 -0 src/sys/boot/i386/libfirewire/dconsole.c (new) > 1.1 +470 -0 src/sys/boot/i386/libfirewire/firewire.c (new) > 1.1 +479 -0 src/sys/boot/i386/libfirewire/fwohci.c (new) > 1.1 +162 -0 src/sys/boot/i386/libfirewire/fwohci.h (new) > 1.1 +369 -0 src/sys/boot/i386/libfirewire/fwohcireg.h (new) > 1.85 +8 -2 src/sys/boot/i386/loader/Makefile > 1.26 +13 -0 src/sys/boot/i386/loader/conf.c > 1.40 +1 -1 src/sys/boot/i386/loader/main.c > >