diff options
author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2012-12-20 15:15:38 +0200 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-01-09 16:40:38 -0800 |
commit | 2cfbe0bd9d02ab8c054e5bc879a2181c6a7e3719 (patch) | |
tree | 8a0e66c62515302c1263a7548f5007a591772982 /meta/classes/qemu.bbclass | |
parent | 67e77cd948c69798695d5d5f34163ef89339b35a (diff) | |
download | openembedded-core-2cfbe0bd9d02ab8c054e5bc879a2181c6a7e3719.tar.gz openembedded-core-2cfbe0bd9d02ab8c054e5bc879a2181c6a7e3719.tar.bz2 openembedded-core-2cfbe0bd9d02ab8c054e5bc879a2181c6a7e3719.zip |
qemu.bbclass: add qemu_run_binary() function
[YOCTO #3602]
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/classes/qemu.bbclass')
-rw-r--r-- | meta/classes/qemu.bbclass | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/classes/qemu.bbclass b/meta/classes/qemu.bbclass index aead8e2809..13af3390aa 100644 --- a/meta/classes/qemu.bbclass +++ b/meta/classes/qemu.bbclass @@ -13,3 +13,20 @@ def qemu_target_binary(data): target_arch = "ppc64" return "qemu-" + target_arch +# +# Next function will return a string containing the command that is needed to +# to run a certain binary through qemu. For example, in order to make a certain +# postinstall scriptlet run at do_rootfs time and running the postinstall is +# architecture dependent, we can run it through qemu. For example, in the +# postinstall scriptlet, we could use the following: +# +# ${@qemu_run_binary(d, '$D', '/usr/bin/test_app')} [test_app arguments] +# +def qemu_run_binary(data, rootfs_path, binary): + dynamic_loader = rootfs_path + '$(readelf -l ' + rootfs_path + \ + binary + '| grep "Requesting program interpreter"|sed -e \'s/^.*\[.*: \(.*\)\]/\\1/\')' + library_path = rootfs_path + data.getVar("base_libdir", True) + ":" + \ + rootfs_path + data.getVar("libdir", True) + + return qemu_target_binary(data) + " " + dynamic_loader + " --library-path " + library_path \ + + " " + rootfs_path + binary |