mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-20 09:46:20 +00:00
Disable unsupported autopilot tests on rpi3
This commit is contained in:
parent
a0c71cffd4
commit
63e69d35e0
@ -1,6 +1,6 @@
|
||||
create_boot_directory
|
||||
|
||||
if {[have_spec linux] || [have_spec imx7d_sabre] ||
|
||||
if {[have_spec linux] || [have_spec imx7d_sabre] || [have_spec rpi3] ||
|
||||
[expr [have_spec imx53] && [have_spec trustzone]]} {
|
||||
puts "Run script does not support this platform."
|
||||
exit 0
|
||||
|
@ -4,7 +4,7 @@
|
||||
# \date 2016-06-05
|
||||
#
|
||||
|
||||
if {[have_spec linux] || [have_spec imx7d_sabre] ||
|
||||
if {[have_spec linux] || [have_spec imx7d_sabre] || [have_spec rpi3] ||
|
||||
[expr [have_spec imx53] && [have_spec trustzone]]} {
|
||||
puts "Run script does not support this platform."
|
||||
exit 0
|
||||
|
@ -9,14 +9,14 @@ if {[have_spec odroid_xu] || [have_spec zynq]} {
|
||||
exit 0
|
||||
}
|
||||
|
||||
# use SD on ARM
|
||||
set use_sd_card_drv [expr [have_spec pbxa9]]
|
||||
# use SD on Qemu/pbxa9
|
||||
set use_sd_card_drv [expr [have_include "power_on/qemu"] && [have_spec pbxa9]]
|
||||
|
||||
# use AHCI on x86
|
||||
set use_ahci [expr [have_spec x86] && ![have_spec linux]]
|
||||
|
||||
# use ram_block on Linux
|
||||
set use_ram_block [have_spec linux]
|
||||
# use ram_block on Linux and Qemu/rpi3
|
||||
set use_ram_block [expr [have_spec linux] || [expr [have_include "power_on/qemu"] && [have_spec rpi3]]]
|
||||
|
||||
if {[catch { exec which $mkfs_cmd } ]} {
|
||||
puts stderr "Error: $mkfs_cmd not installed, aborting test"; exit }
|
||||
|
@ -23,6 +23,7 @@
|
||||
if {[expr [have_spec linux]] ||
|
||||
[expr [have_spec imx53] && [have_spec trustzone]] ||
|
||||
[expr [have_spec imx7d_sabre]] ||
|
||||
[have_spec rpi3] ||
|
||||
[expr [have_spec riscv]]} {
|
||||
puts "\n Run script is not supported on this platform. \n"; exit 0 }
|
||||
|
||||
|
@ -3,6 +3,11 @@ if {![have_include power_on/qemu]} {
|
||||
exit 0
|
||||
}
|
||||
|
||||
if {[have_spec rpi3]} {
|
||||
puts "\n Run script is not supported on this platform. \n";
|
||||
exit 0
|
||||
}
|
||||
|
||||
create_boot_directory
|
||||
|
||||
import_from_depot [depot_user]/src/[base_src] \
|
||||
|
@ -1,6 +1,7 @@
|
||||
if {[have_spec odroid_xu] ||
|
||||
[have_spec imx7d_sabre] ||
|
||||
[have_spec imx6q_sabrelite] ||
|
||||
[have_spec rpi3] ||
|
||||
[have_spec zynq] ||
|
||||
[have_spec imx53] && [have_spec foc]} {
|
||||
puts "\n Run script is not supported on this platform. \n";
|
||||
|
@ -1,4 +1,5 @@
|
||||
if {[have_spec foc] || [have_spec odroid_xu] || [have_spec linux] || [have_spec imx7d_sabre] ||
|
||||
if {[have_spec foc] || [have_spec odroid_xu] || [have_spec linux] ||
|
||||
[have_spec imx7d_sabre] || [have_spec rpi3] ||
|
||||
[expr [have_spec imx53] && [have_spec trustzone]]} {
|
||||
puts "Run script is not supported on this platform."
|
||||
exit 0
|
||||
|
@ -1,5 +1,6 @@
|
||||
if {![have_include power_on/qemu] ||
|
||||
[have_spec foc] ||
|
||||
[have_spec rpi3] ||
|
||||
[expr [have_spec imx53] && [have_spec trustzone]]} {
|
||||
|
||||
puts "Run script is not supported on this platform."
|
||||
|
@ -1,4 +1,5 @@
|
||||
if {[have_spec foc] || [have_spec linux] || [have_spec imx7d_sabre] ||
|
||||
[have_spec rpi3] ||
|
||||
[expr [have_spec imx53] && [have_spec trustzone]]} {
|
||||
puts "Run script is not supported on this platform."
|
||||
exit 0
|
||||
|
@ -1,4 +1,5 @@
|
||||
if {[have_spec foc] || [have_spec odroid_xu] || [have_spec linux] || [have_spec imx7d_sabre] ||
|
||||
[have_spec rpi3] ||
|
||||
[expr [have_spec imx53] && [have_spec trustzone]]} {
|
||||
puts "Run script is not supported on this platform."
|
||||
exit 0
|
||||
|
Loading…
x
Reference in New Issue
Block a user