source: mainline/uspace/drv/infrastructure/rootvirt/devices.def@ 606c369

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 606c369 was 606c369, checked in by Jiri Svoboda <jiri@…>, 13 years ago

Replace loopback NIC with a loopback IP link provider.

  • Property mode set to 100644
File size: 583 bytes
Line 
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 */
6
7#ifdef CONFIG_TEST_DRIVERS
8
9{
10 .name = "test1",
11 .match_id = "virtual&test1"
12},
13{
14 .name = "test2alpha",
15 .match_id = "virtual&test2"
16},
17{
18 .name = "test2bravo",
19 .match_id = "virtual&test2"
20},
21{
22 .name = "null",
23 .match_id = "virtual&test1"
24},
25{
26 .name = "test3",
27 .match_id = "virtual&test3"
28},
29
30#endif
31
32#ifdef CONFIG_RUN_VIRTUAL_USB_HC
33
34/* Virtual USB host controller. */
35{
36 .name = "usbhc",
37 .match_id = "usb&hc=vhc"
38},
39
40#endif
Note: See TracBrowser for help on using the repository browser.