external/exfat
Rev. | Time | Author | Message |
---|---|---|---|
c165c4b | 2019-04-29 13:14:26 | Chih-Wei Huang | pie-x86 q-x86 android-x86-9.0-r1 android-x86-9.0-r2 Android: add mount.exfat The vold can use this to mount ... |
1d97b36 | 2019-04-29 13:14:26 | Chih-Wei Huang | Revert "Use fuse_main() instead of lower level functions.... |
ad86ee6 | 2019-04-29 13:14:26 | Chih-Wei Huang | Revert "Split mount options into FUSE- and exFAT-specific... |
7e68bc5 | 2019-04-29 13:14:26 | Chih-Wei Huang | Revert "Wrap platform-specific FUSE options." This rever... |
43a08b9 | 2019-04-29 13:14:26 | Chih-Wei Huang | Android: change libexfat to be a shared library The libr... |
0dfb089 | 2019-04-21 03:32:35 | relan | Define proper feature test macros for glibc. |
75f28b5 | 2019-04-21 03:14:49 | Nathan Hunsperger | Add support for timezone offsets. Timestamps are stored ... |
68ba243 | 2018-12-01 21:39:15 | LongPing.WEI | Android: remove "tags" from Android.bp. Android's build ... |
2ce337d | 2018-09-15 14:03:24 | relan | Bump version to 1.3.0 and update changelog. |
f9c0f1b | 2018-09-15 13:52:46 | relan | Repairing: implement unknown entry type fix. |
Name | Rev. | Time | Author |
---|---|---|---|
android-x86-9.0-r1 | c165c4b | 2019-04-29 13:14:26 | Chih-Wei Huang |
android-x86-9.0-r2 | c165c4b | 2019-04-29 13:14:26 | Chih-Wei Huang |
android-x86-8.1-r1 | 4a093bc | 2017-12-11 01:12:53 | Chih-Wei Huang |
android-x86-8.1-r2 | 4a093bc | 2017-12-11 01:12:53 | Chih-Wei Huang |
android-x86-8.1-r3 | 4a093bc | 2017-12-11 01:12:53 | Chih-Wei Huang |
android-x86-8.1-r4 | 4a093bc | 2017-12-11 01:12:53 | Chih-Wei Huang |
android-x86-8.1-r5 | 4a093bc | 2017-12-11 01:12:53 | Chih-Wei Huang |
android-x86-7.1-r1 | e6a58fa | 2017-12-07 15:34:33 | Chih-Wei Huang |
android-x86-7.1-r2 | e6a58fa | 2017-12-07 15:34:33 | Chih-Wei Huang |
android-x86-7.1-r3 | e6a58fa | 2017-12-07 15:34:33 | Chih-Wei Huang |
android-x86-7.1-r4 | e6a58fa | 2017-12-07 15:34:33 | Chih-Wei Huang |
android-x86-7.1-r5 | e6a58fa | 2017-12-07 15:34:33 | Chih-Wei Huang |
android-x86-6.0-r3 | 49421bf | 2017-03-23 23:52:59 | Chih-Wei Huang |
android-x86-6.0-r1 | 94181f2 | 2016-07-07 04:05:37 | Chih-Wei Huang |
android-x86-6.0-r2 | 94181f2 | 2016-07-07 04:05:37 | Chih-Wei Huang |
Name | Rev. | Time | Author | Message |
---|---|---|---|---|
pie-x86 | c165c4b | 2019-04-29 13:14:26 | Chih-Wei Huang | Android: add mount.exfat T... |
q-x86 | c165c4b | 2019-04-29 13:14:26 | Chih-Wei Huang | Android: add mount.exfat T... |
oreo-x86 | 4a093bc | 2017-12-11 01:12:53 | Chih-Wei Huang | Don't define modules for re... |
nougat-x86 | e6a58fa | 2017-12-07 15:34:33 | Chih-Wei Huang | Merge branch 'master' of gi... |
marshmallow-x86 | 49421bf | 2017-03-23 23:52:59 | Chih-Wei Huang | Merge branch 'master' of gi... |
lollipop-x86 | 96fa796 | 2015-08-21 21:39:31 | Chih-Wei Huang | Merge branch 'master' of ht... |
kitkat-x86 | d70ec0c | 2014-04-17 18:56:54 | Chih-Wei Huang | Link libfuse-lite from ntfs... |
This project aims to provide a full-featured exFAT file system implementation for Unix-like systems. It consists of a FUSE module (fuse-exfat) and a set of utilities (exfat-utils).
Supported operating systems:
Most GNU/Linux distributions already have fuse-exfat and exfat-utils in their repositories, so you can just install and use them. The next chapter describes how to compile them from source.
To build this project on GNU/Linux you need to install the following packages:
On Mac OS X:
On OpenBSD:
Get the source code, change directory and compile:
git clone https://github.com/relan/exfat.git
cd exfat
autoreconf --install
./configure
make
Then install driver and utilities (from root):
make install
You can remove them using this command (from root):
make uninstall
Modern GNU/Linux distributions (with util-linux 2.18 or later) will mount exFAT volumes automatically. Anyway, you can mount manually (from root):
mount.exfat-fuse /dev/spec /mnt/exfat
where /dev/spec is the device file, /mnt/exfat is a mountpoint.
If you have any questions, issues, suggestions, bug reports, etc. please create an issue. Pull requests are also welcome!