mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
This fixes the following vulnerability:
- CVE-2025-53644:
OpenCV is an Open Source Computer Vision Library. Versions prior to
4.12.0 have an uninitialized pointer variable on stack that may lead
to arbitrary heap buffer write when reading crafted JPEG images.
Version 4.12.0 fixes the vulnerability.
https://www.cve.org/CVERecord?id=CVE-2025-53644
Signed-off-by: Titouan Christophe <titouan.christophe@mind.be>
Signed-off-by: Julien Olivain <ju.o@free.fr>
(cherry picked from commit 9c365fee97)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
18 lines
649 B
Makefile
18 lines
649 B
Makefile
################################################################################
|
|
#
|
|
# opencv4-contrib
|
|
#
|
|
################################################################################
|
|
|
|
# When updating the version, please also update opencv4
|
|
OPENCV4_CONTRIB_VERSION = 4.12.0
|
|
OPENCV4_CONTRIB_SITE = $(call github,opencv,opencv_contrib,$(OPENCV4_CONTRIB_VERSION))
|
|
OPENCV4_CONTRIB_INSTALL_TARGET = NO
|
|
OPENCV4_CONTRIB_LICENSE = Apache-2.0
|
|
OPENCV4_CONTRIB_LICENSE_FILES = LICENSE
|
|
|
|
# Modules provided by opencv4-contrib are built as part of the opencv4 package,
|
|
# so opencv4-contrib only serves for downloading the source code.
|
|
|
|
$(eval $(generic-package))
|