Changes in uspace/app/init/init.c [4979403:1bfae13] in mainline
- File:
-
- 1 edited
-
uspace/app/init/init.c (modified) (12 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/init/init.c
r4979403 r1bfae13 46 46 #include <macros.h> 47 47 #include <str.h> 48 #include < loc.h>48 #include <devmap.h> 49 49 #include <str_error.h> 50 50 #include "init.h" … … 53 53 #define ROOT_MOUNT_POINT "/" 54 54 55 #define LOCFS_FS_TYPE "locfs"56 #define LOCFS_MOUNT_POINT "/loc"55 #define DEVFS_FS_TYPE "devfs" 56 #define DEVFS_MOUNT_POINT "/dev" 57 57 58 58 #define TMPFS_FS_TYPE "tmpfs" … … 66 66 #define APP_GETTERM "/app/getterm" 67 67 68 /** Print banner */69 68 static void info_print(void) 70 69 { … … 72 71 } 73 72 74 /** Report mount operation success */75 73 static bool mount_report(const char *desc, const char *mntpt, 76 74 const char *fstype, const char *dev, int rc) … … 102 100 } 103 101 104 /** Mount root filesystem105 *106 * The operation blocks until the root filesystem107 * server is ready for mounting.108 *109 * @param[in] fstype Root filesystem type.110 *111 * @return True on success.112 * @return False on failure.113 *114 */115 102 static bool mount_root(const char *fstype) 116 103 { … … 121 108 122 109 int rc = mount(fstype, ROOT_MOUNT_POINT, ROOT_DEVICE, opts, 123 IPC_FLAG_BLOCKING , 0);110 IPC_FLAG_BLOCKING); 124 111 return mount_report("Root filesystem", ROOT_MOUNT_POINT, fstype, 125 112 ROOT_DEVICE, rc); 126 113 } 127 114 128 /** Mount locfs filesystem 129 * 130 * The operation blocks until the locfs filesystem 131 * server is ready for mounting. 132 * 133 * @return True on success. 134 * @return False on failure. 135 * 136 */ 137 static bool mount_locfs(void) 138 { 139 int rc = mount(LOCFS_FS_TYPE, LOCFS_MOUNT_POINT, "", "", 140 IPC_FLAG_BLOCKING, 0); 141 return mount_report("Location service filesystem", LOCFS_MOUNT_POINT, 142 LOCFS_FS_TYPE, NULL, rc); 115 static bool mount_devfs(void) 116 { 117 int rc = mount(DEVFS_FS_TYPE, DEVFS_MOUNT_POINT, "", "", 118 IPC_FLAG_BLOCKING); 119 return mount_report("Device filesystem", DEVFS_MOUNT_POINT, DEVFS_FS_TYPE, 120 NULL, rc); 143 121 } 144 122 … … 179 157 rc = task_wait(id, &texit, &retval); 180 158 if (rc != EOK) { 181 printf("%s: Error waiting for %s (%s )\n", NAME, fname,159 printf("%s: Error waiting for %s (%s(\n", NAME, fname, 182 160 str_error(rc)); 183 161 return; … … 196 174 } 197 175 198 static void console(const char *isvc, const char *fbsvc) 199 { 200 printf("%s: Spawning %s %s %s\n", NAME, SRV_CONSOLE, isvc, fbsvc); 201 202 /* Wait for the input service to be ready */ 203 service_id_t service_id; 204 int rc = loc_service_get_id(isvc, &service_id, IPC_FLAG_BLOCKING); 205 if (rc != EOK) { 206 printf("%s: Error waiting on %s (%s)\n", NAME, isvc, 207 str_error(rc)); 208 return; 209 } 210 211 /* Wait for the framebuffer service to be ready */ 212 rc = loc_service_get_id(fbsvc, &service_id, IPC_FLAG_BLOCKING); 213 if (rc != EOK) { 214 printf("%s: Error waiting on %s (%s)\n", NAME, fbsvc, 215 str_error(rc)); 216 return; 217 } 218 219 rc = task_spawnl(NULL, SRV_CONSOLE, SRV_CONSOLE, isvc, fbsvc, NULL); 220 if (rc != EOK) { 221 printf("%s: Error spawning %s %s %s (%s)\n", NAME, SRV_CONSOLE, 222 isvc, fbsvc, str_error(rc)); 223 } 224 } 225 226 static void getterm(const char *svc, const char *app, bool wmsg) 227 { 228 char term[LOC_NAME_MAXLEN]; 176 static void console(const char *dev) 177 { 178 printf("%s: Spawning %s %s\n", NAME, SRV_CONSOLE, dev); 179 180 /* Wait for the input device to be ready */ 181 devmap_handle_t handle; 182 int rc = devmap_device_get_handle(dev, &handle, IPC_FLAG_BLOCKING); 183 if (rc != EOK) { 184 printf("%s: Error waiting on %s (%s)\n", NAME, dev, 185 str_error(rc)); 186 return; 187 } 188 189 rc = task_spawnl(NULL, SRV_CONSOLE, SRV_CONSOLE, dev, NULL); 190 if (rc != EOK) { 191 printf("%s: Error spawning %s %s (%s)\n", NAME, SRV_CONSOLE, 192 dev, str_error(rc)); 193 } 194 } 195 196 static void getterm(const char *dev, const char *app, bool wmsg) 197 { 198 char term[DEVMAP_NAME_MAXLEN]; 229 199 int rc; 230 200 231 snprintf(term, LOC_NAME_MAXLEN, "%s/%s", LOCFS_MOUNT_POINT, svc);201 snprintf(term, DEVMAP_NAME_MAXLEN, "%s/%s", DEVFS_MOUNT_POINT, dev); 232 202 233 203 printf("%s: Spawning %s %s %s\n", NAME, APP_GETTERM, term, app); 234 204 235 /* Wait for the terminal service to be ready */236 service_id_t service_id;237 rc = loc_service_get_id(svc, &service_id, IPC_FLAG_BLOCKING);205 /* Wait for the terminal device to be ready */ 206 devmap_handle_t handle; 207 rc = devmap_device_get_handle(dev, &handle, IPC_FLAG_BLOCKING); 238 208 if (rc != EOK) { 239 209 printf("%s: Error waiting on %s (%s)\n", NAME, term, … … 261 231 static bool mount_tmpfs(void) 262 232 { 263 int rc = mount(TMPFS_FS_TYPE, TMPFS_MOUNT_POINT, "", "", 0 , 0);233 int rc = mount(TMPFS_FS_TYPE, TMPFS_MOUNT_POINT, "", "", 0); 264 234 return mount_report("Temporary filesystem", TMPFS_MOUNT_POINT, 265 235 TMPFS_FS_TYPE, NULL, rc); … … 268 238 static bool mount_data(void) 269 239 { 270 int rc = mount(DATA_FS_TYPE, DATA_MOUNT_POINT, DATA_DEVICE, "wtcache", 0 , 0);240 int rc = mount(DATA_FS_TYPE, DATA_MOUNT_POINT, DATA_DEVICE, "wtcache", 0); 271 241 return mount_report("Data filesystem", DATA_MOUNT_POINT, DATA_FS_TYPE, 272 242 DATA_DEVICE, rc); … … 287 257 } 288 258 289 spawn("/srv/ locfs");259 spawn("/srv/devfs"); 290 260 spawn("/srv/taskmon"); 291 261 292 if (!mount_ locfs()) {262 if (!mount_devfs()) { 293 263 printf("%s: Exiting\n", NAME); 294 264 return -2; … … 308 278 spawn("/srv/fb"); 309 279 spawn("/srv/input"); 310 console("hid/input" , "hid/fb0");280 console("hid/input"); 311 281 312 282 spawn("/srv/clip");
Note:
See TracChangeset
for help on using the changeset viewer.
