public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
* RE: [ECOS] isoinfra cdl patch
@ 2001-09-20 20:57 Fabrice Gautier
  2001-09-20 21:17 ` Gary Thomas
  0 siblings, 1 reply; 5+ messages in thread
From: Fabrice Gautier @ 2001-09-20 20:57 UTC (permalink / raw)
  To: 'Gary Thomas', Fabrice Gautier; +Cc: Ecos-List (E-mail)

> -----Original Message-----
> From: Gary Thomas [ mailto:gthomas@redhat.com ]
> Subject: RE: [ECOS] isoinfra cdl patch
> 
> 
> On Fri, 2001-09-21 at 12:50, Fabrice Gautier wrote:
> > Humm.. actually it's not that, forget this patch...
> > 
> > I have to include the "ISO C library string function" 
> > package too (which
> > implement the missing features i guess)
> > 
> 
> This is already mentioned in the RedBoot template.  Probably 
> if you were
> to start with a fresh configuration, you'd not have any problems.

Yes, actually that's how i figured it out... 

The only thing is that I have to reconfigure manually a bunch of things....
:-( 

I guess that's the price to pay to play with cvs source...

	Fabrice

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [ECOS] isoinfra cdl patch
  2001-09-20 20:57 [ECOS] isoinfra cdl patch Fabrice Gautier
@ 2001-09-20 21:17 ` Gary Thomas
  0 siblings, 0 replies; 5+ messages in thread
From: Gary Thomas @ 2001-09-20 21:17 UTC (permalink / raw)
  To: Fabrice Gautier; +Cc: Ecos-List (E-mail)

On Fri, 2001-09-21 at 13:05, Fabrice Gautier wrote:
> > -----Original Message-----
> > From: Gary Thomas [ mailto:gthomas@redhat.com ]
> > Subject: RE: [ECOS] isoinfra cdl patch
> > 
> > 
> > On Fri, 2001-09-21 at 12:50, Fabrice Gautier wrote:
> > > Humm.. actually it's not that, forget this patch...
> > > 
> > > I have to include the "ISO C library string function" 
> > > package too (which
> > > implement the missing features i guess)
> > > 
> > 
> > This is already mentioned in the RedBoot template.  Probably 
> > if you were
> > to start with a fresh configuration, you'd not have any problems.
> 
> Yes, actually that's how i figured it out... 
> 
> The only thing is that I have to reconfigure manually a bunch of things....
> :-( 
> 
> I guess that's the price to pay to play with cvs source...
> 

This is where 'ecosconfig export' comes in.  It only saves the 
"important" information from your save file (the .ecm files we
have for building RedBoot).  Rebuilding a configuration from
them is seldom compromised, even by CDL changes like you've seen.

You can also use the "File->Export" function from the ConfigTool.

Just be sure and make the .ecm file when you have something you like.
Then you'll be able to recreate it later, even if the CDL changes.



^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [ECOS] isoinfra cdl patch
  2001-09-20 20:42 Fabrice Gautier
@ 2001-09-20 20:54 ` Gary Thomas
  0 siblings, 0 replies; 5+ messages in thread
From: Gary Thomas @ 2001-09-20 20:54 UTC (permalink / raw)
  To: Fabrice Gautier; +Cc: Ecos-List (E-mail)

On Fri, 2001-09-21 at 12:50, Fabrice Gautier wrote:
> Humm.. actually it's not that, forget this patch...
> 
> I have to include the "ISO C library string function" package too (which
> implement the missing features i guess)
> 

This is already mentioned in the RedBoot template.  Probably if you were
to start with a fresh configuration, you'd not have any problems.

> 	Fabrice
> 
> > -----Original Message-----
> > From: Fabrice Gautier [ mailto:Fabrice_Gautier@sdesigns.com ]
> > Sent: Thursday, September 20, 2001 8:26 PM
> > To: Ecos-List (E-mail)
> > Subject: [ECOS] isoinfra cdl patch
> > 
> > 
> > Hi,
> > 
> > I had to apply the followinf patch in order to build redboot 
> > in windows
> > config tool.
> > 
> > I updated the CVS today and (among other things) the config tool was
> > reporting two conflict : two missing interfaces of the 
> > ISOINFRA packages.
> > I think that previously the isoinfra pakage was not needed by 
> > Redboot but
> > now it is. But the interface where not implemented in the 
> > isoinfra.cdl. The
> > patch correct just those needed to build redboot. I guess other maybe
> > missing...
> > 
> > 	Fabrice
> > 
> > 
> > Index: isoinfra.cdl
> > ===================================================================
> > RCS file: /cvs/ecos/ecos/packages/isoinfra/current/cdl/isoinfra.cdl,v
> > retrieving revision 1.9
> > diff -u -r1.9 isoinfra.cdl
> > --- isoinfra.cdl        2001/09/12 04:21:16     1.9
> > +++ isoinfra.cdl        2001/09/21 03:09:06
> > @@ -519,6 +519,7 @@
> >              display       "Other mem*() functions' 
> > implementation header"
> >              flavor        booldata
> >              default_value 0
> > +                       implements    CYGINT_ISO_STRING_MEMFUNCS
> >          }
> > 
> >          cdl_interface CYGINT_ISO_STRING_STRFUNCS {
> > @@ -536,6 +537,7 @@
> >                  This covers the other str*() functions 
> > defined by ISO C."
> >              flavor        booldata
> >              default_value 0
> > +                       implements    CYGINT_ISO_STRING_STRFUNCS
> >          }
> >      }
> > 
> > 
> > 
> > -- 
> > Fabrice Gautier
> > Software Engineer, Sigma Designs
> > Fabrice_Gautier@sdesigns.com
> > 


^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [ECOS] isoinfra cdl patch
@ 2001-09-20 20:42 Fabrice Gautier
  2001-09-20 20:54 ` Gary Thomas
  0 siblings, 1 reply; 5+ messages in thread
From: Fabrice Gautier @ 2001-09-20 20:42 UTC (permalink / raw)
  To: Ecos-List (E-mail)

Humm.. actually it's not that, forget this patch...

I have to include the "ISO C library string function" package too (which
implement the missing features i guess)

	Fabrice

> -----Original Message-----
> From: Fabrice Gautier [ mailto:Fabrice_Gautier@sdesigns.com ]
> Sent: Thursday, September 20, 2001 8:26 PM
> To: Ecos-List (E-mail)
> Subject: [ECOS] isoinfra cdl patch
> 
> 
> Hi,
> 
> I had to apply the followinf patch in order to build redboot 
> in windows
> config tool.
> 
> I updated the CVS today and (among other things) the config tool was
> reporting two conflict : two missing interfaces of the 
> ISOINFRA packages.
> I think that previously the isoinfra pakage was not needed by 
> Redboot but
> now it is. But the interface where not implemented in the 
> isoinfra.cdl. The
> patch correct just those needed to build redboot. I guess other maybe
> missing...
> 
> 	Fabrice
> 
> 
> Index: isoinfra.cdl
> ===================================================================
> RCS file: /cvs/ecos/ecos/packages/isoinfra/current/cdl/isoinfra.cdl,v
> retrieving revision 1.9
> diff -u -r1.9 isoinfra.cdl
> --- isoinfra.cdl        2001/09/12 04:21:16     1.9
> +++ isoinfra.cdl        2001/09/21 03:09:06
> @@ -519,6 +519,7 @@
>              display       "Other mem*() functions' 
> implementation header"
>              flavor        booldata
>              default_value 0
> +                       implements    CYGINT_ISO_STRING_MEMFUNCS
>          }
> 
>          cdl_interface CYGINT_ISO_STRING_STRFUNCS {
> @@ -536,6 +537,7 @@
>                  This covers the other str*() functions 
> defined by ISO C."
>              flavor        booldata
>              default_value 0
> +                       implements    CYGINT_ISO_STRING_STRFUNCS
>          }
>      }
> 
> 
> 
> -- 
> Fabrice Gautier
> Software Engineer, Sigma Designs
> Fabrice_Gautier@sdesigns.com
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [ECOS] isoinfra cdl patch
@ 2001-09-20 20:17 Fabrice Gautier
  0 siblings, 0 replies; 5+ messages in thread
