diff --git a/repos/base/run/platform_drv.inc b/repos/base/run/platform_drv.inc index 52b18185d6..e5ad966074 100644 --- a/repos/base/run/platform_drv.inc +++ b/repos/base/run/platform_drv.inc @@ -36,7 +36,7 @@ proc need_usb_hid { } { proc nic_drv_binary { } { if {[have_spec linux]} { return linux_nic_drv } if {[have_spec omap4] || [have_spec arndale] || [have_spec rpi]} { return usb_drv } - if {!([have_spec imx53] || [have_spec riscv] || [have_spec odroid_xu] || [have_spec wand_quad])} { return nic_drv } + if {!([have_spec imx53] || [have_spec riscv] || [have_spec odroid_xu])} { return nic_drv } return no_nic_drv_available } diff --git a/repos/dde_linux/run/lxip_http_srv.run b/repos/dde_linux/run/lxip_http_srv.run index f2fb166c57..64f3f32a9a 100644 --- a/repos/dde_linux/run/lxip_http_srv.run +++ b/repos/dde_linux/run/lxip_http_srv.run @@ -81,9 +81,9 @@ append_if $use_usb_driver config { append_platform_drv_config append_if $use_nic_driver config { - + - + } diff --git a/repos/dde_linux/run/lxip_udp_echo.run b/repos/dde_linux/run/lxip_udp_echo.run index 9dcb732850..9b6217798e 100644 --- a/repos/dde_linux/run/lxip_udp_echo.run +++ b/repos/dde_linux/run/lxip_udp_echo.run @@ -1,5 +1,5 @@ set use_usb_driver [expr [have_spec omap4] || [have_spec arndale] || [have_spec rpi]] -set use_nic_driver [expr [have_spec linux] || [expr !$use_usb_driver && ![have_spec imx53] && ![have_spec odroid_xu] && ![have_spec linux] && ![have_spec wand_quad]]] +set use_nic_driver [expr [have_spec linux] || [expr !$use_usb_driver && ![have_spec imx53] && ![have_spec odroid_xu] && ![have_spec linux]]] # # Build @@ -80,9 +80,9 @@ append_if $use_usb_driver config { append_platform_drv_config append_if $use_nic_driver config { - + - + } diff --git a/repos/libports/run/lwip.run b/repos/libports/run/lwip.run index b8ef9ec5c3..6126df4c5b 100644 --- a/repos/libports/run/lwip.run +++ b/repos/libports/run/lwip.run @@ -21,7 +21,7 @@ # set use_usb_driver [expr [have_spec omap4] || [have_spec arndale] || [have_spec rpi]] -set use_nic_driver [expr !$use_usb_driver && ![have_spec imx53] && ![have_spec odroid_xu] && ![have_spec linux] && ![have_spec wand_quad]] +set use_nic_driver [expr !$use_usb_driver && ![have_spec imx53] && ![have_spec odroid_xu] && ![have_spec linux]] if {[expr !$use_usb_driver && !$use_nic_driver]} { puts "\n Run script is not supported on this platform. \n"; exit 0 } @@ -105,8 +105,8 @@ append_if $use_usb_driver config { append_platform_drv_config append_if $use_nic_driver config { - - + + } diff --git a/repos/ports/run/netperf.inc b/repos/ports/run/netperf.inc index e2220ade6a..557d8edff3 100644 --- a/repos/ports/run/netperf.inc +++ b/repos/ports/run/netperf.inc @@ -19,7 +19,7 @@ if {[get_cmd_switch --autopilot] && [have_include "power_on/qemu"]} { exit } -if {[have_spec odroid_xu] || [have_spec wand_quad]} { +if {[have_spec odroid_xu]} { puts "Run script does not support this platform." exit 0 } @@ -221,7 +221,7 @@ append_if $use_usb_driver config { append_if $use_nic_driver config { - + } diff --git a/repos/ports/run/noux_net_netcat.run b/repos/ports/run/noux_net_netcat.run index bac3d42119..ad08ed5b0d 100644 --- a/repos/ports/run/noux_net_netcat.run +++ b/repos/ports/run/noux_net_netcat.run @@ -1,5 +1,5 @@ set use_usb_driver [expr [have_spec omap4] || [have_spec arndale] || [have_spec rpi]] -set use_nic_driver [expr !$use_usb_driver && ![have_spec imx53] && ![have_spec linux] && ![have_spec odroid_xu] && ![have_spec wand_quad]] +set use_nic_driver [expr !$use_usb_driver && ![have_spec imx53] && ![have_spec linux] && ![have_spec odroid_xu]] if {[expr !$use_usb_driver && !$use_nic_driver || [expr [have_include "power_on/qemu"] && [have_spec zynq]]]} { puts "\n Run script is not supported on this platform. \n"; exit 0 } @@ -114,8 +114,8 @@ append config { } append_if $use_nic_driver config { - - + + }