diff options
author | Alex Auvolat <alex.auvolat@ens.fr> | 2015-02-24 11:06:48 +0100 |
---|---|---|
committer | Alex Auvolat <alex.auvolat@ens.fr> | 2015-02-24 11:06:48 +0100 |
commit | 91c5969cdddf2241418082998e76bdbb836ed03e (patch) | |
tree | a4597e44f36f6fc3406e0dd2671d265bce3a7d53 /src/apps/init/main.c | |
parent | 9ba449a6e5f9db20923fb9802eefe0f090ba5fff (diff) | |
download | kogata-91c5969cdddf2241418082998e76bdbb836ed03e.tar.gz kogata-91c5969cdddf2241418082998e76bdbb836ed03e.zip |
PCI enumeration ; rename dev:/ to io:/
Diffstat (limited to 'src/apps/init/main.c')
-rw-r--r-- | src/apps/init/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/apps/init/main.c b/src/apps/init/main.c index 18a28f6..368322c 100644 --- a/src/apps/init/main.c +++ b/src/apps/init/main.c @@ -9,15 +9,15 @@ int main(int argc, char **argv) { dbg_print("Hello, world! from user process.\n"); - fd_t f = open("dev:/", FM_READDIR); + fd_t f = open("io:/", FM_READDIR); dbg_printf("openned /: %d\n", f); dirent_t x; while (readdir(f, &x)) { dbg_printf("- '%s' %p %d\n", x.name, x.st.type, x.st.size); if (x.st.type == FT_REGULAR) { char buf[256]; - strcpy(buf, "dev:/"); - strcpy(buf+5, x.name); + strcpy(buf, "io:/"); + strcpy(buf+4, x.name); dbg_printf("trying to open %s...\n", buf); fd_t ff = open(buf, FM_READ); if (ff != 0) { |