From owner-cvs-src-old@FreeBSD.ORG Mon Oct 26 19:00:59 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 089911065695 for ; Mon, 26 Oct 2009 19:00:59 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CBA338FC0A for ; Mon, 26 Oct 2009 19:00:58 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n9QJ0w1K048903 for ; Mon, 26 Oct 2009 19:00:58 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n9QJ0wLs048902 for cvs-src-old@freebsd.org; Mon, 26 Oct 2009 19:00:58 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <200910261900.n9QJ0wLs048902@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Mon, 26 Oct 2009 18:57:57 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/etc/mtree BSD.include.dist src/include Makefile src/sys/dev/mfi mfi_ioctl.h mfireg.h src/usr.sbin Makefile src/usr.sbin/mfiutil Makefile README mfi_cmd.c mfi_config.c mfi_drive.c mfi_evt.c mfi_flash.c mfi_patrol.c mfi_show.c ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Oct 2009 19:00:59 -0000 jhb 2009-10-26 18:57:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) etc/mtree BSD.include.dist include Makefile sys/dev/mfi mfi_ioctl.h mfireg.h usr.sbin Makefile Added files: (Branch: RELENG_7) usr.sbin/mfiutil Makefile README mfi_cmd.c mfi_config.c mfi_drive.c mfi_evt.c mfi_flash.c mfi_patrol.c mfi_show.c mfi_volume.c mfiutil.1 mfiutil.8 mfiutil.c mfiutil.h Log: SVN rev 198496 on 2009-10-26 18:57:57Z by jhb MFC 196200,196211,196280-196282: Introduce mfiutil, a basic utility for managing LSI SAS-RAID & Dell PERC5/6 controllers. Controller, array, and drive status can be checked, basic attributes can be changed, and arrays and spares can be created and deleted. Controller firmware can also be flashed. This does not replace MegaCLI, found in ports, as that is officially sanctioned and supported by LSI and includes vastly more functionality. However, mfiutil is open source and guaranteed to provide basic functionality, which can be especially useful if you have a problem and can't get MegaCLI to work. Revision Changes Path 1.120.2.3 +2 -0 src/etc/mtree/BSD.include.dist 1.276.2.3 +1 -1 src/include/Makefile 1.5.2.3 +2 -0 src/sys/dev/mfi/mfi_ioctl.h 1.10.2.3 +183 -38 src/sys/dev/mfi/mfireg.h 1.375.2.10 +1 -0 src/usr.sbin/Makefile 1.2.4.2 +18 -0 src/usr.sbin/mfiutil/Makefile (new) 1.2.4.2 +104 -0 src/usr.sbin/mfiutil/README (new) 1.1.4.2 +351 -0 src/usr.sbin/mfiutil/mfi_cmd.c (new) 1.1.4.2 +1164 -0 src/usr.sbin/mfiutil/mfi_config.c (new) 1.2.4.2 +625 -0 src/usr.sbin/mfiutil/mfi_drive.c (new) 1.1.4.2 +667 -0 src/usr.sbin/mfiutil/mfi_evt.c (new) 1.1.4.2 +199 -0 src/usr.sbin/mfiutil/mfi_flash.c (new) 1.1.4.2 +305 -0 src/usr.sbin/mfiutil/mfi_patrol.c (new) 1.1.4.2 +560 -0 src/usr.sbin/mfiutil/mfi_show.c (new) 1.1.4.2 +412 -0 src/usr.sbin/mfiutil/mfi_volume.c (new) 1.2.4.2 +574 -0 src/usr.sbin/mfiutil/mfiutil.1 (new) 1.3.4.2 +566 -0 src/usr.sbin/mfiutil/mfiutil.8 (new) 1.1.4.2 +134 -0 src/usr.sbin/mfiutil/mfiutil.c (new) 1.1.4.2 +147 -0 src/usr.sbin/mfiutil/mfiutil.h (new)