- Timestamp:
- 2018-10-11T14:16:33Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0e8c158
- Parents:
- 9286475
- Location:
- uspace
- Files:
-
- 3 edited
-
app/init/init.c (modified) (3 diffs)
-
app/sysinst/rdimg.c (modified) (1 diff)
-
srv/hw/char/s3c24xx_uart/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/init/init.c
r9286475 r8fefd8b 60 60 #define TMPFS_MOUNT_POINT "/tmp" 61 61 62 #define SRV_CONSOLE "/srv/ console"62 #define SRV_CONSOLE "/srv/hid/console" 63 63 #define APP_GETTERM "/app/getterm" 64 64 65 #define SRV_COMPOSITOR "/srv/ compositor"65 #define SRV_COMPOSITOR "/srv/hid/compositor" 66 66 67 67 #define HID_INPUT "hid/input" … … 413 413 /* Make sure file systems are running. */ 414 414 if (str_cmp(STRING(RDFMT), "tmpfs") != 0) 415 srv_start("/srv/ tmpfs");415 srv_start("/srv/fs/tmpfs"); 416 416 if (str_cmp(STRING(RDFMT), "exfat") != 0) 417 srv_start("/srv/ exfat");417 srv_start("/srv/fs/exfat"); 418 418 if (str_cmp(STRING(RDFMT), "fat") != 0) 419 srv_start("/srv/f at");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"); 422 422 423 423 srv_start("/srv/klog"); 424 srv_start("/srv/ locfs");424 srv_start("/srv/fs/locfs"); 425 425 srv_start("/srv/taskmon"); 426 426 … … 433 433 434 434 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"); 439 439 srv_start("/srv/volsrv"); 440 440 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/n confsrv");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"); 449 449 450 450 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"); 456 456 457 457 init_sysvol(); -
uspace/app/sysinst/rdimg.c
r9286475 r8fefd8b 43 43 #include "rdimg.h" 44 44 45 #define FILE_BD "/srv/ file_bd"45 #define FILE_BD "/srv/bd/file_bd" 46 46 #define RD_SVC "bd/iird" 47 47 #define RD_LABEL "HelenOS-rd" -
uspace/srv/hw/char/s3c24xx_uart/Makefile
r9286475 r8fefd8b 30 30 USPACE_PREFIX = ../../../.. 31 31 32 # Need to use short name because of FAT 8+3 limit 33 BINARY = s3c24ser 32 BINARY = s3c24xx_uart 34 33 35 34 SOURCES = \
Note:
See TracChangeset
for help on using the changeset viewer.
