assert {![have_board linux] && ![have_board rpi3] && ![have_board imx53_qsb_tz]} if {[have_cmd_switch --autopilot]} { assert {![have_board virt_qemu_riscv]} \ "Autopilot mode is not supported on this platform." } create_boot_directory import_from_depot [depot_user]/src/[base_src] \ [depot_user]/pkg/[drivers_nic_pkg] \ [depot_user]/src/report_rom \ [depot_user]/src/fs_rom \ [depot_user]/src/vfs \ [depot_user]/src/vfs_lxip \ [depot_user]/src/vfs_pipe \ [depot_user]/src/fetchurl \ [depot_user]/src/libc \ [depot_user]/src/libssh \ [depot_user]/src/openssl \ [depot_user]/src/zlib \ [depot_user]/src/curl \ [depot_user]/src/init \ [depot_user]/src/chroot \ [depot_user]/src/extract \ [depot_user]/src/nic_router \ [depot_user]/src/libarchive \ [depot_user]/src/liblzma \ [depot_user]/src/verify set config { } proc depot_user_download { user } { return [exec cat [select_from_repositories sculpt/depot/$user/download]] } proc depot_user_pubkey { user } { return [exec cat [select_from_repositories sculpt/depot/$user/pubkey]] } append config { } [depot_user_download genodelabs] { } [depot_user_pubkey genodelabs] { } set fd [open [run_dir]/genode/installation w] puts $fd { } close $fd install_config $config copy_file [genode_dir]/repos/gems/recipes/raw/depot_download/depot_download.config \ [run_dir]/genode/depot_download.config build { app/depot_download_manager app/depot_query } build_boot_image [build_artifacts] append qemu_args " -nographic " append_qemu_nic_args # watch the state reports generated by the depot-download manager set expected_pattern {} append expected_pattern {.*path="genodelabs/pkg/wm/2019-03-17" state="done".*} append expected_pattern {.*path="genodelabs/bin/x86_64/backdrop/2019-03-17" state="done".*} append expected_pattern {.*path="genodelabs/index/19.02" state="done".*} append expected_pattern {.*path="genodelabs/index/19.03" state="failed".*} run_genode_until $expected_pattern 150