From owner-cvs-src-old@FreeBSD.ORG Thu Aug 13 23:21:14 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 E3C04106568E for ; Thu, 13 Aug 2009 23:21:14 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B39F78FC43 for ; Thu, 13 Aug 2009 23:21:14 +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 n7DNLEO5063269 for ; Thu, 13 Aug 2009 23:21:14 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n7DNLEvD063268 for cvs-src-old@freebsd.org; Thu, 13 Aug 2009 23:21:14 GMT (envelope-from scottl@repoman.freebsd.org) Message-Id: <200908132321.n7DNLEvD063268@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to scottl@repoman.freebsd.org using -f From: Scott Long Date: Thu, 13 Aug 2009 23:18:45 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD 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: Thu, 13 Aug 2009 23:21:15 -0000 scottl 2009-08-13 23:18:45 UTC FreeBSD src repository Modified files: etc/mtree BSD.include.dist include Makefile sys/dev/mfi mfi_ioctl.h mfireg.h usr.sbin Makefile Added files: 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.c mfiutil.h Log: SVN rev 196200 on 2009-08-13 23:18:45Z by scottl ntroduce 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. Approved by: re Obtained from: Yahoo! Inc. Revision Changes Path 1.132 +2 -0 src/etc/mtree/BSD.include.dist 1.291 +1 -1 src/include/Makefile 1.9 +2 -0 src/sys/dev/mfi/mfi_ioctl.h 1.13 +183 -38 src/sys/dev/mfi/mfireg.h 1.415 +1 -0 src/usr.sbin/Makefile 1.1 +17 -0 src/usr.sbin/mfiutil/Makefile (new) 1.1 +104 -0 src/usr.sbin/mfiutil/README (new) 1.1 +351 -0 src/usr.sbin/mfiutil/mfi_cmd.c (new) 1.1 +1164 -0 src/usr.sbin/mfiutil/mfi_config.c (new) 1.1 +624 -0 src/usr.sbin/mfiutil/mfi_drive.c (new) 1.1 +667 -0 src/usr.sbin/mfiutil/mfi_evt.c (new) 1.1 +199 -0 src/usr.sbin/mfiutil/mfi_flash.c (new) 1.1 +305 -0 src/usr.sbin/mfiutil/mfi_patrol.c (new) 1.1 +560 -0 src/usr.sbin/mfiutil/mfi_show.c (new) 1.1 +412 -0 src/usr.sbin/mfiutil/mfi_volume.c (new) 1.1 +574 -0 src/usr.sbin/mfiutil/mfiutil.1 (new) 1.1 +134 -0 src/usr.sbin/mfiutil/mfiutil.c (new) 1.1 +147 -0 src/usr.sbin/mfiutil/mfiutil.h (new)