mirror of
https://git.yoctoproject.org/poky
synced 2026-07-27 19:37:10 +00:00
f7b041121e
Fixes NULL pointer deref in sosendto(). Reference: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-3640 Upstream patch: http://git.qemu.org/?p=qemu.git;a=commit; h=9a72433843d912a45046959b1953861211d1838d (From OE-Core rev: f63a4f706269b4cd82c56d92f37c881de824d8bc) Signed-off-by: Sona Sarmadi <sona.sarmadi@enea.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
33 lines
1.3 KiB
BlitzBasic
33 lines
1.3 KiB
BlitzBasic
require qemu.inc
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \
|
|
file://COPYING.LIB;endline=24;md5=c04def7ae38850e7d3ef548588159913"
|
|
|
|
SRC_URI += "file://configure-fix-Darwin-target-detection.patch \
|
|
file://qemu-enlarge-env-entry-size.patch \
|
|
file://Qemu-Arm-versatilepb-Add-memory-size-checking.patch \
|
|
file://0001-Back-porting-security-fix-CVE-2014-5388.patch \
|
|
file://qemu-CVE-2015-3456.patch \
|
|
file://CVE-2014-7840.patch \
|
|
file://vnc-CVE-2014-7815.patch \
|
|
file://slirp-CVE-2014-3640.patch \
|
|
"
|
|
SRC_URI_prepend = "http://wiki.qemu-project.org/download/${BP}.tar.bz2"
|
|
SRC_URI[md5sum] = "6726977292b448cbc7f89998fac6983b"
|
|
SRC_URI[sha256sum] = "397e23184f4bf613589a8fe0c6542461dc2afdf17ed337e97e6fd2f31e8f8802"
|
|
|
|
COMPATIBLE_HOST_class-target_mips64 = "null"
|
|
|
|
do_sanitize_sources() {
|
|
# These .git files point to a nonexistent path "../.git/modules" and will confuse git
|
|
# if it tries to recurse into those directories.
|
|
rm -f ${S}/dtc/.git ${S}/pixman/.git
|
|
}
|
|
|
|
addtask sanitize_sources after do_unpack before do_patch
|
|
|
|
do_install_append() {
|
|
# Prevent QA warnings about installed ${localstatedir}/run
|
|
if [ -d ${D}${localstatedir}/run ]; then rmdir ${D}${localstatedir}/run; fi
|
|
}
|