From 7c9b46c59fc608b2ac183f5732b2c8d5869bb52e Mon Sep 17 00:00:00 2001 From: Shawn Date: Tue, 19 May 2026 23:22:50 -0400 Subject: [PATCH] Fix build.sh --target arg parsing, add USB/NVMe boot instructions to docs --- build/build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build/build.sh b/build/build.sh index fe19584..e42248c 100755 --- a/build/build.sh +++ b/build/build.sh @@ -139,6 +139,7 @@ while [[ $# -gt 0 ]]; do case "$1" in --skip-kernel) BUILD_KERNEL=false; shift ;; --kernel-only) KERNEL_ONLY=true; shift ;; + --target) TARGET="$2"; shift 2 ;; --output) OUTPUT_PATH="$2"; shift 2 ;; --image-size) IMAGE_SIZE_MB="$2"; shift 2 ;; --version) MIXER_VERSION="$2"; shift 2 ;;