# # Check for platform support # if {[get_cmd_switch --autopilot] && [expr [have_board virt_qemu_riscv] || [have_board rpi]]} { puts "Autopilot mode is not supported on this platform." exit 0 } proc buffer_size_kib {} { if {[have_board pbxa9]} { return [expr 12 * 1024] } if {[have_board imx6q_sabrelite]} { return [expr 1024] } if {[have_board imx53_qsb]} { return [expr 1024] } if {[have_board imx53_qsb_tz]} { return [expr 1024] } if {[have_board rpi]} { return [expr 4 * 1024] } puts "\n Run script is not supported on this platform. \n"; exit 0; } proc sd_card {} { if {[have_board pbxa9]} { return pl180_sd_card } if {[have_board imx6q_sabrelite]} { return imx6_sd_card } if {[have_board imx53_qsb]} { return imx53_sd_card } if {[have_board imx53_qsb_tz]} { return imx53_sd_card } if {[have_board rpi]} { return rpi_sd_card } puts "\n Run script is not supported on this platform. \n"; exit 0; } create_boot_directory import_from_depot [depot_user]/src/[base_src] \ [depot_user]/src/init \ [depot_user]/src/platform install_config { } file copy [select_from_repositories board/[board]/devices] [run_dir]/genode/devices build { driver/sd_card } build_boot_image [build_artifacts] # # Run and evaluate the test # # If we run on qemu, provide a virtual disk # set disk_image "bin/sd_card.img" if {[have_include power_on/qemu]} { if { [file exists $disk_image] == 0 } then { catch { exec dd if=/dev/zero of=$disk_image bs=1M count=512 } } append qemu_args "-drive file=$disk_image,format=raw,if=sd,cache=writeback " append qemu_args "-nographic " } run_genode_until "--- SD card benchmark finished ---" 120 if {[have_include power_on/qemu]} { if { [file exists $disk_image] != 0 } then { exec rm -f $disk_image } }