Changeset 8a74512 in mainline


Ignore:
Timestamp:
2020-01-09T06:27:36Z (4 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
22d990c
Parents:
b2f05e2
git-author:
Matthieu Riolo <matthieu.riolo@…> (2020-01-09 03:48:53)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2020-01-09 06:27:36)
Message:

Removing workaround which grabs the kconsole when
devman gets started. This prevented to compositor
to be displayed correctly

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/sysman/units/unit_svc.c

    rb2f05e2 r8a74512  
    9898        unit->state = STATE_STARTING;
    9999
    100         /*
    101          * Workaround to see log output even after devman starts (and overrides
    102          * kernel's frame buffer.
    103          * TODO move to task retval/exposee created handler
    104          */
    105         if (str_cmp(unit->name, "devman.svc") == 0) {
    106                 fibril_usleep(100000);
    107                 if (console_kcon()) {
    108                         sysman_log(LVL_DEBUG2, "%s: Kconsole grabbed.", __func__);
    109                 } else {
    110                         sysman_log(LVL_DEBUG2, "%s: no kconsole.", __func__);
    111                 }
    112         }
    113 
    114100        return EOK;
    115101}
Note: See TracChangeset for help on using the changeset viewer.