summaryrefslogtreecommitdiffstats
path: root/meta/classes/utility-tasks.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-03-01 00:06:58 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-03-01 00:10:56 +0000
commitf8ca2383e1a5f69ef3f24b5436b3302e7a2e576e (patch)
tree907259c3ed1b443c21833f39049e5efc1ebc259c /meta/classes/utility-tasks.bbclass
parentdfc6ccefed4530b06aaf90d149c0df6cf6177688 (diff)
downloadpoky-f8ca2383e1a5f69ef3f24b5436b3302e7a2e576e.tar.gz
base/utility-tasks.bbclass: Drop do_setscene and do_rebuild
The do_setscene task only exists for rebuild support now as all its other functionality has been superceeded. The rebuild task currently crashes due to removal of the working directory and therefore isn't working for anyone. It also interacts extremely badly with the newer sstate technology to the point of being dangerous. Summary, if we want rebuild support it needs a reimplementation so remove this version and all its remnants and hacks. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/utility-tasks.bbclass')
-rw-r--r--meta/classes/utility-tasks.bbclass19
1 files changed, 0 insertions, 19 deletions
diff --git a/meta/classes/utility-tasks.bbclass b/meta/classes/utility-tasks.bbclass
index aeac2bce40..64bd84a5d3 100644
--- a/meta/classes/utility-tasks.bbclass
+++ b/meta/classes/utility-tasks.bbclass
@@ -28,25 +28,6 @@ python do_clean() {
28 bb.build.exec_func(f, d) 28 bb.build.exec_func(f, d)
29} 29}
30 30
31addtask rebuild after do_${BB_DEFAULT_TASK}
32do_rebuild[dirs] = "${TOPDIR}"
33do_rebuild[nostamp] = "1"
34python do_rebuild() {
35 """rebuild a package"""
36}
37
38#addtask mrproper
39#do_mrproper[dirs] = "${TOPDIR}"
40#do_mrproper[nostamp] = "1"
41#python do_mrproper() {
42# """clear downloaded sources, build and temp directories"""
43# dir = bb.data.expand("${DL_DIR}", d)
44# if dir == '/': bb.build.FuncFailed("wrong DATADIR")
45# bb.debug(2, "removing " + dir)
46# os.system('rm -rf ' + dir)
47# bb.build.exec_func('do_clean', d)
48#}
49
50addtask checkuri 31addtask checkuri
51do_checkuri[nostamp] = "1" 32do_checkuri[nostamp] = "1"
52python do_checkuri() { 33python do_checkuri() {