Add getting started documentation to README.md

Change-Id: Ib749823e4e2a6784840b753ed9a8930def130613
Reviewed-on: https://fuchsia-review.googlesource.com/c/template/driver/+/907263
Reviewed-by: Chase Latta <chaselatta@google.com>
1 file changed
tree: 02fc37d376c519e6bb38d7d1a3ab32cdc970393e
  1. manifests/
  2. scripts/
  3. third_party/
  4. tools/
  5. .gitignore
  6. .gitmodules
  7. AUTHORS
  8. BUILD.bazel
  9. CONTRIBUTING.md
  10. fuchsia_env.toml
  11. LICENSE
  12. OWNERS
  13. PATENTS
  14. README.md
  15. 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.