]> code.delx.au - refind/blob - filesystems/test/lsroot.c
Previous commit broke loading of EFI drivers with SB active; fix it.
[refind] / filesystems / test / lsroot.c
1 /**
2 * \file lsroot.c
3 * Example program for the POSIX user space environment.
4 */
5
6 /*-
7 * Copyright (c) 2006 Christoph Pfisterer
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are
11 * met:
12 *
13 * * Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 *
16 * * Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the
19 * distribution.
20 *
21 * * Neither the name of Christoph Pfisterer nor the names of the
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 */
37
38 #include "fsw_posix.h"
39
40
41 extern struct fsw_fstype_table FSW_FSTYPE_TABLE_NAME(reiserfs);
42 extern struct fsw_fstype_table FSW_FSTYPE_TABLE_NAME(iso9660);
43 extern struct fsw_fstype_table FSW_FSTYPE_TABLE_NAME(hfs);
44 extern struct fsw_fstype_table FSW_FSTYPE_TABLE_NAME(ext2);
45 extern struct fsw_fstype_table FSW_FSTYPE_TABLE_NAME(ext4);
46
47 int main(int argc, char **argv)
48 {
49 struct fsw_posix_volume *vol;
50 struct fsw_posix_dir *dir;
51 struct dirent *dent;
52
53 if (argc != 2) {
54 fprintf(stderr, "Usage: lsroot <file/device>\n");
55 return 1;
56 }
57
58 //vol = fsw_posix_mount(argv[1], &FSW_FSTYPE_TABLE_NAME(ext2));
59 //vol = fsw_posix_mount(argv[1], &FSW_FSTYPE_TABLE_NAME(reiserfs));
60 vol = fsw_posix_mount(argv[1], &FSW_FSTYPE_TABLE_NAME(FSTYPE));
61 if (vol == NULL) {
62 fprintf(stderr, "Mounting failed.\n");
63 return 1;
64 }
65 //dir = fsw_posix_opendir(vol, "/drivers/net/");
66 dir = fsw_posix_opendir(vol, "/");
67 if (dir == NULL) {
68 fprintf(stderr, "opendir call failed.\n");
69 return 1;
70 }
71 while ((dent = fsw_posix_readdir(dir)) != NULL) {
72 fprintf(stderr, "- %s\n", dent->d_name);
73 }
74 fsw_posix_closedir(dir);
75 fsw_posix_unmount(vol);
76
77 return 0;
78 }
79
80 // EOF