summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarpat Mali <narpat.mali@windriver.com>2023-08-24 14:58:42 +0000
committerSteve Sakoman <steve@sakoman.com>2023-08-30 04:46:35 -1000
commite5f546b58b4a049d2ab701f912b40f3a9282d703 (patch)
tree74a83be61e76029c0ac036986688a74c2d647263
parente19a76951b61ef7403dd64af844a3cfe16fda118 (diff)
downloadpoky-e5f546b58b4a049d2ab701f912b40f3a9282d703.tar.gz
ffmpeg: add CVE_CHECK_IGNORE for CVE-2023-39018
CVE-2023-39018 belongs to ffmpeg-cli-wrapper (Java wrapper around the FFmpeg CLI) and not ffmpeg itself. As per CVE description, it is mentioned as FFmpeg 0.7.0 which is the version for ffmpeg-cli-wrapper and ffmpeg don't have 0.7.0 version at all. Debian & Bugzilla trackers have already marked as NOT-FOR-US/RESOLVED-INVALID. As it won't be affecting the ffmpeg package so, we can ignore the CVE-2023-39018 in ffmpeg recipe. References: https://github.com/bramp/ffmpeg-cli-wrapper https://github.com/FFmpeg/FFmpeg https://security-tracker.debian.org/tracker/CVE-2023-39018 https://bugzilla.suse.com/show_bug.cgi?id=CVE-2023-39018 Upstream master patch: https://git.openembedded.org/openembedded-core/commit/?id=c21ed498b423c13463a4ae0bb475883cc7901847 (From OE-Core rev: e787e364efbba372675081aadd802b43274097f0) Signed-off-by: Narpat Mali <narpat.mali@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r--meta/recipes-multimedia/ffmpeg/ffmpeg_5.0.1.bb6
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/ffmpeg/ffmpeg_5.0.1.bb b/meta/recipes-multimedia/ffmpeg/ffmpeg_5.0.1.bb
index 6ece34fcfd..1295d5cdf1 100644
--- a/meta/recipes-multimedia/ffmpeg/ffmpeg_5.0.1.bb
+++ b/meta/recipes-multimedia/ffmpeg/ffmpeg_5.0.1.bb
@@ -33,6 +33,12 @@ SRC_URI = "https://www.ffmpeg.org/releases/${BP}.tar.xz \
33 33
34SRC_URI[sha256sum] = "ef2efae259ce80a240de48ec85ecb062cecca26e4352ffb3fda562c21a93007b" 34SRC_URI[sha256sum] = "ef2efae259ce80a240de48ec85ecb062cecca26e4352ffb3fda562c21a93007b"
35 35
36# CVE-2023-39018 issue belongs to ffmpeg-cli-wrapper (Java wrapper around the FFmpeg CLI)
37# and not ffmepg itself.
38# https://security-tracker.debian.org/tracker/CVE-2023-39018
39# https://bugzilla.suse.com/show_bug.cgi?id=CVE-2023-39018
40CVE_CHECK_IGNORE += "CVE-2023-39018"
41
36# Build fails when thumb is enabled: https://bugzilla.yoctoproject.org/show_bug.cgi?id=7717 42# Build fails when thumb is enabled: https://bugzilla.yoctoproject.org/show_bug.cgi?id=7717
37ARM_INSTRUCTION_SET:armv4 = "arm" 43ARM_INSTRUCTION_SET:armv4 = "arm"
38ARM_INSTRUCTION_SET:armv5 = "arm" 44ARM_INSTRUCTION_SET:armv5 = "arm"