pmb.install._install: add option to not generate the image (MR 1914)

This commit is contained in:
Daniele Debernardi 2020-04-12 21:40:20 +02:00 committed by Alexey Min
parent add39d1a57
commit 34c6f88691
No known key found for this signature in database
GPG key ID: 0B19D2A65870B448
2 changed files with 9 additions and 2 deletions

View file

@ -512,6 +512,8 @@ def arguments():
group.add_argument("--android-recovery-zip",
help="generate TWRP flashable zip",
action="store_true", dest="android_recovery_zip")
group.add_argument("--no-image", help="do not generate the image",
action="store_true", dest="no_image")
install.add_argument("--rsync", help="update the sdcard using rsync,"
" does not work with --fde", action="store_true")
install.add_argument("--cipher", help="cryptsetup cipher used to"