Add prototype bootstrap script

Change-Id: Ic55bd2b024ef5b543bd441a7fbcd9a2cab120606
3 files changed
tree: 196b9eac9390e93a0bbace6d3817d7b3c85eaa00
  1. manifests/
  2. scripts/
  3. third_party/
  4. tools/
  5. .bazelrc
  6. .gitignore
  7. .gitmodules
  8. AUTHORS
  9. bootstrap.py
  10. BUILD.bazel
  11. CONTRIBUTING.md
  12. fuchsia_env.toml
  13. LICENSE
  14. OWNERS
  15. PATENTS
  16. README.md
  17. 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.