mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
6f8cc92ce0
because of the limit hardware features of our x86 32bit test hardware
34 lines
774 B
Plaintext
34 lines
774 B
Plaintext
#
|
|
# \brief Test using netperf with the wifi_drv
|
|
# \author Alexander Boettcher
|
|
# \date 2013-07-08
|
|
#
|
|
|
|
assert_spec x86
|
|
|
|
if {[have_include "power_on/qemu"] || [have_include "power_on/linux"]} {
|
|
puts stderr "\nNetperf WIFI running on Qemu/Linux is not supported.\n"
|
|
exit 0
|
|
}
|
|
|
|
if { [have_spec muen] } {
|
|
puts "Run script does not support Muen."
|
|
exit 0
|
|
}
|
|
|
|
# network configuration
|
|
set use_nic_bridge 0
|
|
set use_wifi_driver 1
|
|
set use_usb_11 "no"
|
|
set use_usb_20 "no"
|
|
set use_usb_30 "no"
|
|
|
|
set wifi_ssid $::env(GENODE_WIFI_SSID)
|
|
set wifi_psk $::env(GENODE_WIFI_PSK)
|
|
|
|
source ${genode_dir}/repos/ports/run/netperf_lwip.inc
|
|
source ${genode_dir}/repos/ports/run/netperf.inc
|
|
|
|
# remove firmware images
|
|
exec sh -c "rm bin/*.ucode"
|