diff options
author | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2020-07-18 13:53:24 -0500 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2020-08-31 01:15:41 +0100 |
commit | d3d40cd6a41c2c5a6bd1173ad4471d40a2d3e515 (patch) | |
tree | 682ef82960156804fc4c06251398bc940032d180 /tools | |
parent | aee58d52ce616fc1d74c15fec01e751e9c2c1dd5 (diff) | |
download | upstream-d3d40cd6a41c2c5a6bd1173ad4471d40a2d3e515.tar.gz upstream-d3d40cd6a41c2c5a6bd1173ad4471d40a2d3e515.tar.bz2 upstream-d3d40cd6a41c2c5a6bd1173ad4471d40a2d3e515.zip |
tools/squashfskit4: add xattr support to mksquashfs for SELinux
SELinux uses extended attributes to store SELinux security contexts.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
[rebase, add commit message]
Signed-off-by: W. Michael Petullo <mike@flyn.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/squashfskit4/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/squashfskit4/Makefile b/tools/squashfskit4/Makefile index 396a7c0edc..9ed10ecef9 100644 --- a/tools/squashfskit4/Makefile +++ b/tools/squashfskit4/Makefile @@ -22,7 +22,7 @@ define Host/Compile $(MAKE) -C $(HOST_BUILD_DIR)/squashfs-tools \ XZ_SUPPORT=1 \ LZMA_XZ_SUPPORT=1 \ - XATTR_SUPPORT= \ + XATTR_SUPPORT=1 \ LZMA_LIB="$(STAGING_DIR_HOST)/lib/liblzma.a" \ EXTRA_CFLAGS="-I$(STAGING_DIR_HOST)/include" \ mksquashfs unsquashfs |