summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2018-02-09 11:51:18 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-02-16 18:05:40 +0000
commitdc62837cac8159141ee642b96d4f113c06083893 (patch)
tree47ec92acdfc5073ab59ff73cf02a18aebd1266ba
parent4239d9d2db88a83411a6c61d36151657787895a3 (diff)
downloadpoky-dc62837cac8159141ee642b96d4f113c06083893.tar.gz
distrodata: remove redudant *all tasks now that --runall works correctly
(From OE-Core rev: 120dc59ad4a9ca232176c8a09bb3e43a9d1e24ac) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/distrodata.bbclass31
1 files changed, 0 insertions, 31 deletions
diff --git a/meta/classes/distrodata.bbclass b/meta/classes/distrodata.bbclass
index b0f4ecea09..59ee8cea66 100644
--- a/meta/classes/distrodata.bbclass
+++ b/meta/classes/distrodata.bbclass
@@ -188,14 +188,6 @@ python do_distrodata() {
188} 188}
189do_distrodata[vardepsexclude] = "DATETIME" 189do_distrodata[vardepsexclude] = "DATETIME"
190 190
191addtask distrodataall after do_distrodata
192do_distrodataall[recrdeptask] = "do_distrodataall do_distrodata"
193do_distrodataall[recideptask] = "do_${BB_DEFAULT_TASK}"
194do_distrodataall[nostamp] = "1"
195do_distrodataall() {
196 :
197}
198
199addhandler checkpkg_eventhandler 191addhandler checkpkg_eventhandler
200checkpkg_eventhandler[eventmask] = "bb.event.BuildStarted bb.event.BuildCompleted" 192checkpkg_eventhandler[eventmask] = "bb.event.BuildStarted bb.event.BuildCompleted"
201python checkpkg_eventhandler() { 193python checkpkg_eventhandler() {
@@ -354,14 +346,6 @@ python do_checkpkg() {
354 bb.utils.unlockfile(lf) 346 bb.utils.unlockfile(lf)
355} 347}
356 348
357addtask checkpkgall after do_checkpkg
358do_checkpkgall[recrdeptask] = "do_checkpkgall do_checkpkg"
359do_checkpkgall[recideptask] = "do_${BB_DEFAULT_TASK}"
360do_checkpkgall[nostamp] = "1"
361do_checkpkgall() {
362 :
363}
364
365addhandler distro_check_eventhandler 349addhandler distro_check_eventhandler
366distro_check_eventhandler[eventmask] = "bb.event.BuildStarted" 350distro_check_eventhandler[eventmask] = "bb.event.BuildStarted"
367python distro_check_eventhandler() { 351python distro_check_eventhandler() {
@@ -397,13 +381,6 @@ python do_distro_check() {
397 dc.save_distro_check_result(result, datetime, result_file, d) 381 dc.save_distro_check_result(result, datetime, result_file, d)
398} 382}
399 383
400addtask distro_checkall after do_distro_check
401do_distro_checkall[recrdeptask] = "do_distro_checkall do_distro_check"
402do_distro_checkall[recideptask] = "do_${BB_DEFAULT_TASK}"
403do_distro_checkall[nostamp] = "1"
404do_distro_checkall() {
405 :
406}
407# 384#
408#Check Missing License Text. 385#Check Missing License Text.
409#Use this task to generate the missing license text data for pkg-report system, 386#Use this task to generate the missing license text data for pkg-report system,
@@ -448,11 +425,3 @@ python do_checklicense() {
448 bb.utils.unlockfile(lf) 425 bb.utils.unlockfile(lf)
449 return 426 return
450} 427}
451
452addtask checklicenseall after do_checklicense
453do_checklicenseall[recrdeptask] = "do_checklicenseall do_checklicense"
454do_checklicenseall[recideptask] = "do_${BB_DEFAULT_TASK}"
455do_checklicenseall[nostamp] = "1"
456do_checklicenseall() {
457 :
458}