Skip to content

Commit a868346

Browse files
authored
Merge pull request #56 from Itxaka/keep_lvm_flag
2 parents 83f58e3 + f533e5e commit a868346

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tools-image/build-arm-image.sh

+4
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ usage()
103103
echo " --model: (optional) The board model"
104104
echo " --efi-dir: (optional) A directory with files which will be added to the efi partition"
105105
echo " --disable-lvm: (optional- no arguments) LVM for the recovery and oem partitions will be disabled"
106+
echo " --use-lvm: (deprecated and ignored. Kept for backwards compatibility)"
106107
exit 1
107108
}
108109

@@ -192,6 +193,9 @@ while [ "$#" -gt 0 ]; do
192193
--disable-lvm)
193194
disable_lvm=true
194195
;;
196+
--use-lvm)
197+
disable_lvm=false
198+
;;
195199
-h)
196200
usage
197201
;;

0 commit comments

Comments
 (0)