mirror of
https://git.yoctoproject.org/poky
synced 2026-05-01 06:32:11 +02:00
eglibc: import eglibc_2.12 recipe from OE
use http proto for svn checkout cosmetic cleanups to metadata Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
This commit is contained in:
committed by
Richard Purdie
parent
2c11926528
commit
512d3b713c
15
meta/classes/qemu.bbclass
Normal file
15
meta/classes/qemu.bbclass
Normal file
@@ -0,0 +1,15 @@
|
||||
#
|
||||
# This class contains functions for recipes that need QEMU or test for its
|
||||
# existance.
|
||||
#
|
||||
|
||||
def qemu_target_binary(data):
|
||||
import bb
|
||||
|
||||
target_arch = bb.data.getVar("TARGET_ARCH", data, 1)
|
||||
if target_arch in ("i486", "i586", "i686"):
|
||||
target_arch = "i386"
|
||||
elif target_arch == "powerpc":
|
||||
target_arch = "ppc"
|
||||
|
||||
return "qemu-" + target_arch
|
||||
Reference in New Issue
Block a user