mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
b3964f4af1
On our test machine the xhci controller has a usb3.0 network adapter attached and the xhci controller is the only usb controller which has MSI support, so let us use and test it. Issue #1216
26 lines
688 B
Plaintext
26 lines
688 B
Plaintext
#
|
|
# \brief Test using netperf with a native driver or if not available for
|
|
# the platform using usb 3.0 by default
|
|
# \author Alexander Boettcher
|
|
# \date 2013-07-08
|
|
#
|
|
|
|
if {[have_spec omap4]} {
|
|
puts stderr "\nTest requires 1 Gbit network interface - not supported for omap4\n"
|
|
exit 0
|
|
}
|
|
|
|
# network configuration
|
|
set use_nic_bridge 0
|
|
set use_wifi_driver 0
|
|
|
|
# force usage of usb for nova, known to work with usb30 network adapter
|
|
if {[have_spec nova]} { set use_usb_driver 1 }
|
|
|
|
set use_usb_11 "no"
|
|
set use_usb_20 "no"
|
|
set use_usb_30 "yes"
|
|
|
|
source ${genode_dir}/repos/ports/run/netperf_lwip.inc
|
|
source ${genode_dir}/repos/ports/run/netperf.inc
|