Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3255 → Rev 3256

/trunk/uspace/app/init/init.c
57,7 → 57,7
while (rc < 0) {
rc = mount(fstype, "/", "initrd");
 
switch (rc) {
case EOK:
printf(NAME ": Root filesystem mounted\n");
68,6 → 68,9
case ELIMIT:
printf(NAME ": Unable to mount root filesystem\n");
return false;
case ENOENT:
printf(NAME ": Unknown filesystem type (%s)\n", fstype);
return false;
default:
sleep(5); // FIXME
}