Clone this repo:

Branches

  1. d172beb Add prototype bootstrap script by David Murphy · 6 months ago main
  2. 97f179e Update WORKSPACE to use a prebuilt host toolchain by Chase Latta · 8 months ago
  3. c13c629 Add getting started documentation to README.md by Sam Hansen · 8 months ago
  4. 5eb0d27 Add initial driver repo layout by Chase Latta · 9 months ago
  5. 9fa7d54 Update year by James Robinson · 11 months ago

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.