Changeset 395df52 in mainline for uspace/app/init/init.c


Ignore:
Timestamp:
2017-05-12T19:58:27Z (8 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e48947e
Parents:
de5b708
Message:

Probing for ExFAT, Ext4 and CDFS.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/init/init.c

    rde5b708 r395df52  
    316316        }
    317317       
    318         /* Make sure tmpfs is running. */
     318        /* Make sure file systems are running. */
    319319        if (str_cmp(STRING(RDFMT), "tmpfs") != 0)
    320320                srv_start("/srv/tmpfs");
    321        
     321        if (str_cmp(STRING(RDFMT), "exfat") != 0)
     322                srv_start("/srv/exfat");
     323        if (str_cmp(STRING(RDFMT), "fat") != 0)
     324                srv_start("/srv/fat");
     325        srv_start("/srv/cdfs");
    322326        srv_start("/srv/mfs");
    323327       
Note: See TracChangeset for help on using the changeset viewer.