patch-second_fs_c 855 B

1234567891011121314151617181920212223
  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. -#ifdef CONFIG_FS_REISERFS
  7. -extern const struct fs_t reiserfs_filesystem;
  8. -#endif /* CONFIG_FS_REISERFS */
  9. -
  10. /* Filesystem handlers yaboot knows about */
  11. static const struct fs_t *block_filesystems[] = {
  12. &swap_filesystem, /* swap signature checker */
  13. - &ext2_filesystem, /* ext2 */
  14. #ifdef CONFIG_FS_XFS
  15. &xfs_filesystem, /* XFS */
  16. #endif /* CONFIG_FS_XFS */
  17. -#ifdef CONFIG_FS_REISERFS
  18. - &reiserfs_filesystem, /* reiserfs */
  19. -#endif /* CONFIG_FS_REISERFS */
  20. &of_filesystem, /* HFS/HFS+, ISO9660, UDF, UFS */
  21. NULL
  22. };