diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/qemu.bbclass | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/meta/classes/qemu.bbclass b/meta/classes/qemu.bbclass index 8b039266b9..0e71d6aaad 100644 --- a/meta/classes/qemu.bbclass +++ b/meta/classes/qemu.bbclass @@ -29,10 +29,4 @@ def qemu_run_binary(data, rootfs_path, binary): if qemu_binary == "qemu-allarch": qemu_binary = "qemuwrapper" - 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 "PSEUDO_UNLOAD=1 " + qemu_binary + " " + dynamic_loader + " --library-path " + library_path \ - + " " + rootfs_path + binary + return "PSEUDO_UNLOAD=1 " + qemu_binary + " -L " + rootfs_path + " " + rootfs_path + binary |