[oe] Creating the CheckSum parser failed

Ed Nelson enelson1000 at comcast.net
Thu Oct 1 14:59:38 UTC 2009


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




More information about the Openembedded-devel mailing list