Changeset 3f03199 in mainline for uspace/app/init/init.c


Ignore:
Timestamp:
2013-09-15T06:33:53Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9348862
Parents:
dd7078c (diff), 1c0cef0 (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.

Major conflicts in USB HC drivers.
Compiles and UHCI works (qemu).
OHCI has device remove problems.

File:
1 edited

Legend:

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

    rdd7078c r3f03199  
    384384        srv_start("/srv/input", HID_INPUT);
    385385        srv_start("/srv/output", HID_OUTPUT);
     386        srv_start("/srv/hound");
    386387       
    387388        int rc = compositor(HID_INPUT, HID_COMPOSITOR_SERVER);
     
    392393                rc = console(HID_INPUT, HID_OUTPUT);
    393394                if (rc == EOK) {
    394 #ifndef CONFIG_VC_COUNT
    395 #define CONFIG_VC_COUNT 6
    396 #endif
    397                         switch((unsigned)CONFIG_VC_COUNT) {
    398                         default:
    399                         case 6: getterm("term/vc5", "/app/bdsh", false);
    400                         case 5: getterm("term/vc4", "/app/bdsh", false);
    401                         case 4: getterm("term/vc3", "/app/bdsh", false);
    402                         case 3: getterm("term/vc2", "/app/bdsh", false);
    403                         case 2: getterm("term/vc1", "/app/bdsh", false);
    404                         case 1: getterm("term/vc0", "/app/bdsh", true);
    405                         }
    406 #ifdef CONFIG_KERNEL_LOG_VC_6
     395                        getterm("term/vc0", "/app/bdsh", true);
     396                        getterm("term/vc1", "/app/bdsh", false);
     397                        getterm("term/vc2", "/app/bdsh", false);
     398                        getterm("term/vc3", "/app/bdsh", false);
     399                        getterm("term/vc4", "/app/bdsh", false);
     400                        getterm("term/vc5", "/app/bdsh", false);
    407401                        getterm("term/vc6", "/app/klog", false);
    408 #endif
    409402                }
    410403        }
    411         srv_start("/srv/hound");
    412404       
    413405        return 0;
Note: See TracChangeset for help on using the changeset viewer.