Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 990e194e authored by OGAWA Hirofumi's avatar OGAWA Hirofumi Committed by Linus Torvalds
Browse files

fat: move fs/vfat/* and fs/msdos/* to fs/fat



This just moves those files, but change link order from MSDOS, VFAT to
VFAT, MSDOS.

Signed-off-by: default avatarOGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 8986ab59
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -81,8 +81,6 @@ obj-$(CONFIG_HUGETLBFS) += hugetlbfs/
obj-$(CONFIG_CODA_FS)		+= coda/
obj-$(CONFIG_MINIX_FS)		+= minix/
obj-$(CONFIG_FAT_FS)		+= fat/
obj-$(CONFIG_MSDOS_FS)		+= msdos/
obj-$(CONFIG_VFAT_FS)		+= vfat/
obj-$(CONFIG_BFS_FS)		+= bfs/
obj-$(CONFIG_ISO9660_FS)	+= isofs/
obj-$(CONFIG_HFSPLUS_FS)	+= hfsplus/ # Before hfs to find wrapped HFS+
+5 −1
Original line number Diff line number Diff line
@@ -3,5 +3,9 @@
#

obj-$(CONFIG_FAT_FS) += fat.o
obj-$(CONFIG_VFAT_FS) += vfat.o
obj-$(CONFIG_MSDOS_FS) += msdos.o

fat-objs := cache.o dir.o fatent.o file.o inode.o misc.o
fat-y := cache.o dir.o fatent.o file.o inode.o misc.o
vfat-y := namei_vfat.o
msdos-y := namei_msdos.o
+0 −0

File moved.

+0 −0

File moved.

fs/msdos/Makefile

deleted100644 → 0
+0 −7
Original line number Diff line number Diff line
#
# Makefile for the Linux msdos filesystem routines.
#

obj-$(CONFIG_MSDOS_FS) += msdos.o

msdos-y := namei.o
Loading