banana-pro: bring it in shape
[openadk.git] / package / yaboot / patches / patch-second_fs_c
blob1bd67b95d150a23a19c78a908f835bbf95674d14
1 --- yaboot-1.3.17.orig/second/fs.c      2011-10-18 06:11:10.000000000 +0200
2 +++ yaboot-1.3.17/second/fs.c   2018-06-08 23:14:20.000000000 +0200
3 @@ -36,20 +36,12 @@ extern const struct fs_t        swap_fil
4  extern const struct fs_t        xfs_filesystem;
5  #endif /* CONFIG_FS_XFS */
6  
7 -#ifdef CONFIG_FS_REISERFS
8 -extern const struct fs_t        reiserfs_filesystem;
9 -#endif /* CONFIG_FS_REISERFS */
11  /* Filesystem handlers yaboot knows about */
12  static const struct fs_t *block_filesystems[] = {
13       &swap_filesystem,         /* swap signature checker */
14 -     &ext2_filesystem,         /* ext2 */
15  #ifdef CONFIG_FS_XFS
16       &xfs_filesystem,                /* XFS */
17  #endif /* CONFIG_FS_XFS */
18 -#ifdef CONFIG_FS_REISERFS
19 -     &reiserfs_filesystem,             /* reiserfs */
20 -#endif /* CONFIG_FS_REISERFS */
21       &of_filesystem,                   /* HFS/HFS+, ISO9660, UDF, UFS */
22       NULL
23  };