Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sovworks authored and Oleg committed Aug 17, 2017
0 parents commit e285bd6
Show file tree
Hide file tree
Showing 37 changed files with 7,430 additions and 0 deletions.
339 changes: 339 additions & 0 deletions COPYING

Large diffs are not rendered by default.

339 changes: 339 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions README.MD
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




33 changes: 33 additions & 0 deletions app/CMakeLists-fsm.txt
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 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.

Loading

0 comments on commit e285bd6

Please sign in to comment.