Changeset afe34be in mainline
- Timestamp:
- 2009-10-08T11:06:45Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8e21512e
- Parents:
- 2088dfc
- Location:
- contrib/arch
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/arch/HelenOS.adl
r2088dfc rafe34be 38 38 bind ns:devmap_driver to devmap:devmap_driver; 39 39 bind ns:devmap_client to devmap:devmap_client; 40 bind ns:loader to loader:loader; 40 41 41 42 bind loader:ns to ns:ns; 42 43 43 44 bind devmap:ns to ns:ns; 45 bind devmap:rd to bd:rd; 46 bind devmap:console to console:console; 44 47 45 48 bind bd:ns to ns:ns; … … 52 55 53 56 bind console:ns to ns:ns; 57 bind console:devmap_driver to devmap:devmap_driver; 54 58 bind console:sys_console to kernel:sys_console; 55 59 -
contrib/arch/uspace/lib/libfs/fnc.libfs_lookup
r2088dfc rafe34be 1 1 ( 2 alternative (fs; tmpfs ; fat; devfs) {2 alternative (fs; tmpfs_nested; fat_nested; devfs_nested) { 3 3 !fs.lookup 4 4 } -
contrib/arch/uspace/lib/libfs/fnc.libfs_mount
r2088dfc rafe34be 2 2 ?ipc_m_connection_clone ; 3 3 ?ipc_m_data_write /* mount options */ { 4 alternative (fs; tmpfs ; fat; devfs) {4 alternative (fs; tmpfs_nested; fat_nested; devfs_nested) { 5 5 !fs.ipc_m_connect_to_me ; 6 6 !fs.mounted { -
contrib/arch/uspace/lib/libfs/fnc.libfs_stat
r2088dfc rafe34be 1 1 ( 2 ? fs.ipc_m_data_read2 ?ipc_m_data_read 3 3 ) -
contrib/arch/uspace/srv/console/console.adl
r2088dfc rafe34be 48 48 requires: 49 49 [/uspace/lib/libc/requires] 50 ns ns; 51 devmap_driver devmap_driver; 52 sys_console sys_console; 50 53 kbd kbd; 51 54 fb fb; 52 ns ns;53 sys_console sys_console;54 55 initialization: 55 56 !ns.ipc_m_connect_me_to /* kbd */ ; … … 99 100 100 101 subsume ui_dispatcher:ns to ns; 102 subsume ui_dispatcher:devmap_driver to devmap_driver; 101 103 subsume ui_dispatcher:sys_console to sys_console; 102 104 -
contrib/arch/uspace/srv/devmap/devmap.adl
r2088dfc rafe34be 63 63 [/uspace/lib/libc/requires] 64 64 ns ns; 65 rd rd; 66 console console; 65 67 initialization: 66 68 !ns.ipc_m_connect_to_me /* devmap */ -
contrib/arch/uspace/srv/fs/fat/fat.adl
r2088dfc rafe34be 9 9 requires: 10 10 [/uspace/lib/libc/requires] 11 vfs vfs;12 11 ns ns; 13 12 rd rd; 13 vfs vfs; 14 tmpfs tmpfs_nested; 15 fat fat_nested; 16 devfs devfs_nested; 14 17 initialization: 15 18 !ns.ipc_m_connect_me_to /* vfs */ ; -
contrib/arch/uspace/srv/fs/tmpfs/tmpfs.adl
r2088dfc rafe34be 9 9 requires: 10 10 [/uspace/lib/libc/requires] 11 vfs vfs;12 11 ns ns; 13 12 rd rd; 13 vfs vfs; 14 tmpfs tmpfs_nested; 15 fat fat_nested; 16 devfs devfs_nested; 14 17 initialization: 15 18 !ns.ipc_m_connect_me_to /* vfs */ ; -
contrib/arch/uspace/srv/ns/ns.adl
r2088dfc rafe34be 31 31 ns ns; 32 32 requires: 33 [/uspace/lib/libc/requires] 33 34 kbd kbd; 34 35 fb fb; … … 37 38 devmap_driver devmap_driver; 38 39 devmap_client devmap_client; 39 [/uspace/lib/libc/requires]40 loader loader; 40 41 protocol: 41 42 [/uspace/lib/libc/protocol] -
contrib/arch/uspace/srv/vfs/vfs.adl
r2088dfc rafe34be 88 88 requires: 89 89 [/uspace/lib/libc/requires] 90 ns ns; 90 91 tmpfs tmpfs; 91 92 fat fat; 92 93 devfs devfs; 93 ns ns;94 94 initialization: 95 95 !ns.ipc_m_connect_to_me /* vfs */ … … 112 112 bind devfs:vfs to io_dispatcher:vfs; 113 113 114 bind tmpfs:tmpfs_nested to tmpfs:tmpfs; 115 bind tmpfs:fat_nested to fat:fat; 116 bind tmpfs:devfs_nested to devfs:devfs; 117 118 bind fat:tmpfs_nested to tmpfs:tmpfs; 119 bind fat:fat_nested to fat:fat; 120 bind fat:devfs_nested to devfs:devfs; 121 114 122 delegate vfs to io_dispatcher:vfs; 115 123
Note:
See TracChangeset
for help on using the changeset viewer.