From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20922 invoked by alias); 21 Apr 2005 12:16:47 -0000 Mailing-List: contact ecos-maintainers-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Post: List-Help: , Sender: ecos-maintainers-owner@sources.redhat.com Received: (qmail 20909 invoked from network); 21 Apr 2005 12:16:42 -0000 Received: from unknown (HELO rubicon.hasler.ascom.ch) (139.79.129.1) by sourceware.org with SMTP; 21 Apr 2005 12:16:42 -0000 Received: from eiger.ma.tech.ascom.ch (eiger.ma.tech.ascom.ch [139.79.100.1]) by rubicon.hasler.ascom.ch (8.12.9-20030924/8.12.9) with ESMTP id j3LCGfWt013062; Thu, 21 Apr 2005 14:16:41 +0200 (MEST) Received: from [139.79.100.143] (helo=donkey.ma.tech.ascom.ch) by eiger.ma.tech.ascom.ch with esmtp (Exim 3.16 #1) id 1DOabm-0001Mm-00; Thu, 21 Apr 2005 14:16:38 +0200 Received: from lunn by donkey.ma.tech.ascom.ch with local (Exim 3.36 #1 (Debian)) id 1DOabS-0002yE-00; Thu, 21 Apr 2005 14:16:18 +0200 Date: Thu, 21 Apr 2005 12:16:00 -0000 To: Jack Sun Cc: ecos-maintainers@ecos.sourceware.org Subject: Re: Porting linux driver to ecos Message-ID: <20050421121618.GH1126@donkey.ma.tech.ascom.ch> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.6+20040907i From: Andrew Lunn X-SW-Source: 2005-04/txt/msg00004.txt.bz2 On Thu, Apr 21, 2005 at 08:10:11PM +0800, Jack Sun wrote: > Hi, > > I would like to port the wireless driver source code from linux to > ecos on my platform. > Is it easy to do and what I need to take care in your experience? Before you start you need to consider the licensing issue. Linux is GPL. eCos is modGPL. The modification means that the viral effects of the GPL do not spread to the application code. However if you port the GPL wireless driver into eCos, the GPL from the driver will spread over all of eCos and to the application. ie you need to make your application sources available. You need to decide if this is acceptable to you. We won't be able to accept your code into the eCos repository obviously because it is GPL. Also, you might consider talking a look at the FreeBSD wlan drivers. They will probably have both a more suitable licence and will be easier to port since the TCP/IP stack in eCos is from FreeBSD. Andrew