Fix build.sh --target arg parsing, add USB/NVMe boot instructions to docs
Lint & Validate / lint (push) Has been cancelled

This commit is contained in:
2026-05-19 23:22:50 -04:00
parent 6a6f2739be
commit 7c9b46c59f
+1
View File
@@ -139,6 +139,7 @@ while [[ $# -gt 0 ]]; do
case "$1" in case "$1" in
--skip-kernel) BUILD_KERNEL=false; shift ;; --skip-kernel) BUILD_KERNEL=false; shift ;;
--kernel-only) KERNEL_ONLY=true; shift ;; --kernel-only) KERNEL_ONLY=true; shift ;;
--target) TARGET="$2"; shift 2 ;;
--output) OUTPUT_PATH="$2"; shift 2 ;; --output) OUTPUT_PATH="$2"; shift 2 ;;
--image-size) IMAGE_SIZE_MB="$2"; shift 2 ;; --image-size) IMAGE_SIZE_MB="$2"; shift 2 ;;
--version) MIXER_VERSION="$2"; shift 2 ;; --version) MIXER_VERSION="$2"; shift 2 ;;