diff options
author | Holger Freyther <zecke@selfish.org> | 2006-11-18 16:55:13 +0000 |
---|---|---|
committer | Holger Freyther <zecke@selfish.org> | 2006-11-18 16:55:13 +0000 |
commit | 56b7d78a034187f66e08f3b3e2de55bd878cf9b5 (patch) | |
tree | d6f4033c0064f41c2205502d10c651e8710c96aa /classes/update-rc.d.bbclass | |
parent | 9e61974759ef6e4ff9538a33bab0e82b1b4381dd (diff) | |
download | openembedded-56b7d78a034187f66e08f3b3e2de55bd878cf9b5.tar.gz |
Micro-Optimisation decreasing initial parsing time by 10%
python () {} and python __anonymous () {} are as the same
says functions without a name. They get executed when the
main bb file is completely parsed. This is used to set
information like FILESDIR.
This is a python method so it gets evaled which means compiled
and executed a lot of times. By moving the code of the anonfunc
into a proper method this is only compiled once. The result is
is the 10% speed up when parsing.
Reindent anonfuncs and new defs without tabs and four spaces
Diffstat (limited to 'classes/update-rc.d.bbclass')
-rw-r--r-- | classes/update-rc.d.bbclass | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/classes/update-rc.d.bbclass b/classes/update-rc.d.bbclass index 0bfba467c1..581859ad48 100644 --- a/classes/update-rc.d.bbclass +++ b/classes/update-rc.d.bbclass @@ -26,12 +26,17 @@ updatercd_postrm() { update-rc.d $D ${INITSCRIPT_NAME} remove } + +def update_rc_after_parse(d): + import bb + if bb.data.getVar('INITSCRIPT_PACKAGES', d) == None: + if bb.data.getVar('INITSCRIPT_NAME', d) == None: + raise bb.build.FuncFailed, "%s inherits update-rc.d but doesn't set INITSCRIPT_NAME" % bb.data.getVar('FILE', d) + if bb.data.getVar('INITSCRIPT_PARAMS', d) == None: + raise bb.build.FuncFailed, "%s inherits update-rc.d but doesn't set INITSCRIPT_PARAMS" % bb.data.getVar('FILE', d) + python __anonymous() { - if bb.data.getVar('INITSCRIPT_PACKAGES', d) == None: - if bb.data.getVar('INITSCRIPT_NAME', d) == None: - raise bb.build.FuncFailed, "%s inherits update-rc.d but doesn't set INITSCRIPT_NAME" % bb.data.getVar('FILE', d) - if bb.data.getVar('INITSCRIPT_PARAMS', d) == None: - raise bb.build.FuncFailed, "%s inherits update-rc.d but doesn't set INITSCRIPT_PARAMS" % bb.data.getVar('FILE', d) + update_rc_after_parse(d) } python populate_packages_prepend () { |