pmbootstrap install --no-local-pkgs: new option (MR 1951)

Don't install locally compiled packages and package signing keys. This
will be used for the official images generated with pmbootstrap.
This commit is contained in:
Oliver Smith 2020-06-22 13:40:30 +02:00 committed by Alexey Min
parent 05849a9f80
commit c8d581e749
No known key found for this signature in database
GPG key ID: EBF5ECFFFEE34DED
3 changed files with 27 additions and 3 deletions

View file

@ -562,6 +562,9 @@ def arguments():
help="wrap the resulting image in a graphical"
" on-device installer, so the installation can"
" be customized after flashing")
install.add_argument("--no-local-pkgs", dest="install_local_pkgs",
help="do not install locally compiled packages and"
" package signing keys", action="store_false")
group = install.add_mutually_exclusive_group()
group.add_argument("--sparse", help="generate sparse image file"
" (even if unsupported by device)", default=None,