├── LICENSE ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── customize.sh ├── module.prop └── system └── bin ├── badblocks ├── base_device ├── chattr ├── debugfs ├── dumpe2fs ├── e2freefrag ├── e2fsck ├── e2fuzz ├── e2image ├── e2initrd_helper ├── e2undo ├── filefrag ├── fsck ├── logsave ├── lsattr ├── mke2fs ├── mklost+found ├── resize2fs └── tune2fs /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/LICENSE -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/README.md -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/customize.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/module.prop -------------------------------------------------------------------------------- /system/bin/badblocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/system/bin/badblocks -------------------------------------------------------------------------------- /system/bin/base_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/system/bin/base_device -------------------------------------------------------------------------------- /system/bin/chattr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/system/bin/chattr -------------------------------------------------------------------------------- /system/bin/debugfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/system/bin/debugfs -------------------------------------------------------------------------------- /system/bin/dumpe2fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/system/bin/dumpe2fs -------------------------------------------------------------------------------- /system/bin/e2freefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/system/bin/e2freefrag -------------------------------------------------------------------------------- /system/bin/e2fsck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/system/bin/e2fsck -------------------------------------------------------------------------------- /system/bin/e2fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/system/bin/e2fuzz -------------------------------------------------------------------------------- /system/bin/e2image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/system/bin/e2image -------------------------------------------------------------------------------- /system/bin/e2initrd_helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/system/bin/e2initrd_helper -------------------------------------------------------------------------------- /system/bin/e2undo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/system/bin/e2undo -------------------------------------------------------------------------------- /system/bin/filefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/system/bin/filefrag -------------------------------------------------------------------------------- /system/bin/fsck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/system/bin/fsck -------------------------------------------------------------------------------- /system/bin/logsave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/system/bin/logsave -------------------------------------------------------------------------------- /system/bin/lsattr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/system/bin/lsattr -------------------------------------------------------------------------------- /system/bin/mke2fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/system/bin/mke2fs -------------------------------------------------------------------------------- /system/bin/mklost+found: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/system/bin/mklost+found -------------------------------------------------------------------------------- /system/bin/resize2fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/system/bin/resize2fs -------------------------------------------------------------------------------- /system/bin/tune2fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FerryAr/e2fsprogs-arm/HEAD/system/bin/tune2fs --------------------------------------------------------------------------------