This fixes these CVEs: CVE-2026-26103: https://github.com/storaged-project/udisks/security/advisories/GHSA-c75h-phf8-ccjm CVE-2026-26104: https://github.com/storaged-project/udisks/security/advisories/GHSA-fcvx-497g-6xmw Release notes: https://github.com/storaged-project/udisks/releases/tag/udisks-2.11.1 Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Signed-off-by: Julien Olivain <ju.o@free.fr>
55 lines
1.1 KiB
Makefile
55 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# udisks
|
|
#
|
|
################################################################################
|
|
|
|
UDISKS_VERSION = 2.11.1
|
|
UDISKS_SOURCE = udisks-$(UDISKS_VERSION).tar.bz2
|
|
UDISKS_SITE = https://github.com/storaged-project/udisks/releases/download/udisks-$(UDISKS_VERSION)
|
|
UDISKS_LICENSE = GPL-2.0+
|
|
UDISKS_LICENSE_FILES = COPYING
|
|
UDISKS_CPE_ID_VENDOR = freedesktop
|
|
UDISKS_INSTALL_STAGING = YES
|
|
|
|
UDISKS_DEPENDENCIES = \
|
|
host-pkgconf \
|
|
dbus \
|
|
dbus-glib \
|
|
libatasmart \
|
|
libblockdev \
|
|
libgudev \
|
|
parted \
|
|
polkit \
|
|
sg3_utils \
|
|
udev \
|
|
util-linux
|
|
|
|
UDISKS_CONF_OPTS = \
|
|
--disable-acl \
|
|
--disable-bcache \
|
|
--disable-btrfs \
|
|
--disable-introspection \
|
|
--disable-iscsi \
|
|
--disable-lsm \
|
|
--disable-lvm2 \
|
|
--disable-lvmcache \
|
|
--disable-man \
|
|
--disable-rpath \
|
|
--disable-vdo \
|
|
--disable-zram
|
|
|
|
ifeq ($(BR2_PACKAGE_UDISKS_FHS_MEDIA),y)
|
|
UDISKS_CONF_OPTS += --enable-fhs-media
|
|
else
|
|
UDISKS_CONF_OPTS += --disable-fhs-media
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBBLOCKDEV_SMART),y)
|
|
UDISKS_CONF_OPTS += --enable-smart
|
|
else
|
|
UDISKS_CONF_OPTS += --disable-smart
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|