diff options
author | 2020-10-08 11:08:36 +0200 | |
---|---|---|
committer | 2020-10-08 21:48:03 +0200 | |
commit | c1e268670be761e3cae7bf0dd9e284a52401e37d (patch) | |
tree | c4e20dbe81906f0ea642cc1954647cbba54c76aa /fs | |
parent | c3902e6e2e8ff5fe6a516b060819c60951c406f4 (diff) | |
download | buildroot-c1e268670be761e3cae7bf0dd9e284a52401e37d.tar.gz buildroot-c1e268670be761e3cae7bf0dd9e284a52401e37d.tar.bz2 |
fs/jffs2: copy xattrs
This patch sets the --with-xattr option when generating an image with
mkfs.jffs2, so that SELinux security contexts and other extended
attributes will be kept and available in jffs2 images.
Signed-off-by: Antoine Tenart <antoine.tenart@bootlin.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/jffs2/jffs2.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jffs2/jffs2.mk b/fs/jffs2/jffs2.mk index 2adbc2320e..0096af2ea9 100644 --- a/fs/jffs2/jffs2.mk +++ b/fs/jffs2/jffs2.mk @@ -4,7 +4,7 @@ # ################################################################################ -JFFS2_OPTS = -e $(BR2_TARGET_ROOTFS_JFFS2_EBSIZE) +JFFS2_OPTS = -e $(BR2_TARGET_ROOTFS_JFFS2_EBSIZE) --with-xattr SUMTOOL_OPTS = -e $(BR2_TARGET_ROOTFS_JFFS2_EBSIZE) ifeq ($(BR2_TARGET_ROOTFS_JFFS2_PAD),y) |