blob: d6ff612ec5a0462b4cad5adff6a325a00c5d793c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
require recipes-devtools/qemu/qemu.inc
DESCRIPTION = "This recipe requires poky's qemu.inc which includes the FSL \
fixes of QorIQ ARM and QorIQ PPC targets, the recipe assumes that glx enable \
config option is changed to --enable-opengl. The recipe only works for FSL \
QorIQ machines. The poky version should be used for native/nativesdk build."
LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \
file://COPYING.LIB;endline=24;md5=c04def7ae38850e7d3ef548588159913"
# This means QEMU v2.2.0 with FSL specific patches applied
PV = "2.2.0+${SRCPV}"
# FIXME: this recipe requires poky's qemu.inc which assumes version 2.3
# where glx enable config option changed to --enable-opengl. For now we
# restore it, but we should remove the following lines when upgrading
# to qemu 2.3:
PACKAGECONFIG[glx] = "--enable-glx,--disable-glx,mesa"
# remove not supported PACKAGECONFIG by this v2.2.0 based recipe
PACKAGECONFIG[gnutls] = ""
PACKAGECONFIG[gcrypt] = ""
PACKAGECONFIG[nettle] = ""
PACKAGECONFIG[nss] = ""
RDEPENDS_${PN}_append = " gnutls"
SRC_URI = "git://git.freescale.com/ppc/sdk/qemu.git;branch=sdk-v1.9.x"
SRCREV = "8362a298c4feef33c84d7db2d111af18bd29ef86"
# add ptest patches
SRC_URI_append = "\
file://add-ptest-in-makefile.patch \
file://run-ptest \
"
S = "${WORKDIR}/git"
QEMU_TARGETS_qoriq-ppc = "ppc"
QEMU_TARGETS_qoriq-arm = "arm"
PPC_OECONF = '${SDL} --cross-prefix=${TARGET_PREFIX} --disable-werror --disable-vnc --disable-bluez --disable-curl'
EXTRA_OECONF_e5500-64b = "--target-list=ppc64-softmmu ${PPC_OECONF}"
EXTRA_OECONF_e6500-64b = "--target-list=ppc64-softmmu ${PPC_OECONF}"
EXTRA_OECONF_e6500 = "--target-list=ppc64-softmmu ${PPC_OECONF}"
EXTRA_OECONF_e5500 = "--target-list=ppc64-softmmu ${PPC_OECONF}"
EXTRA_OECONF_e500v2 = "--target-list=ppc-softmmu ${PPC_OECONF}"
EXTRA_OECONF_e500mc = "--target-list=ppc-softmmu ${PPC_OECONF}"
PACKAGECONFIG_append = " libusb"
inherit pkgconfig
# Append build host pkg-config paths for native target since the host may provide sdl
do_configure_prepend() {
export PKG_CONFIG=${STAGING_DIR_NATIVE}${bindir_native}/pkg-config
}
do_configure_append () {
if ! grep 'CONFIG_FDT=y' config-host.mak; then
echo "CONFIG_RDMA=y" >> config-host.mak
fi
}
# gets around qemu.inc trying to install powerpc_rom.bin
do_install_prepend() {
touch ${WORKDIR}/powerpc_rom.bin
}
do_install_append() {
rm ${WORKDIR}/powerpc_rom.bin
# Prevent QA warnings about installed ${localstatedir}/run
if [ -d ${D}${localstatedir}/run ]; then rmdir ${D}${localstatedir}/run; fi
}
FILES_${PN} += "${datadir}/qemu/"
INSANE_SKIP_${PN} += "dev-deps"
# FIXME: Avoid WARNING due missing patch for native/nativesdk
BBCLASSEXTEND = ""
COMPATIBLE_MACHINE = "(qoriq)"
|