From owner-freebsd-gnome@FreeBSD.ORG Fri Jan 2 12:40:44 2004 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6BB216A4CE for ; Fri, 2 Jan 2004 12:40:44 -0800 (PST) Received: from anuket.mj.niksun.com (gwnew.niksun.com [65.115.46.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1907643D3F for ; Fri, 2 Jan 2004 12:40:42 -0800 (PST) (envelope-from jkim@niksun.com) Received: from daemon.mj.niksun.com (daemon.mj.niksun.com [10.70.0.244]) i02Kdcuv061671; Fri, 2 Jan 2004 15:39:48 -0500 (EST) (envelope-from jkim@niksun.com) X-RAV-AntiVirus: This e-mail has been scanned for viruses. From: Jung-uk Kim Organization: Niksun, Inc. To: Joe Marcus Clarke Date: Fri, 2 Jan 2004 15:39:33 -0500 User-Agent: KMail/1.5.4 References: <1073069599.779.18.camel@gyros> In-Reply-To: <1073069599.779.18.camel@gyros> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_Fcd9/93NJqyr8Ac" Message-Id: <200401021539.33278.jkim@niksun.com> cc: freebsd-gnome@freebsd.org Subject: Re: ath and wireless link monitor X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jan 2004 20:40:44 -0000 --Boundary-00=_Fcd9/93NJqyr8Ac Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline On Friday 02 January 2004 01:53 pm, Joe Marcus Clarke wrote: > On Fri, 2004-01-02 at 13:35, Randy Bush wrote: > > anyone have wireless link monitor 2.4.1 running with freebsd > > -current and the ath driver, please send clues. i get "No > > Wireless Devices" in the prefs window. > > Someone needs to add support probably. Send me a ath card, and > I'll do it. FYI, 'ath' doesn't need another hack. Check the attached patch. It works for me. Jung-uk Kim > Joe > > > randy > > > > _______________________________________________ > > freebsd-gnome@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > > To unsubscribe, send any mail to > > "freebsd-gnome-unsubscribe@freebsd.org" --Boundary-00=_Fcd9/93NJqyr8Ac Content-Type: text/x-diff; charset="euc-kr"; name="wireless-applet.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="wireless-applet.diff" --- usr/ports/x11/gnomeapplets2/files/patch-wireless_wireless-applet.c.orig Fri Jan 2 15:33:05 2004 +++ usr/ports/x11/gnomeapplets2/files/patch-wireless_wireless-applet.c Fri Jan 2 14:47:06 2004 @@ -1,5 +1,5 @@ --- wireless/wireless-applet.c.orig Tue Oct 21 19:06:53 2003 -+++ wireless/wireless-applet.c Sat Nov 15 16:32:02 2003 ++++ wireless/wireless-applet.c Fri Jan 2 14:46:24 2004 @@ -30,6 +30,15 @@ #include #include @@ -242,7 +242,7 @@ + } + } + else -+ if (g_strncasecmp(device, "wi", 2)==0) { ++ if (g_strncasecmp(device, "wi", 2)==0 || g_strncasecmp(device, "ath", 3)==0) { + applet->devices = g_list_prepend (applet->devices, g_strdup (device)); + if (g_strcasecmp(applet->device, device)==0) { + get_wi_data(applet, device, &level); --Boundary-00=_Fcd9/93NJqyr8Ac--