Changeset 8fefd8b in mainline for uspace/app/init/init.c


Ignore:
Timestamp:
2018-10-11T14:16:33Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0e8c158
Parents:
9286475
Message:

Preserve srv directory structure

File:
1 edited

Legend:

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

    r9286475 r8fefd8b  
    6060#define TMPFS_MOUNT_POINT  "/tmp"
    6161
    62 #define SRV_CONSOLE  "/srv/console"
     62#define SRV_CONSOLE  "/srv/hid/console"
    6363#define APP_GETTERM  "/app/getterm"
    6464
    65 #define SRV_COMPOSITOR  "/srv/compositor"
     65#define SRV_COMPOSITOR  "/srv/hid/compositor"
    6666
    6767#define HID_INPUT              "hid/input"
     
    413413        /* Make sure file systems are running. */
    414414        if (str_cmp(STRING(RDFMT), "tmpfs") != 0)
    415                 srv_start("/srv/tmpfs");
     415                srv_start("/srv/fs/tmpfs");
    416416        if (str_cmp(STRING(RDFMT), "exfat") != 0)
    417                 srv_start("/srv/exfat");
     417                srv_start("/srv/fs/exfat");
    418418        if (str_cmp(STRING(RDFMT), "fat") != 0)
    419                 srv_start("/srv/fat");
    420         srv_start("/srv/cdfs");
    421         srv_start("/srv/mfs");
     419                srv_start("/srv/fs/fat");
     420        srv_start("/srv/fs/cdfs");
     421        srv_start("/srv/fs/mfs");
    422422
    423423        srv_start("/srv/klog");
    424         srv_start("/srv/locfs");
     424        srv_start("/srv/fs/locfs");
    425425        srv_start("/srv/taskmon");
    426426
     
    433433
    434434        srv_start("/srv/devman");
    435         srv_start("/srv/s3c24xx_uart");
    436         srv_start("/srv/s3c24xx_ts");
    437 
    438         srv_start("/srv/vbd");
     435        srv_start("/srv/hid/s3c24xx_uart");
     436        srv_start("/srv/hid/s3c24xx_ts");
     437
     438        srv_start("/srv/bd/vbd");
    439439        srv_start("/srv/volsrv");
    440440
    441         srv_start("/srv/loopip");
    442         srv_start("/srv/ethip");
    443         srv_start("/srv/inetsrv");
    444         srv_start("/srv/tcp");
    445         srv_start("/srv/udp");
    446         srv_start("/srv/dnsrsrv");
    447         srv_start("/srv/dhcp");
    448         srv_start("/srv/nconfsrv");
     441        srv_start("/srv/net/loopip");
     442        srv_start("/srv/net/ethip");
     443        srv_start("/srv/net/inetsrv");
     444        srv_start("/srv/net/tcp");
     445        srv_start("/srv/net/udp");
     446        srv_start("/srv/net/dnsrsrv");
     447        srv_start("/srv/net/dhcp");
     448        srv_start("/srv/net/nconfsrv");
    449449
    450450        srv_start("/srv/clipboard");
    451         srv_start("/srv/remcons");
    452 
    453         srv_start("/srv/input", HID_INPUT);
    454         srv_start("/srv/output", HID_OUTPUT);
    455         srv_start("/srv/hound");
     451        srv_start("/srv/hid/remcons");
     452
     453        srv_start("/srv/hid/input", HID_INPUT);
     454        srv_start("/srv/hid/output", HID_OUTPUT);
     455        srv_start("/srv/audio/hound");
    456456
    457457        init_sysvol();
Note: See TracChangeset for help on using the changeset viewer.