From: Fabrice Gautier @ 2001-09-20 20:17 UTC (permalink / raw)
  To: Ecos-List (E-mail)

Hi,

I had to apply the followinf patch in order to build redboot in windows
config tool.

I updated the CVS today and (among other things) the config tool was
reporting two conflict : two missing interfaces of the ISOINFRA packages.
I think that previously the isoinfra pakage was not needed by Redboot but
now it is. But the interface where not implemented in the isoinfra.cdl. The
patch correct just those needed to build redboot. I guess other maybe
missing...

	Fabrice


Index: isoinfra.cdl
===================================================================
RCS file: /cvs/ecos/ecos/packages/isoinfra/current/cdl/isoinfra.cdl,v
retrieving revision 1.9
diff -u -r1.9 isoinfra.cdl
--- isoinfra.cdl        2001/09/12 04:21:16     1.9
+++ isoinfra.cdl        2001/09/21 03:09:06
@@ -519,6 +519,7 @@
             display       "Other mem*() functions' implementation header"
             flavor        booldata
             default_value 0
+                       implements    CYGINT_ISO_STRING_MEMFUNCS
         }

         cdl_interface CYGINT_ISO_STRING_STRFUNCS {
@@ -536,6 +537,7 @@
                 This covers the other str*() functions defined by ISO C."
             flavor        booldata
             default_value 0
+                       implements    CYGINT_ISO_STRING_STRFUNCS
         }
     }



-- 
Fabrice Gautier
Software Engineer, Sigma Designs
Fabrice_Gautier@sdesigns.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2001-09-20 21:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-09-20 20:57 [ECOS] isoinfra cdl patch Fabrice Gautier
2001-09-20 21:17 ` Gary Thomas
  -- strict thread matches above, loose matches on Subject: below --
2001-09-20 20:42 Fabrice Gautier
2001-09-20 20:54 ` Gary Thomas
2001-09-20 20:17 Fabrice Gautier

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).