Skip to content

Commit

Permalink
fs: add miscellaneous FS
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth R. Crudup authored and xcstacy committed Apr 15, 2013
1 parent 560f61d commit 33072ea
Show file tree
Hide file tree
Showing 25 changed files with 11,812 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fs/Makefile
Expand Up @@ -127,3 +127,5 @@ obj-$(CONFIG_PSTORE) += pstore/

# Patched by YAFFS
obj-$(CONFIG_YAFFS_FS) += yaffs2/

obj-y += exfat/
22 changes: 22 additions & 0 deletions fs/exfat/ChangeLog.txt
@@ -0,0 +1,22 @@
Version 1.1.0p0 (2012-02-10)
==========
* Initial version


Version 1.1.0p1 (2012-04-02)
==========
* mount option���� allow_utime �� errors �ɼ� �߰�
* Kernel version 2.6.36 �̻󿡼� �߻��ϴ� exfat_setattr() bug ����
* Filesystem ������ lock ������ fs_info���� fs_struct �ڷᱸ���� �̵�
* fs_error() �Լ� �߰� ����
mount option�� ���� fatal error ó��


Version 1.1.0p2 (2012-06-07)
==========
* Incorrect filename bug ����
exfat_get_uni_name_from_ext_entry() function���� file name dentry��
���� index�� 1���� 2�� ����
* Buffer overrun bug ����
my_itoa() function���� buf[10] array�� ������ index�� 0~9������,
���������� index 10�� ����ϰ� �־ �̸� �����ϴ� �ڵ带 �߰���.
17 changes: 17 additions & 0 deletions fs/exfat/Makefile
@@ -0,0 +1,17 @@
#
# Makefile for the linux exfat-filesystem routines.
#

obj-m += exfat_core.o exfat_fs.o

exfat_fs-y := exfat_super.o

exfat_core-y := exfat.o exfat_api.o exfat_blkdev.o exfat_cache.o \
exfat_data.o exfat_global.o exfat_nls.o exfat_oal.o exfat_upcase.o

all:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules

clean:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean

0 comments on commit 33072ea

Please sign in to comment.