| # fx netboot-remote |
| |
| Remotely build, fetch and netboot |
| |
| ```none |
| usage: fx netboot-remote HOST [DIR] [--no-boot] [--no-build] [-- NETBOOT_ARGS] |
| |
| Connect to HOST, run a build using fx from DIR, fetch the artifacts and |
| start the paver. |
| |
| --no-build do not build, just pull artifacts already present |
| --no-boot do not start the bootserver, just pull the artifacts |
| -- pass any arguments after the -- to the fx netboot command |
| |
| HOST the hostname to connect to |
| DIR defaults to ~/fuchsia, the path to the FUCHSIA_DIR on HOST |
| NETBOOT_ARGS arguments for the fx netboot command |
| |
| HOST and DIR are persisted in the file //.fx-remote-config and are reused as |
| defaults in future invocations of any 'fx *-remote' tools. |
| ``` |
| |
| [netboot-remote source code](https://cs.opensource.google/fuchsia/fuchsia/+/main:tools/devshell/netboot-remote) |