Add a new error for the case of trying to flash when security is enabled and it is still locked and update the related docs. Signed-off-by: Tim Crawford <tcrawford@system76.com>
7 lines
176 B
Bash
Executable File
7 lines
176 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
set -e
|
|
cargo build --release --quiet --manifest-path tool/Cargo.toml
|
|
sudo tool/target/release/system76_ectool "$@"
|