blob: b140484800e2bec9d0e0ce06daac9747976527d1 [file] [log] [blame]
#!/bin/bash
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#### CATEGORY=Run, inspect and debug
### start Fuchsia System Recovery in qemu
##
## Run "fx build recovery_image" first.
source "$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"/../lib/image_build_vars.sh || exit $?
qemu_dir="${PREBUILT_QEMU_DIR}/bin"
"${FUCHSIA_DIR}/zircon/scripts/run-zircon" \
-a "${FUCHSIA_ARCH}" \
-q "${qemu_dir}" \
-t "${FUCHSIA_BUILD_DIR}/${IMAGE_QEMU_KERNEL_RAW}" \
-z "${FUCHSIA_BUILD_DIR}/obj/build/images/recovery/recovery-eng.zbi" \
"$@"