Subversion Repositories HelenOS

Rev

Rev 3403 | Rev 3674 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3403 Rev 3448
Line 106... Line 106...
106
    if (!mount_fs("tmpfs") && !mount_fs("fat")) {
106
    if (!mount_fs("tmpfs") && !mount_fs("fat")) {
107
        printf(NAME ": Exiting\n");
107
        printf(NAME ": Exiting\n");
108
        return -1;
108
        return -1;
109
    }
109
    }
110
   
110
   
111
    buf = malloc(BUF_SIZE);
-
 
112
   
-
 
113
    // FIXME: spawn("/sbin/pci");
111
    // FIXME: spawn("/srv/pci");
114
    spawn("/sbin/fb");
112
    spawn("/srv/fb");
115
    spawn("/sbin/kbd");
113
    spawn("/srv/kbd");
116
    spawn("/sbin/console");
114
    spawn("/srv/console");
117
   
115
   
118
    console_wait();
116
    console_wait();
119
    version_print();
117
    version_print();
120
   
118
   
121
    spawn("/sbin/bdsh");
119
    spawn("/app/bdsh");
122
   
120
   
123
    free(buf);
121
    free(buf);
124
    return 0;
122
    return 0;
125
}
123
}
126
 
124