From owner-cvs-src@FreeBSD.ORG Tue Feb 26 23:07:26 2008 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3314A1065672 for ; Tue, 26 Feb 2008 23:07:26 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: from el-out-1112.google.com (el-out-1112.google.com [209.85.162.176]) by mx1.freebsd.org (Postfix) with ESMTP id D4C6A13C4DB for ; Tue, 26 Feb 2008 23:07:25 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: by el-out-1112.google.com with SMTP id r27so2146549ele.3 for ; Tue, 26 Feb 2008 15:07:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=3Z9TbflQb77J0nLgcIYCs4zozeXF0VM1eG/j1EVxh2g=; b=k1yp9hj47YW0VjOWJ+d46niXEm3lt5Fr30qLGmfddOAuvWd4cwe2LQPJlRh5Twx2EYNxJeU7hQikDxxrhomjd3IAqndkdDP5PRQbNwZZY+dPloBvF/TkiDX50XysseojjJHYA50JNaJmC9zeAA7EF9ABoi/CD+3qt4GukNSTwVc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=EOtjNUctWttBbDr6Ej9rCGBCCazwp0HQnpaNu6hrypOJZqUs4//b4qQwsnjCUHZbf9SuK88C7RVjRCeZvgQR4X4pDZNbRtbzc++DWHTtwMiv82i5azx8cMxPgJyfU/9YTZAWlmK/htXMpP51KoGr/v7Wrt/IbhJuzWy+hSQe/m8= Received: by 10.114.168.1 with SMTP id q1mr6331747wae.74.1204067244034; Tue, 26 Feb 2008 15:07:24 -0800 (PST) Received: by 10.114.255.16 with HTTP; Tue, 26 Feb 2008 15:07:24 -0800 (PST) Message-ID: Date: Tue, 26 Feb 2008 15:07:24 -0800 From: "Kip Macy" To: "John Baldwin" In-Reply-To: <200802261133.00942.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200802260302.m1Q32KOT081487@repoman.freebsd.org> <200802261133.00942.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Kip Macy , cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/cxgb bin2h.pl cxgb_main.c cxgb_t3fw.c cxgb_t3fw.h t3fw-5.0.0.bin.gz.uu src/sys/modules/cxgb Makefile src/sys/modules/cxgb/cxgb Makefile src/sys/modules/cxgb/cxgb_t3fw Makefile src/sys/conf NOTES files X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2008 23:07:26 -0000 On Tue, Feb 26, 2008 at 8:33 AM, John Baldwin wrote: > On Monday 25 February 2008 10:02:20 pm Kip Macy wrote: > > kmacy 2008-02-26 03:02:20 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/dev/cxgb cxgb_main.c > > sys/modules/cxgb Makefile > > sys/modules/cxgb/cxgb Makefile > > sys/conf NOTES files > > Added files: > > sys/dev/cxgb bin2h.pl cxgb_t3fw.c cxgb_t3fw.h > > sys/modules/cxgb/cxgb_t3fw Makefile > > Removed files: > > sys/dev/cxgb t3fw-5.0.0.bin.gz.uu > > Log: > > Move firmware in to separate module that can be compiled statically in to > the kernel > > Add utility for converting future firmware revs to a C header file > > Did you consider using firmware(9)? It already handles wrapping a binary blob > into a kernel module for you and can autoload the firmware on demand. > Read the code.