From owner-cvs-all@FreeBSD.ORG Tue May 29 14:35:58 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 0B38716A400; Tue, 29 May 2007 14:35:58 +0000 (UTC) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id EF9C913C458; Tue, 29 May 2007 14:35:57 +0000 (UTC) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l4TEZvSF063064; Tue, 29 May 2007 14:35:57 GMT (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l4TEZvBv063063; Tue, 29 May 2007 14:35:57 GMT (envelope-from simokawa) Message-Id: <200705291435.l4TEZvBv063063@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Tue, 29 May 2007 14:35:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: 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 14:35:58 -0000 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