[PATCH] Add VMUFAT file system support (v2)

March 24th, 2012 - 12:00 pm ET by Adrian McMenamin | Report spam
Sega Dreamcasts come with a "visual memory unit" (VMU) with 128KB of
flash memory in a FAT type filesystem. This patch adds support for
this filesystem to the Linux kernel.

Signed-off-by: Adrian McMenamin <adrianmcmenamin@gmail.com>


Documentation/filesystems/vmufat.txt | 83 ++++
fs/Kconfig | 1 +
fs/Makefile | 1 +
fs/vmufat/Kconfig | 14 +
fs/vmufat/Makefile | 7 +
fs/vmufat/inode.c | 903 ++++++++++++++++++++++++++++++++++
fs/vmufat/super.c | 522 ++++++++++++++++++++
fs/vmufat/vmufat.h | 115 +++++
include/linux/magic.h | 1 +
9 files changed, 1647 insertions(+), 0 deletions(-)
create mode 100644 Documentation/filesystems/vmufat.txt
create mode 100644 fs/vmufat/Kconfig
create mode 100644 fs/vmufat/Makefile
create mode 100644 fs/vmufat/inode.c
create mode 100644 fs/vmufat/super.c
create mode 100644 fs/vmufat/vmufat.h


Patch may be pulled/reviewed at:

https://github.com/mcmenaminadrian/...5e5123c1b1
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
email Follow the discussionReplies 1 replyReplies Make a reply

Replies

#1 Adrian McMenamin
April 12th, 2012 - 05:00 pm ET | Report spam
On 24 March 2012 16:55, Adrian McMenamin wrote:
Sega Dreamcasts come with a "visual memory unit" (VMU) with 128KB of
flash memory in a FAT type filesystem. This patch adds support for
this filesystem to the Linux kernel.

Signed-off-by: Adrian McMenamin





Thought I should give this a bump as nobody has responded. Any
comments gratefully received.

Adrian
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

Similar topics