aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Watson <jarrah@users.sourceforge.net>2004-03-17 17:00:50 +0000
committerGreg Watson <jarrah@users.sourceforge.net>2004-03-17 17:00:50 +0000
commit9a795cfc8dad97f71a41a3ba6a4574a4f2e223cf (patch)
treeb22fab26869c2a33b634c9082224dc930e319194
parent711c8bddfed6eaee3775d71dd903c9c1daa50342 (diff)
*** empty log message ***
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1417 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r--src/stream/fs/vfs.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/src/stream/fs/vfs.c b/src/stream/fs/vfs.c
index 401867caec..41bad1f0e2 100644
--- a/src/stream/fs/vfs.c
+++ b/src/stream/fs/vfs.c
@@ -23,25 +23,12 @@ struct fsys_entry {
};
struct fsys_entry fsys_table[] = {
-# ifdef CONFIG_FS_FAT
+# if CONFIG_FS_FAT == 1
{"fat", fat_mount, fat_read, fat_dir, 0, 0},
# endif
# if CONFIG_FS_EXT2 == 1
{"ext2fs", ext2fs_mount, ext2fs_read, ext2fs_dir, 0, 0},
# endif
-# ifdef CONFIG_FS_MINIX
- {"minix", minix_mount, minix_read, minix_dir, 0, 0},
-# endif
-# ifdef CONFIG_FS_REISERFS
- {"reiserfs", reiserfs_mount, reiserfs_read, reiserfs_dir, 0,
- reiserfs_embed},
-# endif
-# ifdef CONFIG_FS_JFS
- {"jfs", jfs_mount, jfs_read, jfs_dir, 0, jfs_embed},
-# endif
-# ifdef CONFIG_FS_XFS
- {"xfs", xfs_mount, xfs_read, xfs_dir, 0, 0},
-# endif
# if CONFIG_FS_ISO9660 == 1
{"iso9660", iso9660_mount, iso9660_read, iso9660_dir, 0, 0},
# endif