Changeset 985e26d2 in mainline for contrib/arch/HelenOS.adl


Ignore:
Timestamp:
2010-01-07T19:06:59Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8190e63
Parents:
743e17b (diff), eca2435 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • contrib/arch/HelenOS.adl

    r743e17b r985e26d2  
    66        inst ns ns;
    77       
    8         /* RAM disk */
    9         inst rd rd;
     8        /* Loader (clonable service) */
     9        inst loader loader;
    1010       
    11         /* Klog */
     11        /* Device mapper */
     12        inst devmap devmap;
     13       
     14        /* Block device */
     15        inst bd bd;
     16       
     17        /* VFS server */
     18        inst vfs vfs;
     19       
     20        /* Console */
     21        inst console console;
     22       
     23        /* Kernel log */
    1224        inst klog klog;
    1325       
    1426        [/uspace/lib/libc/bind%ns]
     27        [/uspace/lib/libc/bind%loader]
     28        [/uspace/lib/libc/bind%devmap]
     29        [/uspace/lib/libc/bind%bd]
     30        [/uspace/lib/libc/bind%vfs]
     31        [/uspace/lib/libc/bind%console]
     32        [/uspace/lib/libc/bind%klog]
    1533       
    16         [/usrpace/lib/libc/bind%rd]
    17         bind rd:ns to ns:ns;
    18         bind rd:dm_driver to devmap:dm_driver;
     34        bind ns:kbd to console:kbd;
     35        bind ns:fb to console:fb;
     36        bind ns:console to console:console;
     37        bind ns:vfs to vfs:vfs;
     38        bind ns:devmap_driver to devmap:devmap_driver;
     39        bind ns:devmap_client to devmap:devmap_client;
     40        bind ns:loader to loader:loader;
    1941       
    20         [/usrpace/lib/libc/bind%klog]
     42        bind loader:ns to ns:ns;
     43       
     44        bind devmap:ns to ns:ns;
     45        bind devmap:rd to bd:rd;
     46        bind devmap:console to console:console;
     47       
     48        bind bd:ns to ns:ns;
     49        bind bd:devmap_driver to devmap:devmap_driver;
     50       
     51        bind vfs:ns to ns:ns;
     52        bind vfs:rd to bd:rd;
     53        bind vfs:devmap_client to devmap:devmap_client;
     54        bind vfs:device to console:console;
     55       
     56        bind console:ns to ns:ns;
     57        bind console:devmap_driver to devmap:devmap_driver;
     58        bind console:sys_console to kernel:sys_console;
     59       
    2160        bind klog:ns to ns:ns;
    2261};
Note: See TracChangeset for help on using the changeset viewer.