From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16873 invoked by alias); 8 Apr 2008 11:10:41 -0000 Received: (qmail 16865 invoked by uid 22791); 8 Apr 2008 11:10:40 -0000 X-Spam-Check-By: sourceware.org Received: from londo.lunn.ch (HELO londo.lunn.ch) (80.238.139.98) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 08 Apr 2008 11:10:13 +0000 Received: from lunn by londo.lunn.ch with local (Exim 3.36 #1 (Debian)) id 1JjBiH-0002yH-00; Tue, 08 Apr 2008 13:10:05 +0200 Date: Tue, 08 Apr 2008 15:17:00 -0000 From: Andrew Lunn To: David.Babin@dmic.fr, ecos-discuss@sourceware.org Message-ID: <20080408111005.GD11287@lunn.ch> Mail-Followup-To: David.Babin@dmic.fr, ecos-discuss@sourceware.org References: <20080408104511.GC11287@lunn.ch> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="IS0zKkzwUGydFO0o" Content-Disposition: inline In-Reply-To: <20080408104511.GC11287@lunn.ch> User-Agent: Mutt/1.5.17+20080114 (2008-01-14) X-IsSubscribed: yes Mailing-List: contact ecos-discuss-help@ecos.sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: ecos-discuss-owner@ecos.sourceware.org Subject: Re: [ECOS] Status of at91sam7xek X-SW-Source: 2008-04/txt/msg00137.txt.bz2 --IS0zKkzwUGydFO0o Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 187 > http://ecos.sourceware.org/ml/ecos-discuss/2008-03/msg00106.html > > At some point i want to improve this. And here is the patch. Please could you test it. Thanks Andrew --IS0zKkzwUGydFO0o Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="memservice.diff" Content-length: 5509 ? packages/templates/net Index: packages/templates/kernel/ChangeLog =================================================================== RCS file: /cvs/ecos/ecos/packages/templates/kernel/ChangeLog,v retrieving revision 1.5 diff -u -r1.5 ChangeLog --- packages/templates/kernel/ChangeLog 23 May 2002 23:08:48 -0000 1.5 +++ packages/templates/kernel/ChangeLog 8 Apr 2008 11:09:16 -0000 @@ -1,3 +1,7 @@ +2008-04-08 Andrew Lunn + + * current.ect: Add libc_string which memalloc needs. + 2000-07-24 Jonathan Larmour * current.ect: Fix up after isoinfra and memalloc additions Index: packages/templates/kernel/current.ect =================================================================== RCS file: /cvs/ecos/ecos/packages/templates/kernel/current.ect,v retrieving revision 1.3 diff -u -r1.3 current.ect --- packages/templates/kernel/current.ect 25 Aug 2000 17:33:50 -0000 1.3 +++ packages/templates/kernel/current.ect 8 Apr 2008 11:09:16 -0000 @@ -16,6 +16,7 @@ package CYGPKG_KERNEL current ; package CYGPKG_ERROR current ; package CYGPKG_MEMALLOC current ; + package CYGPKG_LIBC_STRING current ; package CYGPKG_ISOINFRA current ; }; @@ -30,3 +31,27 @@ cdl_option CYGBLD_ISO_STRERROR_HEADER { inferred_value 1 }; + +cdl_option CYGBLD_ISO_STRING_BSD_FUNCS_HEADER { + inferred_value 1 +}; + +cdl_option CYGFUN_LIBC_STRING_BSD_FUNCS { + inferred_value 0 +}; + +cdl_option CYGBLD_ISO_STRING_MEMFUNCS_HEADER { + inferred_value 1 +}; + +cdl_option CYGBLD_ISO_STRING_STRFUNCS_HEADER { + inferred_value 1 +}; + +cdl_option CYGBLD_ISO_STRTOK_R_HEADER { + inferred_value 1 +}; + +cdl_option CYGBLD_ISO_STRING_LOCALE_FUNCS_HEADER { + inferred_value 1 +}; Index: packages/templates/lwip_eth/ChangeLog =================================================================== RCS file: /cvs/ecos/ecos/packages/templates/lwip_eth/ChangeLog,v retrieving revision 1.1 diff -u -r1.1 ChangeLog --- packages/templates/lwip_eth/ChangeLog 4 May 2004 12:52:48 -0000 1.1 +++ packages/templates/lwip_eth/ChangeLog 8 Apr 2008 11:09:16 -0000 @@ -1,3 +1,7 @@ +2008-04-08 Andrew Lunn + + * current.cdl: Add LIBC_STRING which MEMALLOC now needs. + 2004-05-04 Jani Monoses * current.ect: Create new configuration for lwIP/ethernet Index: packages/templates/lwip_eth/current.ect =================================================================== RCS file: /cvs/ecos/ecos/packages/templates/lwip_eth/current.ect,v retrieving revision 1.1 diff -u -r1.1 current.ect --- packages/templates/lwip_eth/current.ect 4 May 2004 12:52:48 -0000 1.1 +++ packages/templates/lwip_eth/current.ect 8 Apr 2008 11:09:17 -0000 @@ -14,6 +14,7 @@ package CYGPKG_INFRA current ; package CYGPKG_KERNEL current ; package CYGPKG_MEMALLOC current ; + package CYGPKG_LIBC_STRING current ; package CYGPKG_ERROR current ; package CYGPKG_ISOINFRA current ; package CYGPKG_NET_LWIP current ; @@ -36,3 +37,26 @@ inferred_value 1 }; +cdl_option CYGBLD_ISO_STRING_BSD_FUNCS_HEADER { + inferred_value 1 +}; + +cdl_option CYGFUN_LIBC_STRING_BSD_FUNCS { + inferred_value 0 +}; + +cdl_option CYGBLD_ISO_STRING_MEMFUNCS_HEADER { + inferred_value 1 +}; + +cdl_option CYGBLD_ISO_STRING_STRFUNCS_HEADER { + inferred_value 1 +}; + +cdl_option CYGBLD_ISO_STRTOK_R_HEADER { + inferred_value 1 +}; + +cdl_option CYGBLD_ISO_STRING_LOCALE_FUNCS_HEADER { + inferred_value 1 +}; Index: packages/templates/lwip_ppp/ChangeLog =================================================================== RCS file: /cvs/ecos/ecos/packages/templates/lwip_ppp/ChangeLog,v retrieving revision 1.2 diff -u -r1.2 ChangeLog --- packages/templates/lwip_ppp/ChangeLog 29 Mar 2006 10:30:56 -0000 1.2 +++ packages/templates/lwip_ppp/ChangeLog 8 Apr 2008 11:09:17 -0000 @@ -1,3 +1,7 @@ +2008-04-08 Andrew Lunn + + * current.cdl: Add LIBC_STRING which MEMALLOC now needs. + 2006-03-22 Uwe Kindler * current.ect: Fixed configuration options to match new names of Index: packages/templates/lwip_ppp/current.ect =================================================================== RCS file: /cvs/ecos/ecos/packages/templates/lwip_ppp/current.ect,v retrieving revision 1.2 diff -u -r1.2 current.ect --- packages/templates/lwip_ppp/current.ect 29 Mar 2006 10:30:56 -0000 1.2 +++ packages/templates/lwip_ppp/current.ect 8 Apr 2008 11:09:17 -0000 @@ -52,3 +52,28 @@ cdl_option CYGDAT_LWIP_PPP_DEV { user_value "\"/dev/ser1\"" }; + +cdl_option CYGBLD_ISO_STRING_BSD_FUNCS_HEADER { + inferred_value 1 +}; + +cdl_option CYGFUN_LIBC_STRING_BSD_FUNCS { + inferred_value 0 +}; + +cdl_option CYGBLD_ISO_STRING_MEMFUNCS_HEADER { + inferred_value 1 +}; + +cdl_option CYGBLD_ISO_STRING_STRFUNCS_HEADER { + inferred_value 1 +}; + +cdl_option CYGBLD_ISO_STRTOK_R_HEADER { + inferred_value 1 +}; + +cdl_option CYGBLD_ISO_STRING_LOCALE_FUNCS_HEADER { + inferred_value 1 +}; + --IS0zKkzwUGydFO0o Content-Type: text/plain; charset=us-ascii Content-length: 148 -- Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss --IS0zKkzwUGydFO0o--