[OE-core] [PATCH 1/2] u-boot: remove UBOOT_MACHINE and COMPATIBLE_MACHINES

Richard Purdie richard.purdie at linuxfoundation.org
Fri May 27 08:40:44 UTC 2011


On Thu, 2011-05-26 at 20:43 -0700, Darren Hart wrote:
> On 05/26/2011 04:24 PM, Richard Purdie wrote:
> > On Thu, 2011-05-26 at 14:12 -0700, Darren Hart wrote:
> >> Note: I used bb.note() instead of bb.debug() to ensure the message at least
> >>       makes it to the console. From what I could gather, bb.debug() doesn't
> >>       go anywhere during recipe parsing.
> > 
> > Why?
> > 
> 
> My thinking was that the only time you would legitimately try and build
> this package when you can't is during a "world" build, which is likely
> an unattended sort of build anyway. The rest of the time you might hit
> this error would be when you intended to build u-boot but are missing
> the requisite configuration bits in your machine config.

You've inserted the note at parsing time though so every time anyone
builds anything this will show up.

In case you wonder why bitbake does this its because it has no idea what
the recipe provides until it attempts to parse it. Yes, you can make
guesses from filenames but those are just a convenience and
BBCLASSEXTEND can make one recipe provide multiple things for example.

foo_git.bb

containing:

PN = "bar"

or

PROVIDES += "something-else"

are both valid things to do too if potentially misleading.

> Since the debug lines don't get logged anywhere, and you have to clear
> tmp/cache in order to retrigger the SkipPackage event with a new bitbake
> command (even with -D), I thought it the most user friendly to ensure
> the message made it out somewhere where it wouldn't get lost.
> 
> > We exclude about 30 different recipes
> 
> I didn't realize it was so many, it's difficult to tell just grepping
> for SkipPackage.

COMPATIBLE_MACHINE and COMPATIBLE_HOST will show more.

> > when parsing and would you really
> > want to see a usability message from each one when you likely don't care
> > about it?
> 
> See above for my rationale on when you "care about it".
> 
> > 
> > A bb.debug is fine and the user can see it if they run with -D to get
> > more info.
> 
> The user won't see it unless they clear tmp/cache, which isn't very
> intuitive (or at least it wasn't to me).
> 
> > A bb.note is just irritating.
> 
> I can resend with bb.debug() if you feel strongly about it, as
> apparently you do. I've answered your "why" question, but I don't feel
> strongly about it. If you want to use bb.debug() I can resend as such
> (or just repush with that single change).

Given my comment above (the note appears all the time, not just for
world), I do feel strongly about this.

Yes, we could do with a better way of showing up which packages were
skipped if the user needs to know but this isn't the way to do it and it
won't scale.

Cheers,

Richard






More information about the Openembedded-core mailing list