Changes in uspace/app/init/init.c [4deb8b5:0485135] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/init/init.c

    r4deb8b5 r0485135  
    200200}
    201201
    202 static void getterm(const char *dev, const char *app, bool wmsg)
     202static void getterm(const char *dev, const char *app)
    203203{
    204204        char term[DEVMAP_NAME_MAXLEN];
     
    218218        }
    219219       
    220         if (wmsg) {
    221                 rc = task_spawnl(NULL, APP_GETTERM, APP_GETTERM, "-w", term,
    222                     app, NULL);
    223                 if (rc != EOK) {
    224                         printf("%s: Error spawning %s -w %s %s (%s)\n", NAME,
    225                             APP_GETTERM, term, app, str_error(rc));
    226                 }
    227         } else {
    228                 rc = task_spawnl(NULL, APP_GETTERM, APP_GETTERM, term, app,
    229                     NULL);
    230                 if (rc != EOK) {
    231                         printf("%s: Error spawning %s %s %s (%s)\n", NAME,
    232                             APP_GETTERM, term, app, str_error(rc));
    233                 }
     220        rc = task_spawnl(NULL, APP_GETTERM, APP_GETTERM, term, app, NULL);
     221        if (rc != EOK) {
     222                printf("%s: Error spawning %s %s %s (%s)\n", NAME,
     223                    APP_GETTERM, term, app, str_error(rc));
    234224        }
    235225}
     
    305295#endif
    306296       
    307         getterm("term/vc0", "/app/bdsh", true);
    308         getterm("term/vc1", "/app/bdsh", false);
    309         getterm("term/vc2", "/app/bdsh", false);
    310         getterm("term/vc3", "/app/bdsh", false);
    311         getterm("term/vc4", "/app/bdsh", false);
    312         getterm("term/vc5", "/app/bdsh", false);
    313         getterm("term/vc6", "/app/klog", false);
     297        getterm("term/vc0", "/app/bdsh");
     298        getterm("term/vc1", "/app/bdsh");
     299        getterm("term/vc2", "/app/bdsh");
     300        getterm("term/vc3", "/app/bdsh");
     301        getterm("term/vc4", "/app/bdsh");
     302        getterm("term/vc5", "/app/bdsh");
     303        getterm("term/vc6", "/app/klog");
    314304       
    315305        return 0;
Note: See TracChangeset for help on using the changeset viewer.