Holger Hans Peter Freyther | 1 Oct 2009 07:00
Picon

Re: [oe] Creating the CheckSum parser failed

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
 <at>  <at>  -661,7 +661,7  <at>  <at>  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)
(Continue reading)

Ed Nelson | 1 Oct 2009 16:59
Picon

Re: [oe] Creating the CheckSum parser failed

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
>  <at>  <at>  -661,7 +661,7  <at>  <at>  python base_do_fetch() {
>                 bb.note("No conf/checksums.ini found, not checking checksums")
>                 return
>         except:
> -               bb.note("Creating the CheckSum parser failed")
(Continue reading)


Gmane