lfn
serial
ticket/834-toolchain-update
topic/msim-upgrade
topic/simplify-dev-export
Last change
on this file since 1d1bb0f was 8d6c1f1, checked in by Jakub Jermar <jakub@…>, 14 years ago |
Merge USB support.
Changes from bzr://helenos-usb.bzr.sourceforge.net/bzrroot/helenos-usb/mainline:
- replaced '-' with '_' in new driver names
- USB libs are built for each architecture
- devman starts early
- sys_thread_udelay() uses generic delay()
- sys_as_create_area() now creates cacheable areas by default
|
-
Property mode
set to
100644
|
File size:
577 bytes
|
Rev | Line | |
---|
[6f9e7fea] | 1 | /*
|
---|
| 2 | * Add list of virtual devices you want to launch driver for here.
|
---|
| 3 | *
|
---|
| 4 | * Unless the list is empty, the last item shall be followed by a comma.
|
---|
| 5 | */
|
---|
[42be09b] | 6 | #ifdef CONFIG_TEST_DRIVERS
|
---|
[1b2981aa] | 7 | {
|
---|
| 8 | .name = "test1",
|
---|
| 9 | .match_id = "virtual&test1"
|
---|
| 10 | },
|
---|
[c245f16e] | 11 | {
|
---|
| 12 | .name = "test2alpha",
|
---|
| 13 | .match_id = "virtual&test2"
|
---|
| 14 | },
|
---|
| 15 | {
|
---|
| 16 | .name = "test2bravo",
|
---|
| 17 | .match_id = "virtual&test2"
|
---|
| 18 | },
|
---|
[424558a] | 19 | {
|
---|
| 20 | .name = "null",
|
---|
| 21 | .match_id = "virtual&test1"
|
---|
| 22 | },
|
---|
[d362410] | 23 | {
|
---|
| 24 | .name = "test3",
|
---|
| 25 | .match_id = "virtual&test3"
|
---|
| 26 | },
|
---|
[42be09b] | 27 | #endif
|
---|
[960ff451] | 28 | #ifdef CONFIG_RUN_VIRTUAL_USB_HC
|
---|
[0a5a950] | 29 | /* Virtual USB host controller. */
|
---|
| 30 | {
|
---|
| 31 | .name = "usbhc",
|
---|
| 32 | .match_id = "usb&hc=vhc"
|
---|
| 33 | },
|
---|
[960ff451] | 34 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.