Changeset f1380b7 in mainline for contrib/arch/HelenOS.adl
- Timestamp:
- 2018-03-02T20:21:57Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 34e1206
- Parents:
- a35b458
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:51:04)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:21:57)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/arch/HelenOS.adl
ra35b458 rf1380b7 2 2 /* SPARTAN kernel */ 3 3 inst kernel kernel; 4 4 5 5 /* Naming Service */ 6 6 inst ns ns; 7 7 8 8 /* Loader (clonable service) */ 9 9 inst loader loader; 10 10 11 11 /* Device mapper */ 12 12 inst devmap devmap; 13 13 14 14 /* Block device */ 15 15 inst bd bd; 16 16 17 17 /* VFS server */ 18 18 inst vfs vfs; 19 19 20 20 /* Console */ 21 21 inst console console; 22 22 23 23 /* Kernel log */ 24 24 inst kio kio; 25 25 26 26 [/uspace/lib/libc/bind%ns] 27 27 [/uspace/lib/libc/bind%loader] … … 31 31 [/uspace/lib/libc/bind%console] 32 32 [/uspace/lib/libc/bind%kio] 33 33 34 34 bind ns:kbd to console:kbd; 35 35 bind ns:fb to console:fb; … … 39 39 bind ns:devmap_client to devmap:devmap_client; 40 40 bind ns:loader to loader:loader; 41 41 42 42 bind loader:ns to ns:ns; 43 43 44 44 bind devmap:ns to ns:ns; 45 45 bind devmap:rd to bd:rd; 46 46 bind devmap:console to console:console; 47 47 48 48 bind bd:ns to ns:ns; 49 49 bind bd:devmap_driver to devmap:devmap_driver; 50 50 51 51 bind vfs:ns to ns:ns; 52 52 bind vfs:rd to bd:rd; 53 53 bind vfs:devmap_client to devmap:devmap_client; 54 54 bind vfs:device to console:console; 55 55 56 56 bind console:ns to ns:ns; 57 57 bind console:devmap_driver to devmap:devmap_driver; 58 58 bind console:sys_console to kernel:sys_console; 59 59 60 60 bind kio:ns to ns:ns; 61 61 };
Note:
See TracChangeset
for help on using the changeset viewer.