From 2a851f61be67e9894a7527339308be7ebfc0900c Mon Sep 17 00:00:00 2001 From: Paul Whalen Date: Jan 30 2017 18:08:08 +0000 Subject: Add --supported-boards help option --- diff --git a/arm-image-installer b/arm-image-installer index 357216c..d50fef9 100755 --- a/arm-image-installer +++ b/arm-image-installer @@ -22,6 +22,7 @@ Usage: $(basename ${0}) --addconsole - Add system console to extlinux.conf --addkey= - /path/to/ssh-public-key --blacklistvc4 - Blacklist the VC4 driver for Rpi2/3 (BZ#1387733) + --supported-boards Example: $(basename ${0}) --image=Fedora-Rawhide.xz --target=Bananapi --media=/dev/mmcblk0 @@ -101,6 +102,10 @@ while [ $# -gt 0 ]; do --blacklistvc4) FIX_RPI=1 ;; + --supported-boards) + cat $DOC_DIR/SUPPORTED-BOARDS + exit 0 + ;; --version) echo "$(basename ${0})-"$VERSION"" exit 0