├── .gitignore ├── Android.mk ├── COPYING ├── ChangeLog ├── Makefile.am ├── README.md ├── configure.ac ├── dump ├── Makefile.am ├── dumpexfat.8 └── main.c ├── fsck ├── Android.mk ├── Makefile.am ├── exfatfsck.8 └── main.c ├── fuse ├── Android.mk ├── Makefile.am ├── main.c └── mount.exfat-fuse.8 ├── label ├── Makefile.am ├── exfatlabel.8 └── main.c ├── libexfat ├── Android.mk ├── Makefile.am ├── android_config.h ├── byteorder.h ├── cluster.c ├── compiler.h ├── exfat.h ├── exfatfs.h ├── io.c ├── log.c ├── lookup.c ├── mount.c ├── node.c ├── platform.h ├── time.c ├── utf.h └── utils.c └── mkfs ├── Android.mk ├── Makefile.am ├── cbm.c ├── cbm.h ├── fat.c ├── fat.h ├── main.c ├── mkexfat.c ├── mkexfat.h ├── mkexfatfs.8 ├── rootdir.c ├── rootdir.h ├── uct.c ├── uct.h ├── uctc.c ├── uctc.h ├── vbr.c └── vbr.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/.gitignore -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/Android.mk -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/README.md -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/configure.ac -------------------------------------------------------------------------------- /dump/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/dump/Makefile.am -------------------------------------------------------------------------------- /dump/dumpexfat.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/dump/dumpexfat.8 -------------------------------------------------------------------------------- /dump/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/dump/main.c -------------------------------------------------------------------------------- /fsck/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/fsck/Android.mk -------------------------------------------------------------------------------- /fsck/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/fsck/Makefile.am -------------------------------------------------------------------------------- /fsck/exfatfsck.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/fsck/exfatfsck.8 -------------------------------------------------------------------------------- /fsck/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/fsck/main.c -------------------------------------------------------------------------------- /fuse/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/fuse/Android.mk -------------------------------------------------------------------------------- /fuse/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/fuse/Makefile.am -------------------------------------------------------------------------------- /fuse/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/fuse/main.c -------------------------------------------------------------------------------- /fuse/mount.exfat-fuse.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/fuse/mount.exfat-fuse.8 -------------------------------------------------------------------------------- /label/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/label/Makefile.am -------------------------------------------------------------------------------- /label/exfatlabel.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/label/exfatlabel.8 -------------------------------------------------------------------------------- /label/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/label/main.c -------------------------------------------------------------------------------- /libexfat/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/libexfat/Android.mk -------------------------------------------------------------------------------- /libexfat/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/libexfat/Makefile.am -------------------------------------------------------------------------------- /libexfat/android_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/libexfat/android_config.h -------------------------------------------------------------------------------- /libexfat/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/libexfat/byteorder.h -------------------------------------------------------------------------------- /libexfat/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/libexfat/cluster.c -------------------------------------------------------------------------------- /libexfat/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/libexfat/compiler.h -------------------------------------------------------------------------------- /libexfat/exfat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/libexfat/exfat.h -------------------------------------------------------------------------------- /libexfat/exfatfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/libexfat/exfatfs.h -------------------------------------------------------------------------------- /libexfat/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/libexfat/io.c -------------------------------------------------------------------------------- /libexfat/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/libexfat/log.c -------------------------------------------------------------------------------- /libexfat/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/libexfat/lookup.c -------------------------------------------------------------------------------- /libexfat/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/libexfat/mount.c -------------------------------------------------------------------------------- /libexfat/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/libexfat/node.c -------------------------------------------------------------------------------- /libexfat/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/libexfat/platform.h -------------------------------------------------------------------------------- /libexfat/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/libexfat/time.c -------------------------------------------------------------------------------- /libexfat/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/libexfat/utf.h -------------------------------------------------------------------------------- /libexfat/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/libexfat/utils.c -------------------------------------------------------------------------------- /mkfs/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/mkfs/Android.mk -------------------------------------------------------------------------------- /mkfs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/mkfs/Makefile.am -------------------------------------------------------------------------------- /mkfs/cbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/mkfs/cbm.c -------------------------------------------------------------------------------- /mkfs/cbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/mkfs/cbm.h -------------------------------------------------------------------------------- /mkfs/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/mkfs/fat.c -------------------------------------------------------------------------------- /mkfs/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/mkfs/fat.h -------------------------------------------------------------------------------- /mkfs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/mkfs/main.c -------------------------------------------------------------------------------- /mkfs/mkexfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/mkfs/mkexfat.c -------------------------------------------------------------------------------- /mkfs/mkexfat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/mkfs/mkexfat.h -------------------------------------------------------------------------------- /mkfs/mkexfatfs.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/mkfs/mkexfatfs.8 -------------------------------------------------------------------------------- /mkfs/rootdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/mkfs/rootdir.c -------------------------------------------------------------------------------- /mkfs/rootdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/mkfs/rootdir.h -------------------------------------------------------------------------------- /mkfs/uct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/mkfs/uct.c -------------------------------------------------------------------------------- /mkfs/uct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/mkfs/uct.h -------------------------------------------------------------------------------- /mkfs/uctc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/mkfs/uctc.c -------------------------------------------------------------------------------- /mkfs/uctc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/mkfs/uctc.h -------------------------------------------------------------------------------- /mkfs/vbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/mkfs/vbr.c -------------------------------------------------------------------------------- /mkfs/vbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_exfat/HEAD/mkfs/vbr.h --------------------------------------------------------------------------------