Update configuration for new sdk tooling

Change-Id: Id5ed05e972f192fce00f8a89a646b387a5d40a77
Reviewed-on: https://fuchsia-review.googlesource.com/c/template/driver/+/967488
Reviewed-by: Jerry Belton <jcecil@google.com>
7 files changed
tree: 6bd63b361ae85db596cc245af2e6ad9146eed211
  1. manifests/
  2. scripts/
  3. third_party/
  4. tools/
  5. .bazelrc
  6. .gitignore
  7. .gitmodules
  8. AUTHORS
  9. BUILD.bazel
  10. CONTRIBUTING.md
  11. fuchsia_env.toml
  12. LICENSE
  13. OWNERS
  14. PATENTS
  15. README.md
  16. WORKSPACE.bazel
README.md

Fuchsia Driver Template Repository

This repository is a template that we will use when creating new driver repositories for Fuchsia.

Getting Started

To perform an initial bootstrap, execute the following:

  1. In a terminal, fetch all git submodules:

    git submodule init && git submodule update --recursive
    
  2. Bootstrap the build environment:

    scripts/bootstrap.sh
    
  3. Fetch and build the SDK:

    tools/bazel build @fuchsia_sdk//:fuchsia_toolchain_sdk
    

See the getting started guide for more info.