[poky] Can't run HOB
Xu, Dongxiao
dongxiao.xu at intel.com
Mon Mar 19 23:25:39 PDT 2012
On Mon, 2012-03-19 at 20:20 -0600, Gary Thomas wrote:
> When I try HOB on my tree, it parses the metadata to around 57%
> and then brings up what I guess is a warning (sadly, it only shows
> an empty dialogue with an "OK" button). This seems to happen because
> I have meta-ti in my bblayers.conf. I also have this statement in
> my local.conf:
> # Ignore troublesome TI recipes
> BBMASK = ".*/meta-ti/recipes-misc/"
>
> Maybe HOB is not honouring the BBMASK?
Variables are still handled in bitbake server side, Hob only acts as a
bridge between user and bitbake server.
The phenomenon is strange since the code piece will detect if the error
msg is None or not. If it is None, it will not pop up the error dialog.
================================================================
def handler_command_failed_cb(self, handler, msg):
if msg:
lbl = "<b>Error</b>\n"
lbl = lbl + "%s\n\n" % msg
dialog = CrumbsMessageDialog(self, lbl,
gtk.STOCK_DIALOG_WARNING)
dialog.add_button(gtk.STOCK_OK, gtk.RESPONSE_OK)
response = dialog.run()
dialog.destroy()
================================================================
What's does it do if you click the "OK" button?
Thanks,
Dongxiao
>
More information about the poky
mailing list