tree: f6d85cb48564a3969476ec1a1bd3b5d1478cd94f [path history] [tgz]
  1. bin/
  2. lib/
  3. templates/
  4. test/
  5. analysis_options.yaml
  6. BUILD.gn
  7. pubspec.lock
  8. pubspec.yaml
  9. README.md
tools/mod/README.md

Mod - A scaffolding tool for Fuchsia mods

Mod is a tool for creating a new Fuchsia mod project scaffold. To use it, first include the tools/bin directory to your path.

export PATH=${FUCHSIA_DIR}/topaz/tools/bin:${PATH}

To create a new mod project under the current directory:

mod create <your_project_name>

This will create a new mod project with the given name in the current directory. Note that it doesn't automatically add the project into the GN build tree (yet). You should manually add a new package definition somewhere in your BUILD.gn files order to see the new mod on the target device.

Run mod help for more information about the detailed tool usage.