mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
990e194e69
This just moves those files, but change link order from MSDOS, VFAT to VFAT, MSDOS. Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
12 lines
253 B
Makefile
12 lines
253 B
Makefile
#
|
|
# Makefile for the Linux fat filesystem support.
|
|
#
|
|
|
|
obj-$(CONFIG_FAT_FS) += fat.o
|
|
obj-$(CONFIG_VFAT_FS) += vfat.o
|
|
obj-$(CONFIG_MSDOS_FS) += msdos.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
|