* more BSP Guide pedantry involving customizing a recipe
@ 2014-12-30 19:31 Robert P. J. Day
2014-12-30 22:48 ` Gary Thomas
2015-01-05 23:42 ` Rifenbark, Scott M
0 siblings, 2 replies; 5+ messages in thread
From: Robert P. J. Day @ 2014-12-30 19:31 UTC (permalink / raw)
To: Yocto discussion list
(you can tell i'm bored and want to get back up to speed on stuff
...)
section 1.4 in BSP Guide, "Customizing a Recipe for a BSP", appears
to discuss a new layer, "meta-xyz", then suggests the new "interfaces"
file for this machine needs to go at the location:
meta-xyz/recipes-core/init-ifupdown/files/xyz/interfaces
^^^ ???
but the files/ subdirectory of "xyz/" would appear to be necessary
(as we all know) only if this was a more general layer that
represented several machines (say, meta-ti) for which we *needed* to
distinguish between machines.
so while the above might be technically correct, it might mislead
readers to think they *needed* to create a "xyz/" subdirectory for
that overriding interfaces file.
rday
--
========================================================================
Robert P. J. Day Ottawa, Ontario, CANADA
http://crashcourse.ca
Twitter: http://twitter.com/rpjday
LinkedIn: http://ca.linkedin.com/in/rpjday
========================================================================
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: more BSP Guide pedantry involving customizing a recipe
2014-12-30 19:31 more BSP Guide pedantry involving customizing a recipe Robert P. J. Day
@ 2014-12-30 22:48 ` Gary Thomas
2014-12-30 23:37 ` Gary Thomas
2014-12-31 10:06 ` Robert P. J. Day
2015-01-05 23:42 ` Rifenbark, Scott M
1 sibling, 2 replies; 5+ messages in thread
From: Gary Thomas @ 2014-12-30 22:48 UTC (permalink / raw)
To: yocto
On 2014-12-30 12:31, Robert P. J. Day wrote:
>
> (you can tell i'm bored and want to get back up to speed on stuff
> ...)
>
> section 1.4 in BSP Guide, "Customizing a Recipe for a BSP", appears
> to discuss a new layer, "meta-xyz", then suggests the new "interfaces"
> file for this machine needs to go at the location:
>
> meta-xyz/recipes-core/init-ifupdown/files/xyz/interfaces
> ^^^ ???
>
> but the files/ subdirectory of "xyz/" would appear to be necessary
> (as we all know) only if this was a more general layer that
> represented several machines (say, meta-ti) for which we *needed* to
> distinguish between machines.
>
> so while the above might be technically correct, it might mislead
> readers to think they *needed* to create a "xyz/" subdirectory for
> that overriding interfaces file.
Actually, it *is* necessary if meta-xyz supports more than one
MACHINE and those targets have unique versions of the 'interfaces'
file (which is common since this file is being tailored for a
particular target machine)
--
------------------------------------------------------------
Gary Thomas | Consulting for the
MLB Associates | Embedded world
------------------------------------------------------------
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: more BSP Guide pedantry involving customizing a recipe
2014-12-30 22:48 ` Gary Thomas
@ 2014-12-30 23:37 ` Gary Thomas
2014-12-31 10:06 ` Robert P. J. Day
1 sibling, 0 replies; 5+ messages in thread
From: Gary Thomas @ 2014-12-30 23:37 UTC (permalink / raw)
To: yocto
On 2014-12-30 15:48, Gary Thomas wrote:
> On 2014-12-30 12:31, Robert P. J. Day wrote:
>>
>> (you can tell i'm bored and want to get back up to speed on stuff
>> ...)
>>
>> section 1.4 in BSP Guide, "Customizing a Recipe for a BSP", appears
>> to discuss a new layer, "meta-xyz", then suggests the new "interfaces"
>> file for this machine needs to go at the location:
>>
>> meta-xyz/recipes-core/init-ifupdown/files/xyz/interfaces
>> ^^^ ???
>>
>> but the files/ subdirectory of "xyz/" would appear to be necessary
>> (as we all know) only if this was a more general layer that
>> represented several machines (say, meta-ti) for which we *needed* to
>> distinguish between machines.
>>
>> so while the above might be technically correct, it might mislead
>> readers to think they *needed* to create a "xyz/" subdirectory for
>> that overriding interfaces file.
>
> Actually, it *is* necessary if meta-xyz supports more than one
> MACHINE and those targets have unique versions of the 'interfaces'
> file (which is common since this file is being tailored for a
> particular target machine)
>
n.b. in this case you'd have
.../files/MACHINEa/interfaces
.../files/MACHINEb/interfaces
and so on
--
------------------------------------------------------------
Gary Thomas | Consulting for the
MLB Associates | Embedded world
------------------------------------------------------------
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: more BSP Guide pedantry involving customizing a recipe
2014-12-30 22:48 ` Gary Thomas
2014-12-30 23:37 ` Gary Thomas
@ 2014-12-31 10:06 ` Robert P. J. Day
1 sibling, 0 replies; 5+ messages in thread
From: Robert P. J. Day @ 2014-12-31 10:06 UTC (permalink / raw)
To: Gary Thomas; +Cc: yocto
On Tue, 30 Dec 2014, Gary Thomas wrote:
> On 2014-12-30 12:31, Robert P. J. Day wrote:
> >
> > (you can tell i'm bored and want to get back up to speed on stuff
> > ...)
> >
> > section 1.4 in BSP Guide, "Customizing a Recipe for a BSP", appears
> > to discuss a new layer, "meta-xyz", then suggests the new "interfaces"
> > file for this machine needs to go at the location:
> >
> > meta-xyz/recipes-core/init-ifupdown/files/xyz/interfaces
> > ^^^ ???
> >
> > but the files/ subdirectory of "xyz/" would appear to be necessary
> > (as we all know) only if this was a more general layer that
> > represented several machines (say, meta-ti) for which we *needed* to
> > distinguish between machines.
> >
> > so while the above might be technically correct, it might mislead
> > readers to think they *needed* to create a "xyz/" subdirectory for
> > that overriding interfaces file.
>
> Actually, it *is* necessary if meta-xyz supports more than one
> MACHINE and those targets have unique versions of the 'interfaces'
> file (which is common since this file is being tailored for a
> particular target machine)
i realize that, but it's not clear from the wording of that section
that that could be a possibility. i just like to avoid potential
confusion, and giving the reader the wrong impression.
rday
--
========================================================================
Robert P. J. Day Ottawa, Ontario, CANADA
http://crashcourse.ca
Twitter: http://twitter.com/rpjday
LinkedIn: http://ca.linkedin.com/in/rpjday
========================================================================
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: more BSP Guide pedantry involving customizing a recipe
2014-12-30 19:31 more BSP Guide pedantry involving customizing a recipe Robert P. J. Day
2014-12-30 22:48 ` Gary Thomas
@ 2015-01-05 23:42 ` Rifenbark, Scott M
1 sibling, 0 replies; 5+ messages in thread
From: Rifenbark, Scott M @ 2015-01-05 23:42 UTC (permalink / raw)
To: Robert P. J. Day, Yocto discussion list
Hi,
I have updated this section in the "latest" version of the BSP Guide. Thanks for the input.
Scott
>-----Original Message-----
>From: yocto-bounces@yoctoproject.org [mailto:yocto-
>bounces@yoctoproject.org] On Behalf Of Robert P. J. Day
>Sent: Tuesday, December 30, 2014 11:32 AM
>To: Yocto discussion list
>Subject: [yocto] more BSP Guide pedantry involving customizing a recipe
>
>
> (you can tell i'm bored and want to get back up to speed on stuff
>...)
>
> section 1.4 in BSP Guide, "Customizing a Recipe for a BSP", appears to discuss
>a new layer, "meta-xyz", then suggests the new "interfaces"
>file for this machine needs to go at the location:
>
>meta-xyz/recipes-core/init-ifupdown/files/xyz/interfaces
> ^^^ ???
>
> but the files/ subdirectory of "xyz/" would appear to be necessary (as we all
>know) only if this was a more general layer that represented several machines
>(say, meta-ti) for which we *needed* to distinguish between machines.
>
> so while the above might be technically correct, it might mislead readers to
>think they *needed* to create a "xyz/" subdirectory for that overriding
>interfaces file.
>
>rday
>
>--
>
>===========================================================
>=============
>Robert P. J. Day Ottawa, Ontario, CANADA
> http://crashcourse.ca
>
>Twitter: http://twitter.com/rpjday
>LinkedIn: http://ca.linkedin.com/in/rpjday
>===========================================================
>=============
>--
>_______________________________________________
>yocto mailing list
>yocto@yoctoproject.org
>https://lists.yoctoproject.org/listinfo/yocto
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-01-05 23:43 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-30 19:31 more BSP Guide pedantry involving customizing a recipe Robert P. J. Day
2014-12-30 22:48 ` Gary Thomas
2014-12-30 23:37 ` Gary Thomas
2014-12-31 10:06 ` Robert P. J. Day
2015-01-05 23:42 ` Rifenbark, Scott M
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.