blob: 488fa2bbf1e512096ad53cb150933131a06f1a8b [file] [log] [blame]
#!/bin/bash
# Copyright 2017 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.
### builds, copies to target, and adds a driver to devmgr
## usage: fx add-driver TARGET
## Builds the specified target (e.g., fxl_unittests), copies it to the target, and
## adds it to devmgr. Useful for tight iterations on drivers.
set -e
source "$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"/lib/vars.sh || exit $?
fx-config-read
if [[ $# -eq 0 ]]; then
fx-command-help
exit 1
fi
target="$1"
fx-command-run build "${target}"
fx-command-run cp "${FUCHSIA_BUILD_DIR}/${target}" "/tmp/${target}"
fx-command-run shell "dm add-driver:/tmp/${target}"