Trim down documentation and script verbosity

This commit is contained in:
Markus Unterwaditzer
2026-02-08 15:07:56 +01:00
committed by Cooper Quintin
parent 1347e3107a
commit 8f9be746d3
3 changed files with 5 additions and 82 deletions

View File

@@ -11,15 +11,4 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
PROJECT_DIR="$(dirname "$SCRIPT_DIR")"
cd "$PROJECT_DIR"
DEVICE="${1:-}"
if [ -z "$DEVICE" ]; then
echo "Usage: $0 <device>"
echo ""
echo "Run 'cargo run --bin installer help' for a list of supported devices."
exit 1
fi
shift
FIRMWARE_PROFILE=firmware-devel cargo run -p installer --bin installer -- "$DEVICE" "$@"
FIRMWARE_PROFILE=firmware-devel cargo run -p installer --bin installer -- "$@"