Skip to content

Commit

Permalink
Remove --disable-lvm and --use-lvm flags
Browse files Browse the repository at this point in the history
Signed-off-by: Mauro Morales <[email protected]>
  • Loading branch information
mauromorales committed May 22, 2024
1 parent a291584 commit 0eb0580
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions tools-image/build-arm-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ set -ex
load_vars() {

model=${MODEL:-odroid_c2}
disable_lvm=${DISABLE_LVM:-false}
directory=${DIRECTORY:-}
output_image="${OUTPUT_IMAGE:-arm.img}"
# Img creation options. Size is in MB for all of the vars below
Expand Down Expand Up @@ -109,8 +108,6 @@ usage()
echo " --directory: (optional) A directory which will be used for active/passive/recovery system"
echo " --model: (optional) The board model"
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 " --use-lvm: (deprecated and ignored. Kept for backwards compatibility)"
exit 1
}

Expand Down Expand Up @@ -194,12 +191,6 @@ while [ "$#" -gt 0 ]; do
shift 1
repo_type=$1
;;
--disable-lvm)
disable_lvm=true
;;
--use-lvm)
disable_lvm=false
;;
-h)
usage
;;
Expand Down

0 comments on commit 0eb0580

Please sign in to comment.