All of lore.kernel.org
 help / color / mirror / Atom feed
* Creating the CheckSum parser failed
@ 2009-10-01  4:47 ed
  2009-10-01  5:00 ` Holger Hans Peter Freyther
  0 siblings, 1 reply; 3+ messages in thread
From: ed @ 2009-10-01  4:47 UTC (permalink / raw)
  To: openembedded-devel

What am I missing that keeps causing this message to be printed out in
the log.

NOTE: Running task 10 of 2678 (ID:
815, /home/ed/mini2440/OE/mini2440/recipes/stage-manager/stagemanager-native_0.0.1.bb, do_setscene)
NOTE: Running task 11 of 2678 (ID:
816, /home/ed/mini2440/OE/mini2440/recipes/stage-manager/stagemanager-native_0.0.1.bb, do_fetch)
NOTE: Creating the CheckSum parser failed


Thanks




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

* Re: Creating the CheckSum parser failed
  2009-10-01  4:47 Creating the CheckSum parser failed ed
@ 2009-10-01  5:00 ` Holger Hans Peter Freyther
  2009-10-01 14:59   ` Ed Nelson
  0 siblings, 1 reply; 3+ messages in thread
From: Holger Hans Peter Freyther @ 2009-10-01  5:00 UTC (permalink / raw)
  To: openembedded-devel

On Thursday 01 October 2009 06:47:23 ed wrote:
> What am I missing that keeps causing this message to be printed out in
> the log.
> 
> NOTE: Running task 10 of 2678 (ID:
> 815,
>  /home/ed/mini2440/OE/mini2440/recipes/stage-manager/stagemanager-native_0.
> 0.1.bb, do_setscene) NOTE: Running task 11 of 2678 (ID:
> 816,
>  /home/ed/mini2440/OE/mini2440/recipes/stage-manager/stagemanager-native_0.
> 0.1.bb, do_fetch) NOTE: Creating the CheckSum parser failed

Wow that is a crappy message that I created (I always bitch about bad error
messages myself). This message is generated in classes/base.bbclass and
could you try the following patch?



diff --git a/classes/base.bbclass b/classes/base.bbclass
index d29ba4b..89ee917 100644
--- a/classes/base.bbclass
+++ b/classes/base.bbclass
@@ -661,7 +661,7 @@ python base_do_fetch() {
                bb.note("No conf/checksums.ini found, not checking checksums")
                return
        except:
-               bb.note("Creating the CheckSum parser failed")
+               bb.note("Creating the CheckSum parser failed: %s:%s" % (sys.exc_info()[0], sys.exc_info()[1]))
                return
 
        pv = bb.data.getVar('PV', d, True)



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

* Re: Creating the CheckSum parser failed
  2009-10-01  5:00 ` Holger Hans Peter Freyther
@ 2009-10-01 14:59   ` Ed Nelson
  0 siblings, 0 replies; 3+ messages in thread
From: Ed Nelson @ 2009-10-01 14:59 UTC (permalink / raw)
  To: openembedded-devel

Holger Hans Peter Freyther wrote:
> On Thursday 01 October 2009 06:47:23 ed wrote:
>   
>> What am I missing that keeps causing this message to be printed out in
>> the log.
>>
>> NOTE: Running task 10 of 2678 (ID:
>> 815,
>>  /home/ed/mini2440/OE/mini2440/recipes/stage-manager/stagemanager-native_0.
>> 0.1.bb, do_setscene) NOTE: Running task 11 of 2678 (ID:
>> 816,
>>  /home/ed/mini2440/OE/mini2440/recipes/stage-manager/stagemanager-native_0.
>> 0.1.bb, do_fetch) NOTE: Creating the CheckSum parser failed
>>     
>
> Wow that is a crappy message that I created (I always bitch about bad error
> messages myself). This message is generated in classes/base.bbclass and
> could you try the following patch?
>
>
>
> diff --git a/classes/base.bbclass b/classes/base.bbclass
> index d29ba4b..89ee917 100644
> --- a/classes/base.bbclass
> +++ b/classes/base.bbclass
> @@ -661,7 +661,7 @@ python base_do_fetch() {
>                 bb.note("No conf/checksums.ini found, not checking checksums")
>                 return
>         except:
> -               bb.note("Creating the CheckSum parser failed")
> +               bb.note("Creating the CheckSum parser failed: %s:%s" % (sys.exc_info()[0], sys.exc_info()[1]))
>                 return
>  
>         pv = bb.data.getVar('PV', d, True)
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>
>   
Thanks

That did the trick.
It reported parsing errors in checksum.ini file.
    line 27362 '====\n'
    line 27373 '====\n'
etc

Removed them from file and now no more errors.
Thanks again.



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

end of thread, other threads:[~2009-10-01 15:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-01  4:47 Creating the CheckSum parser failed ed
2009-10-01  5:00 ` Holger Hans Peter Freyther
2009-10-01 14:59   ` Ed Nelson

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.