mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
28 lines
723 B
Plaintext
28 lines
723 B
Plaintext
|
#
|
||
|
# \brief Test using netperf with a NIC router and with a native driver or
|
||
|
# if not available for the platform using usb 3.0 by default
|
||
|
# \author Martin Stein
|
||
|
# \date 2017-12-19
|
||
|
#
|
||
|
|
||
|
if {[have_include "power_on/qemu"]} {
|
||
|
puts "\nNetperf running on Qemu with a router is not supported.\n"
|
||
|
exit
|
||
|
}
|
||
|
|
||
|
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_nic_router 1
|
||
|
set use_wifi_driver 0
|
||
|
set use_usb_11 "no"
|
||
|
set use_usb_20 "no"
|
||
|
set use_usb_30 "yes"
|
||
|
|
||
|
source ${genode_dir}/repos/ports/run/netperf_lxip.inc
|
||
|
source ${genode_dir}/repos/ports/run/netperf.inc
|