OSDN Git Service

android-x86/external-exfat.git
2015-08-24 relanAdd functions that get and set volume label.
2015-08-24 relanRemove excess error messages.
2015-08-24 relanPass user=xxxx option to FUSE.
2015-08-24 relanAdd mkexfatfs man page.
2015-08-24 relanUnify CLI help syntax.
2015-08-24 relanRemove extra includes in sbdump.
2015-08-24 relanDuplicate errors and warnings to syslog.
2015-08-24 relanVerify VBR checksum on mount.
2015-08-24 relanMove VBR checksum calculation functions to libexfat.
2015-08-24 relanFix FAT size calculation.
2015-08-24 relanAdd mkexfatfs (utility that creates an exFAT file system).
2015-08-24 relanAdd fsync() on unmount.
2015-08-24 relanAdd (senseless) check of close() return code.
2015-08-24 relanUse exfat_print_info() in exfatfsck.
2015-08-24 relanAdd a function that prints basic information about...
2015-08-24 relanInterpret version field as a structure for convenience.
2015-08-24 relanexfat_count_free_clusters() should not modify the argument.
2015-08-24 relanAdd facilities for printing byte values in human-readab...
2015-08-24 relanMove bitmap macros to header to be used by other units.
2015-08-24 relanClean up FS info printing in exfatfsck.
2015-08-24 relanRemove from exfatfsck code that prints low-level info...
2015-08-24 relanAdd a small utility sbdump.
2015-08-24 relanRename exfatck to exfatfsck.
2015-08-24 relanBump version to 0.9.3 and update changelog.
2015-08-24 relanAdd changelog under source control.
2015-08-24 relanReport block size = fragment size = cluster size.
2015-08-24 relanAdd mount.exfat-fuse man page under source control.
2015-08-24 relanDefine __DARWIN_UNIX03=1.
2015-08-24 relanImprove comment about __DARWIN_64_BIT_INO_T.
2015-08-24 relanImprove timestamps resolution from 2 sec to 1 sec.
2015-08-24 relanImplement directories shrinking.
2015-08-24 relanModify entry offset meaning.
2015-08-24 relanAdd assertion.
2015-08-24 relanFix debug message.
2015-08-24 relanBump version to 0.9.2.
2015-08-24 relanImprove allowed file name characters filter.
2015-08-24 relanAdd #include guard for version.h.
2015-08-24 relanUnify error messages.
2015-08-24 relanCheck upcase table and clusters bitmap presence on...
2015-08-24 relanCopy the whole name buffer on renaming.
2015-08-24 relanAlways erase output name buffer in exfat_split().
2015-08-24 relanAdd byte order macros for *BSD and Solaris.
2015-08-24 relanDo not assume that compiler is GCC.
2015-08-24 relanBump version to 0.9.1.
2015-08-24 relanMove version constants into a separate header.
2015-08-24 relanDo not use unions for date and time conversion.
2015-08-24 relanFix byte order macros for Mac OS X.
2015-08-24 relanAdd __packed__ attribute to all on-disk structures...
2015-08-24 relanMake fsck open volume in read-only mode.
2015-08-24 relanAllow clusters bitmap size to exceed minimum value.
2015-08-24 relanParse root directory on mount to catch FS errors earlier.
2015-08-24 relanAdd cluster number endianness conversion when writing...
2015-08-24 relanAdd missing endianness conversion for cluster number.
2015-08-24 relanUse b2o() in exfat_c2o() for consistency.
2015-08-24 relanCreate symlink mount.exfat -> mount.exfat-fuse on install.
2015-08-24 relanCheck FAT count on mount.
2015-08-24 relanCheck FS version on mount.
2015-08-24 relanFix integer overflow in block number calculation code.
2015-08-24 relanAdd fsname option (required for automounting).
2015-08-24 relanImplement dynamic allocation of mount options string.
2015-08-24 relanUpdate superblock format definition.
2015-08-24 relanBump version to 0.9.0.
2015-08-24 relanImplement dynamic calculation of free clusters count.
2015-08-24 relanFix truncate().
2015-08-24 relanFix truncate(): it always returned 0 instead of actual...
2015-08-24 relanPass actual return code from lookup_name() instead...
2015-08-24 relanFix rename(): replace target if it exists.
2015-08-24 relanFix fsck: now it can handle paths or any length.
2015-08-24 relanAdd cluster size check on mount.
2015-08-24 relanDo not write EOD when growing directory.
2015-08-24 relanErase allocated space when growing a file.
2015-08-24 relanRename entries structures for consistency.
2015-08-24 relanCheck file name for characters that are not allowed.
2015-08-24 relanFix Mac OS X support.
2015-08-24 relanMove endianness stuff into a separate header.
2015-08-24 relanAdd file with GPLv3 text.
2015-08-24 relanChange source files headings to meet FSF recommendations.
2015-08-24 relanAdd patchlevel constant.
2015-08-24 relanReturn non-zero code from fsck if errors were found.
2015-08-24 relanImplement rename in FUSE driver.
2015-08-24 relanImplement rename in libexfat.
2015-08-24 relanMove nodes tree manipulation code into separate functions.
2015-08-24 relanBig-endian machines support.
2015-08-24 relanAdd noatime mount option.
2015-08-24 relanCheck that FS is mounted in read-write mode on node...
2015-08-24 relanClean up mtime updating.
2015-08-24 relanAdd function that updates node mtime.
2015-08-24 relanUpdate atime on read.
2015-08-24 relanAdd function that updates node atime.
2015-08-24 relanAdd additional check of cluster index on freeing.
2015-08-24 relanUpdate parent directory mtime when file is removed.
2015-08-24 relanOpen special file in RO mode if FS was mounted with...
2015-08-24 relanImplement uid and gid mount options.
2015-08-24 relanFix options string parsing.
2015-08-24 relanFix format strings warnings.
2015-08-24 relanImplement utimens (file time stamps updating).
2015-08-24 relanUpdate mtime of parent directory when file is created.
2015-08-24 relanUpdate mtime on file truncation.
2015-08-24 relanSet st_blocks field in struct stat.
2015-08-24 relanFix format string.
next