diff options
author | Ethan Yonker <dees_troy@teamw.in> | 2017-02-03 21:26:15 +0100 |
---|---|---|
committer | Ethan Yonker <dees_troy@teamw.in> | 2017-02-17 04:50:05 +0100 |
commit | 8d039f7bd84ce8cbbbe9ba5677f5a353d6224b66 (patch) | |
tree | 9cc3826e4e5e84f5ed7046eb7f804221bf0ab6f2 /twrpTar.cpp | |
parent | Partition: Remove unused has_data_media variable (diff) | |
download | android_bootable_recovery-8d039f7bd84ce8cbbbe9ba5677f5a353d6224b66.tar android_bootable_recovery-8d039f7bd84ce8cbbbe9ba5677f5a353d6224b66.tar.gz android_bootable_recovery-8d039f7bd84ce8cbbbe9ba5677f5a353d6224b66.tar.bz2 android_bootable_recovery-8d039f7bd84ce8cbbbe9ba5677f5a353d6224b66.tar.lz android_bootable_recovery-8d039f7bd84ce8cbbbe9ba5677f5a353d6224b66.tar.xz android_bootable_recovery-8d039f7bd84ce8cbbbe9ba5677f5a353d6224b66.tar.zst android_bootable_recovery-8d039f7bd84ce8cbbbe9ba5677f5a353d6224b66.zip |
Diffstat (limited to '')
-rw-r--r-- | twrpTar.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/twrpTar.cpp b/twrpTar.cpp index fa836fd51..39117331f 100644 --- a/twrpTar.cpp +++ b/twrpTar.cpp @@ -55,9 +55,9 @@ extern "C" { #ifdef TW_INCLUDE_FBE #include "crypto/ext4crypt/ext4crypt_tar.h" -#define TWTAR_FLAGS TAR_GNU | TAR_STORE_SELINUX | TAR_STORE_POSIX_CAP |TAR_STORE_EXT4_POL +#define TWTAR_FLAGS TAR_GNU | TAR_STORE_SELINUX | TAR_STORE_POSIX_CAP | TAR_STORE_ANDROID_USER_XATTR |TAR_STORE_EXT4_POL #else -#define TWTAR_FLAGS TAR_GNU | TAR_STORE_SELINUX | TAR_STORE_POSIX_CAP +#define TWTAR_FLAGS TAR_GNU | TAR_STORE_SELINUX | TAR_STORE_POSIX_CAP | TAR_STORE_ANDROID_USER_XATTR #endif using namespace std; |