]> git.ozlabs.org Git - yaboot.git/blob - second/fs.c
Prepare for netboot fix(following patch). No Functional change.
[yaboot.git] / second / fs.c
1 /*
2  *  fs.c - Filesystem common definitions
3  *
4  *  Copyright (C) 2001, 2002 Ethan Benson
5  *
6  *  Copyright (C) 1999 Benjamin Herrenschmidt
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21  */
22
23 #include "stdlib.h"
24 #include "fs.h"
25 #include "errors.h"
26
27 extern const struct fs_t        of_filesystem;
28 extern const struct fs_t        of_net_filesystem;
29 extern const struct fs_t        ext2_filesystem;
30 //extern const struct fs_t      iso_filesystem;
31
32 /* Configurable filesystems */
33
34 #ifdef CONFIG_FS_XFS
35 extern const struct fs_t        xfs_filesystem;
36 #endif /* CONFIG_FS_XFS */
37
38 #ifdef CONFIG_FS_REISERFS
39 extern const struct fs_t        reiserfs_filesystem;
40 #endif /* CONFIG_FS_REISERFS */
41
42 /* Filesystem handlers yaboot knows about */
43 static const struct fs_t *block_filesystems[] = {
44      &ext2_filesystem,          /* ext2 */
45 #ifdef CONFIG_FS_XFS
46      &xfs_filesystem,                /* XFS */
47 #endif /* CONFIG_FS_XFS */
48 #ifdef CONFIG_FS_REISERFS
49      &reiserfs_filesystem,              /* reiserfs */
50 #endif /* CONFIG_FS_REISERFS */
51      &of_filesystem,                    /* HFS/HFS+, ISO9660, UDF, UFS */
52      NULL
53 };
54
55 const struct fs_t *fs_of = &of_filesystem;              /* needed by ISO9660 */
56 const struct fs_t *fs_of_netboot = &of_net_filesystem;  /* needed by file.c */
57
58 const struct fs_t *
59 fs_open(struct boot_file_t *file,
60         struct partition_t *part, struct boot_fspec_t *fspec)
61 {
62      const struct fs_t **fs;
63      for (fs = block_filesystems; *fs; fs++)
64           if ((fserrorno = (*fs)->open(file, part, fspec)) != FILE_ERR_BAD_FSYS)
65                break;
66
67      return *fs;
68 }
69
70 /* 
71  * Local variables:
72  * c-file-style: "k&r"
73  * c-basic-offset: 5
74  * End:
75  */