mirror of
https://gitlab.postmarketos.org/postmarketOS/pmbootstrap.git
synced 2025-07-13 03:19:47 +03:00
parse.arguments: Allow providing multiple packages for kconfig_check
It can be quite useful to check the configs for a list of packages, so adjust the argument parsing code to support that. Reviewed-by: Oliver Smith <ollieparanoid@postmarketos.org> Tested-by: Oliver Smith <ollieparanoid@postmarketos.org> Reviewed-by: Clayton Craft <clayton@craftyguy.net> Link: https://lists.sr.ht/~postmarketos/pmbootstrap-devel/%3C20231028085901.35205-1-luca@z3ntu.xyz%3E
This commit is contained in:
parent
5dcd8465ed
commit
41daa850d7
2 changed files with 3 additions and 5 deletions
|
@ -476,7 +476,7 @@ def arguments_kconfig(subparser):
|
|||
check.add_argument(f"--{name}", action="store_true",
|
||||
dest=f"kconfig_check_{name}",
|
||||
help=f"check options needed for {name} too")
|
||||
add_kernel_arg(check)
|
||||
add_kernel_arg(check, nargs="*")
|
||||
|
||||
# "pmbootstrap kconfig edit"
|
||||
edit = sub.add_parser("edit", help="edit kernel aport config")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue