]> code.ossystems Code Review - openembedded-core.git/commitdiff
qemu.bbclass: add qemu_run_binary() function
authorLaurentiu Palcu <laurentiu.palcu@intel.com>
Thu, 20 Dec 2012 13:15:38 +0000 (15:15 +0200)
committerSaul Wold <sgw@linux.intel.com>
Thu, 10 Jan 2013 00:40:38 +0000 (16:40 -0800)
[YOCTO #3602]

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
meta/classes/qemu.bbclass

index aead8e2809d22b50b42cc07d388f44a630b91fb9..13af3390aa73feed5972630ea3cae3a7c6dd83d9 100644 (file)
@@ -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