aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2015-05-13 14:40:09 +0800
committerChen Qi <Qi.Chen@windriver.com>2015-05-13 18:09:07 +0800
commit630a1e0551f0431f8d513f979198ee752653a5e3 (patch)
treef5732c07e08a921fd5dd0f91870f8ab2d71a1d2e
parent2d09cb28f25080ed337d37d2d4381b846bbe6247 (diff)
downloadopenembedded-core-contrib-ChenQi/SDK-noexec.tar.gz
populate_sdk_ext: set noexec flag for some tasksChenQi/SDK-noexec
For the SDK, what we are interested in is the sysroot part. So the only useful task is do_populate_sysroot. Other tasks like do_package don't need to run. So mark them as 'noexec' for SDK. This would result in two benefits: 1) The size of extensible SDK is larged reduced. For example, extensible SDK for core-image-minimal is reduced from 1.8G to 793M. 2) The installation time is reduced as a lot of tasks are not run. [YOCTO #7590] Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
-rw-r--r--meta/classes/populate_sdk_ext.bbclass12
1 files changed, 11 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass
index dc2c58e2d1..6c265b8426 100644
--- a/meta/classes/populate_sdk_ext.bbclass
+++ b/meta/classes/populate_sdk_ext.bbclass
@@ -141,8 +141,18 @@ python copy_buildsystem () {
sigfile = d.getVar('WORKDIR', True) + '/locked-sigs.inc'
oe.copy_buildsystem.generate_locked_sigs(sigfile, d)
+ # Mark tasks to be 'noexec' for the SDK as we only need the sysroot part
+ base_class_path = os.path.join(baseoutpath, core_meta_subdir, 'classes', 'base.bbclass')
+ if os.path.exists(base_class_path):
+ with open(base_class_path, 'a') as f:
+ noexec_tasks = ['do_package', 'do_packagedata', 'do_package_qa', 'do_package_write_rpm',
+ 'do_package_write_ipk', 'do_package_write_deb', 'do_deploy', 'do_populate_lic',
+ 'do_rootfs']
+ for t in noexec_tasks:
+ f.write('%s[noexec] = "1"\n' % t)
+
# Filter the locked signatures file to just the sstate tasks we are interested in
- allowed_tasks = ['do_populate_lic', 'do_populate_sysroot', 'do_packagedata', 'do_package_write_ipk', 'do_package_write_rpm', 'do_package_write_deb', 'do_package_qa', 'do_deploy']
+ allowed_tasks = ['do_populate_sysroot']
excluded_targets = d.getVar('SDK_TARGETS', True)
lockedsigs_pruned = baseoutpath + '/conf/locked-sigs.inc'
oe.copy_buildsystem.prune_lockedsigs(allowed_tasks,