riscv: adjust timeout run script to RISC-V

* Limit required memory for RISC-V to 15 MB per buffer

issue #4021
This commit is contained in:
Sebastian Sumpf 2021-03-09 15:09:10 +01:00 committed by Norman Feske
parent 7e7c10e66c
commit 7bbd050f25

View File

@ -10,6 +10,7 @@ proc fast_polling_buf_size { } {
if {[expr [have_board pbxa9] && [have_spec foc]]} { return 40000000 }
if {[expr [have_board imx53_qsb_tz] && [have_spec hw]]} { return 40000000 }
if {[expr [have_board rpi] && [have_spec hw]]} { return 40000000 }
if {[expr [have_board riscv_qemu] && [have_spec hw]]} { return 15000000 }
return 80000000
}