tree: d49f34f0dba98c233923aa9cb427590a47f0f42b [path history] [tgz]
  1. contrib/
  2. lib/
  3. add-update-source
  4. args
  5. build
  6. build-push
  7. clean
  8. clean-build
  9. cp
  10. doctor
  11. exec
  12. flash
  13. gen
  14. get-build-dir
  15. list-boards
  16. list-products
  17. list-usb-disks
  18. log
  19. mkzedboot
  20. netaddr
  21. netboot
  22. netls
  23. ota
  24. OWNERS
  25. pave
  26. push-package
  27. README.md
  28. reboot
  29. run
  30. run-host-tests
  31. run-netboot
  32. run-test
  33. run-test-component
  34. scp
  35. serial
  36. serve
  37. serve-updates
  38. set
  39. set-build-dir
  40. set-device
  41. setup-macos
  42. sftp
  43. shell
  44. ssh
  45. symbolize
  46. syslog
  47. unset-device
  48. update
  49. use
  50. vendor
  51. wait
tools/devshell/README.md

fx subcommands

Sub-commands of fx are defined in several directories:

//tools/devshell contains core scripts that are part of the supported fx workflow.

//tools/devshell/contrib contains scripts that have been contributed by team members that have other levels of support and/or ownership. The OWNERS file in the contrib directory provides a pointer to the individuals supporting the scripts there.

//vendor/*/scripts/devshell contains scripts that are relevant only to the particular vendor and will have an ownership and support model documented there.

Sub-commands can be implemented in a number of languages, but it is recommended to use bash at this time, so as to be able to consume some of the helpers provided by //tools/devshell/lib/vars.sh.

It is recommended that scripts be kept short and simple. Authoring large shell programs without a significant test plan can lead to hard to maintain tools. If there is a need to produce a more sophisticated program the recommended approach is to author a host tool program as part of the regular Fuchsia build, and only to wrap that program in a very slim way in a script. Examples of such cases can be found in fx pave and fx make-fuchsia-vol. A good rule of thumb here is that if a script only needs to launch and manage a one or a few sub-processes, then shell may be a fine language. If the program needs to perform any significant string manipulation or business logic, it is likely better authored in a language that provides more structural capabilities and standard library.

Consuming vars.sh / Implementing Subcommands

Most subcommands start with a pre-amble of this nature (paths vary slightly):

source "$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"/../lib/vars.sh || exit $?
fx-config-read

This pre-amble ensures that the devshell helpers are loaded, and then reads the active fx configuration from the user-selected Fuchsia build directory.

fx-config-read is required for most environment variables to be set, and is necessary for most scripts.

Helper functions

fx-config-read loads the current user configuration that is either defined by the fx configuration modulated by fx set and fx use, or by flags to fx such as --config and --dir. It is necessary as a pre-amble for any script that wants to consume build artifacts, as it defined most of the standard environment variables such as $FUCHSIA_BUILD_DIR.

fx-error and fx-warn simply print their arguments, prefixing them with ERROR: or WARNING: respectively. If the output stream supports color, then these outputs are colored.

fx-command-run and fx-command-exec execute another fx subcommand, for example, running fx-command-run shell will invoke the fx shell command. The run variant executes the subcommand in a subshell and the exec variant execs the subcommand, replacing the calling process.

fx-command-help prints the command output for the currently running subcommand.

TODO(raggi): rename the following two functions:

get-device-name returns either the device name that the user has set with fx set-device or fx -d <device-name>. If the user has not set a default device, the command will run device discovery, and will return a discovered device name provided there is only one device discovered.

get-fuchsia-device-addr consumes get-device-name and returns the Fuchsia IPv6 address of the device. The returned address is the “netstack address”, not the “netsvc address”.

The vars.sh script may define additional functions, however, they are considered internal and may change more often. Users can request additional helper functions by contacting the devshell owners, or by defining their own library scripts in contrib.

Environment Variables

After a successful invocation of fx-config-read in a script, one would observe the following environment variables:

FUCHSIA_ARCH         - The current architecture selected (currently one of x64/arm64)
FUCHSIA_BUILD_DIR    - The path to the current Fuchsia build directory
FUCHSIA_DIR          - The path to the root of the Fuchsia source tree
FUCHSIA_OUT_DIR      - (deprecated) "$FUCHSIA_DIR/out"
ZIRCON_BUILDROOT     - The path to the Zircon build directory
ZIRCON_TOOLS_DIR     - The path to the Zircon host-tools build directory.

fx-config-read and/or fx could set additional environment variables, but users should not rely on them - only the above list are to be preserved (unless marked deprecated).

Documenting Subcommands

As many fx subcommands delegate to sub-programs passing on flags directly to them, it is prohibitive to always be able to respond to the -h or --help flags. As such fx subcommands SHOULD implement -h and --help if possible, but this is not required.

It is required that all subcommands implement help documentation lines, which are defined as follows:

### a short one-line (<70 character) description for the command lines
## usage: fx <subcommand> [-a|-b|-c] --foo ...
##
## Long descriptions, flags, and so on

The first line starting with ### is consumed by fx help to produce a list of commands with one-line descriptions of what the command does. These lines should be kept short so as to render well under fx help.

Lines starting with ## are output when a user invokes fx help subcommand, and are used to provide full command help output. The long form output should document all flags and provide fuller description of the command behaviors as appropriate.

Where possible, a command can use fx-command-help to print out the long-form help (defined by ## lines). Many commands implement -h and --help to invoke fx-command-help and this is recommended.