diff options
author | Holger Freyther <zecke@selfish.org> | 2006-03-08 21:25:21 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-03-08 21:25:21 +0000 |
commit | 4c8833de3abd3eb567ce2d011347c2a0d680816d (patch) | |
tree | 94b7b83407b12d34beb5696e35753cf4185b2992 /classes | |
parent | 4ca2438a9db94dc1ef5376087974a5f08e834927 (diff) |
classes/tinderclient.bbclass: Send the name
Send the name of the to be build packages. Now
we can see what was intended to be build from
within the log
Diffstat (limited to 'classes')
-rw-r--r-- | classes/tinderclient.bbclass | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/classes/tinderclient.bbclass b/classes/tinderclient.bbclass index 1c6a6c497f..1be7bf8c33 100644 --- a/classes/tinderclient.bbclass +++ b/classes/tinderclient.bbclass @@ -214,7 +214,7 @@ def tinder_print_env(): return "\n".join(output) % vars() -def tinder_tinder_start(d): +def tinder_tinder_start(d, event): """ PRINT the configuration of this build """ @@ -223,13 +223,18 @@ def tinder_tinder_start(d): config = tinder_print_info(d) #env = tinder_print_env() time_end = tinder_time_string() + packages = " ".join( event.getPkgs() ) output = [] output.append( "---> TINDERBOX PRINTING CONFIGURATION %(time_start)s" ) output.append( config ) #output.append( env ) output.append( "<--- TINDERBOX FINISHED PRINTING CONFIGURATION %(time_end)s" ) - output.append( "" ) + output.append( "---> TINDERBOX BUILDING '%(packages)s'" ) + output.append( "<--- TINDERBOX STARTING BUILD NOW" ) + + output.append( "" ) + return "\n".join(output) % vars() def tinder_do_tinder_report(event): @@ -256,7 +261,7 @@ def tinder_do_tinder_report(event): # Check what we need to do Build* shows we start or are done if name == "BuildStarted": tinder_build_start(event.data) - log = tinder_tinder_start(event.data) + log = tinder_tinder_start(event.data,event) try: # truncate the tinder log file |