From owner-cvs-all@FreeBSD.ORG Thu Jun 23 07:13:47 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8CFF16A41C; Thu, 23 Jun 2005 07:13:47 +0000 (GMT) (envelope-from ume@mahoroba.org) Received: from cheer.mahoroba.org (gw4.mahoroba.org [218.45.22.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61B7B43D1F; Thu, 23 Jun 2005 07:13:46 +0000 (GMT) (envelope-from ume@mahoroba.org) Received: from localhost (IDENT:Su+C534Ywvm+sbcCPvlsKGZCfDzSZ70MkJ9xXrd0KvcFo5PnfIWk/q718eXiKY2w@localhost [IPv6:::1]) (user=ume mech=CRAM-MD5 bits=0) by cheer.mahoroba.org (8.13.3/8.13.3) with ESMTP/inet6 id j5N7Da0b087881 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 23 Jun 2005 16:13:36 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Thu, 23 Jun 2005 16:13:36 +0900 Message-ID: From: Hajimu UMEMOTO To: Florent Thoumie In-Reply-To: <1119502739.652.24.camel@cream.xbsd.org> References: <200506221943.j5MJhQRW065243@repoman.freebsd.org> <1119502739.652.24.camel@cream.xbsd.org> User-Agent: xcite1.38> Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.7 (=?ISO-8859-4?Q?Sanj=F2?=) APEL/10.6 Emacs/21.3 (i386--freebsd) MULE/5.0 (SAKAKI) X-Operating-System: FreeBSD 4.11-RELEASE-p7 X-PGP-Key: http://www.imasy.or.jp/~ume/publickey.asc X-PGP-Fingerprint: 1F00 0B9E 2164 70FC 6DC5 BF5F 04E9 F086 BF90 71FE Organization: Internet Mutual Aid Society, YOKOHAMA MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Greylist: Sender succeded SMTP AUTH authentication, not delayed by milter-greylist-2.0b5 (cheer.mahoroba.org [IPv6:::1]); Thu, 23 Jun 2005 16:13:37 +0900 (JST) X-Virus-Scanned: by amavisd-new X-Virus-Status: Clean X-Spam-Status: No, score=-5.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, SUBJ_HAS_SPACES autolearn=ham version=3.0.4 X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on cheer.mahoroba.org Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/net Makefile ports/net/iwi-firmware Makefile distinfo pkg-plist ports/net/iwi-firmware/files iwi.sh.in pkg-message.in 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: Thu, 23 Jun 2005 07:13:48 -0000 Hi, >>>>> On Thu, 23 Jun 2005 06:58:59 +0200 >>>>> Florent Thoumie said: > However, your port just use 1.3.4. Is it safe to use your port on > 6-CURRRENT? flz> It's marked as IGNORE for OSVERSION > 600023 if you define flz> WITH_MODULE because iwi(4) is already in source tree. Thank you. I confirmed that difference is only in driver, and iwicontrol(8) is same between 1.3.4 and 1.4.2. flz> Btw, it seems the driver won't associate according to what flz> marcus and some other people reported, even with latest HEAD flz> version :-( I've not try your port yet, iwi(4) seems working to me on 6-CURRENT with iwi-freebsd-1.4.2.tgz and iwi-firmware-1.3.tbz obtained from http://damien.bergamini.free.fr/ipw/download.html. I found the URL in iwi(4) manpage. What is ipw2200-fw-2.3.tgz? It seems that while iwicontrol(8) requires iwi-boot.fw, iwi-ucode-i?bss.fw and iwi-i?bss.fw, ipw2200-fw-2.3.tgz doesn't have them. There are in iwi-firmware-1.3.tbz. Do I take it something wrong? static void load_firmware(char *iface, char *path, char *mode) { char filename[FILENAME_MAX]; struct firmware fw; (void)snprintf(filename, sizeof filename, "%s/iwi-boot.fw", path); mmap_file(filename, &fw.boot, &fw.boot_size); (void)snprintf(filename, sizeof filename, "%s/iwi-ucode-%s.fw", path, mode); mmap_file(filename, &fw.ucode, &fw.ucode_size); (void)snprintf(filename, sizeof filename, "%s/iwi-%s.fw", path, mode); mmap_file(filename, &fw.main, &fw.main_size); if (do_req(iface, SIOCSLOADFW, &fw) == -1) err(EX_OSERR, "Can't load firmware to driver"); } Sincerely, -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@{,jp.}FreeBSD.org http://www.imasy.org/~ume/