Installation
The fwci
tool is the command-line interface for FirmwareCI. It allows you to manage and configure DUTs and storage, and run tests seamlessly within the FirmwareCI ecosystem. This page provides step-by-step instructions for downloading and installing the tool.
Currently, the tool supports Linux x64 systems only.
Installation
Installing the fwci
tool is a straightforward process:
Step 1: Download the Binary
Download the latest version of the fwci
tool from here.
Step 2: Unpack the Archive
Once the download is complete, unpack the .tar.gz
file:
tar -xvzf firmwareci-cli-0.10.10.linux-amd64.tar.gz
Step 3: Copy the Binary
Copy the unpacked binary to your system’s /usr/local/bin
directory to make it available globally:
sudo cp fwci-0.10.10.linux-amd64 /usr/local/bin/fwci
Step 4: Verify Installation
To ensure the tool is installed correctly, run the following command:
fwci version
If the installation was successful, this will display the current version of the fwci
tool.
Uninstallation
To remove the fwci
tool from your system, simply delete the binary from /usr/local/bin
:
sudo rm /usr/local/bin/fwci
For more information on how to use the fwci
tool, refer to the Usage Guide.