mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
Fixes the following security issue:
CVE-2025-11568: A data corruption vulnerability has been identified in the
luksmeta utility when used with the LUKS1 disk encryption format.
https://github.com/advisories/GHSA-pvmm-7c2r-wmp4
https://github.com/latchset/luksmeta/releases/tag/v10
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
(cherry picked from commit 80764d7208)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
17 lines
556 B
Makefile
17 lines
556 B
Makefile
################################################################################
|
|
#
|
|
# luksmeta
|
|
#
|
|
################################################################################
|
|
|
|
LUKSMETA_VERSION = 10
|
|
LUKSMETA_SOURCE = luksmeta-$(LUKSMETA_VERSION).tar.bz2
|
|
LUKSMETA_SITE = https://github.com/latchset/luksmeta/releases/download/v$(LUKSMETA_VERSION)
|
|
LUKSMETA_LICENSE = LGPL-2.1+
|
|
LUKSMETA_LICENSE_FILES = COPYING
|
|
LUKSMETA_DEPENDENCIES = host-pkgconf cryptsetup
|
|
LUKSMETA_CONF_ENV = ac_cv_prog_A2X=""
|
|
LUKSMETA_INSTALL_STAGING = YES
|
|
|
|
$(eval $(autotools-package))
|