-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit e285bd6
Showing
37 changed files
with
7,430 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
## About | ||
|
||
edsexfat is a file system plugin for EDS which allows to open a container with exFAT file system in EDS. It is based on [fuse-exfat](https://github.com/relan/exfat). | ||
|
||
## License | ||
|
||
GPLv2 | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
|
||
add_library( edsexfat | ||
SHARED | ||
src/main/native/util/jniutil.c | ||
src/fsm/native/edsexfat/raio.c | ||
src/fsm/native/edsexfat/edsexfat.c | ||
src/fsm/native/edsexfat/libexfat/cluster.c | ||
src/fsm/native/edsexfat/libexfat/io.c | ||
src/fsm/native/edsexfat/libexfat/log.c | ||
src/fsm/native/edsexfat/libexfat/lookup.c | ||
src/fsm/native/edsexfat/libexfat/mount.c | ||
src/fsm/native/edsexfat/libexfat/node.c | ||
src/fsm/native/edsexfat/libexfat/time.c | ||
src/fsm/native/edsexfat/libexfat/utf.c | ||
src/fsm/native/edsexfat/libexfat/utils.c | ||
src/fsm/native/edsexfat/mkfs/cbm.c | ||
src/fsm/native/edsexfat/mkfs/fat.c | ||
src/fsm/native/edsexfat/mkfs/main.c | ||
src/fsm/native/edsexfat/mkfs/mkexfat.c | ||
src/fsm/native/edsexfat/mkfs/rootdir.c | ||
src/fsm/native/edsexfat/mkfs/uct.c | ||
src/fsm/native/edsexfat/mkfs/uctc.c | ||
src/fsm/native/edsexfat/mkfs/vbr.c | ||
) | ||
|
||
target_compile_definitions( edsexfat | ||
PRIVATE _FILE_OFFSET_BITS=64) | ||
|
||
target_include_directories( edsexfat | ||
PRIVATE src/fsm/native/edsexfat/libexfat/ ) | ||
|
||
target_link_libraries( edsexfat | ||
${log-lib} ) |
156 changes: 156 additions & 0 deletions
156
app/src/fsm/native/edsexfat/com_sovworks_eds_fs_exfat_ExFat.h
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.