mirror of
https://github.com/kairos-io/osbuilder.git
synced 2025-08-16 14:57:31 +00:00
Merge pull request #56 from Itxaka/keep_lvm_flag
This commit is contained in:
commit
a868346eac
@ -103,6 +103,7 @@ usage()
|
|||||||
echo " --model: (optional) The board model"
|
echo " --model: (optional) The board model"
|
||||||
echo " --efi-dir: (optional) A directory with files which will be added to the efi partition"
|
echo " --efi-dir: (optional) A directory with files which will be added to the efi partition"
|
||||||
echo " --disable-lvm: (optional- no arguments) LVM for the recovery and oem partitions will be disabled"
|
echo " --disable-lvm: (optional- no arguments) LVM for the recovery and oem partitions will be disabled"
|
||||||
|
echo " --use-lvm: (deprecated and ignored. Kept for backwards compatibility)"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -192,6 +193,9 @@ while [ "$#" -gt 0 ]; do
|
|||||||
--disable-lvm)
|
--disable-lvm)
|
||||||
disable_lvm=true
|
disable_lvm=true
|
||||||
;;
|
;;
|
||||||
|
--use-lvm)
|
||||||
|
disable_lvm=false
|
||||||
|
;;
|
||||||
-h)
|
-h)
|
||||||
usage
|
usage
|
||||||
;;
|
;;
|
||||||
|
Loading…
Reference in New Issue
Block a user