Clone this repo:

Branches

  1. 03196e6 [shac] Disable load-on-top in root WORKSPACE.bazel file by Jerry Belton · 5 weeks ago main
  2. b69d52a [testing] Use test group product bundles labels. by Darren Chan · 6 weeks ago
  3. 5fd062a [bazel_sdk] Prevent roller race condition. by Darren Chan · 8 weeks ago
  4. d2833a5 [template] Add work-on script to driver template. by Jerry Belton · 9 weeks ago
  5. fd525f2 [infra] Bump dependencies. by Darren Chan · 3 months ago

Fuchsia <change_me> Driver Repository

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

Template repository is located in: https://fuchsia.googlesource.com/template/driver/

Getting Started

To perform an initial bootstrap, execute the following:

  1. In a terminal, clone the repository:

    git clone https://fuchsia.googlesource.com/drivers/<change_me>
    
  2. Change to that directory:

    cd <change_me>
    
  3. Fetch all git submodules:

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

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

    tools/bazel build @fuchsia_sdk//:fuchsia_toolchain_sdk
    

See the getting started guide for more info.

Building And Testing Driver

Run the full test-suite with:

tools/bazel test :tests

Run only the <change_me> driver tests with:

tools/bazel test <change_me>:<fuchsia_unittest_package_name>