public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
From: Andrew Lunn <andrew@lunn.ch>
To: David.Babin@dmic.fr, ecos-discuss@sourceware.org
Subject: Re: [ECOS] Status of at91sam7xek
Date: Tue, 08 Apr 2008 15:17:00 -0000	[thread overview]
Message-ID: <20080408111005.GD11287@lunn.ch> (raw)
In-Reply-To: <20080408104511.GC11287@lunn.ch>

[-- Attachment #1: Type: text/plain, Size: 187 bytes --]

> 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

[-- Attachment #2: memservice.diff --]
[-- Type: text/x-diff, Size: 5509 bytes --]

? 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  <andrew.lunn@ascom.ch>
+
+	* current.ect: Add libc_string which memalloc needs.
+
 2000-07-24  Jonathan Larmour  <jlarmour@redhat.co.uk>
 
 	* 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 <cyg/error/strerror.h>
 };
+
+cdl_option CYGBLD_ISO_STRING_BSD_FUNCS_HEADER {
+    inferred_value 1 <cyg/libc/string/bsdstring.h>
+};
+
+cdl_option CYGFUN_LIBC_STRING_BSD_FUNCS {
+    inferred_value 0
+};
+
+cdl_option CYGBLD_ISO_STRING_MEMFUNCS_HEADER {
+    inferred_value 1 <cyg/libc/string/string.h>
+};
+
+cdl_option CYGBLD_ISO_STRING_STRFUNCS_HEADER {
+    inferred_value 1 <cyg/libc/string/string.h>
+};
+
+cdl_option CYGBLD_ISO_STRTOK_R_HEADER {
+    inferred_value 1 <cyg/libc/string/string.h>
+};
+
+cdl_option CYGBLD_ISO_STRING_LOCALE_FUNCS_HEADER {
+    inferred_value 1 <cyg/libc/string/string.h>
+};
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  <andrew.lunn@ascom.ch>
+
+	* current.cdl: Add LIBC_STRING which MEMALLOC now needs.
+
 2004-05-04  Jani Monoses <jani@iv.ro>
 
 	* 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 <cyg/error/strerror.h>
 };
 
+cdl_option CYGBLD_ISO_STRING_BSD_FUNCS_HEADER {
+    inferred_value 1 <cyg/libc/string/bsdstring.h>
+};
+
+cdl_option CYGFUN_LIBC_STRING_BSD_FUNCS {
+    inferred_value 0
+};
+
+cdl_option CYGBLD_ISO_STRING_MEMFUNCS_HEADER {
+    inferred_value 1 <cyg/libc/string/string.h>
+};
+
+cdl_option CYGBLD_ISO_STRING_STRFUNCS_HEADER {
+    inferred_value 1 <cyg/libc/string/string.h>
+};
+
+cdl_option CYGBLD_ISO_STRTOK_R_HEADER {
+    inferred_value 1 <cyg/libc/string/string.h>
+};
+
+cdl_option CYGBLD_ISO_STRING_LOCALE_FUNCS_HEADER {
+    inferred_value 1 <cyg/libc/string/string.h>
+};
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  <andrew.lunn@ascom.ch>
+
+	* current.cdl: Add LIBC_STRING which MEMALLOC now needs.
+
 2006-03-22  Uwe Kindler <uwe_kindler@web.de>
 	
 	* 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 <cyg/libc/string/bsdstring.h>
+};
+
+cdl_option CYGFUN_LIBC_STRING_BSD_FUNCS {
+    inferred_value 0
+};
+
+cdl_option CYGBLD_ISO_STRING_MEMFUNCS_HEADER {
+    inferred_value 1 <cyg/libc/string/string.h>
+};
+
+cdl_option CYGBLD_ISO_STRING_STRFUNCS_HEADER {
+    inferred_value 1 <cyg/libc/string/string.h>
+};
+
+cdl_option CYGBLD_ISO_STRTOK_R_HEADER {
+    inferred_value 1 <cyg/libc/string/string.h>
+};
+
+cdl_option CYGBLD_ISO_STRING_LOCALE_FUNCS_HEADER {
+    inferred_value 1 <cyg/libc/string/string.h>
+};
+


[-- Attachment #3: Type: text/plain, Size: 148 bytes --]

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

  reply	other threads:[~2008-04-08 11:10 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-04-08 10:45 David.Babin
2008-04-08 11:10 ` Andrew Lunn
2008-04-08 15:17   ` Andrew Lunn [this message]
2008-04-08 18:47     ` David.Babin
2008-04-08 19:55       ` Andrew Lunn
2008-04-10  8:47 David Babin
2008-04-10  8:50 ` Andrew Lunn
2008-04-10 13:58 ` Markus Schaber

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20080408111005.GD11287@lunn.ch \
    --to=andrew@lunn.ch \
    --cc=David.Babin@dmic.fr \
    --cc=ecos-discuss@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).