tree: 7fd72a83353ffac4790686fd909a42782d742b56 [path history] [tgz]
  1. config/
  2. meta/
  3. res/
  4. src/
  5. BUILD.gn
  6. Fargo.toml
  7. README.md
  8. system_recovery_args.gni
src/recovery/system/README.md

System Recovery

system_recovery is the primary executable in the recovery system. The recovery system is a second, standalone instance of Fuchsia that runs on devices to recover the primary Fuchsia system when the primary Fuchsia system is inoperative.

Building the recovery image

You can build the recovery image using the following command:

$ fx build build/images/recovery

This command builds several recovery-*.zbi files in obj/build/images/recovery, which are self-contained archives of the recovery system.

Running the recovery image

After building the recovery image, you can run the image in QEMU using the following command:

$ fx run-recovery -g

The easiest way to run recovery on hardware is to netboot a device into a newly built recovery image:

$ out/default/host-tools/bootserver --board-name device-name --boot out/default/obj/build/images/recovery/recovery-eng.zbi

where device-name can be found with fx list-devices.

NB If you only have one device or have used the fx set-device command you can omit the --board-name argument.

Testing

Build the core product with recovery:

$ fx set core.x64 --with //src/recovery
$ fx build

Load the system you've just built onto your device.

Unit

Run the recovery integration test:

$ fx test -s 5 system_recovery_tests

Integration

Run the recovery integration test:

$ fx test -s 5 recovery_integration_test

End-to-end

TODO: Need to create end-to-end tests.