mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-02 21:48:20 +03:00
squashfs: Add xattr support
Adding extended attribute support for the squashfs tools when the attr package is selected. This is needed for SELinux support. Signed-off-by: Clayton Shotwell <clayton.shotwell@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
d42f0f96aa
commit
a409d76e83
@@ -10,8 +10,12 @@ SQUASHFS_SITE = http://downloads.sourceforge.net/project/squashfs/squashfs/squas
|
||||
SQUASHFS_LICENSE = GPLv2+
|
||||
SQUASHFS_LICENSE_FILES = COPYING
|
||||
|
||||
# no libattr in BR
|
||||
SQUASHFS_MAKE_ARGS = XATTR_SUPPORT=0
|
||||
ifeq ($(BR2_PACKAGE_ATTR),y)
|
||||
SQUASHFS_DEPENDENCIES += attr
|
||||
SQUASHFS_MAKE_ARGS += XATTR_SUPPORT=1
|
||||
else
|
||||
SQUASHFS_MAKE_ARGS += XATTR_SUPPORT=0
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_SQUASHFS_LZ4),y)
|
||||
SQUASHFS_DEPENDENCIES += lz4
|
||||
|
||||
Reference in New Issue
Block a user