forked from Mirror/pmbootstrap
kconfig check: add --no-details argument
Provide a fast way to go through the no-details mode for kconfig check, which is otherwise only triggered after running "kconfig edit". This is useful for development. Reviewed-by: Clayton Craft <clayton@craftyguy.net> Link: https://lists.sr.ht/~postmarketos/pmbootstrap-devel/%3C20230312151325.1968-9-ollieparanoid@postmarketos.org%3E
This commit is contained in:
parent
9bbb1c11fc
commit
dffb8614bc
2 changed files with 7 additions and 2 deletions
|
@ -464,6 +464,10 @@ def arguments_kconfig(subparser):
|
|||
check.add_argument("--arch", choices=arch_choices, dest="arch")
|
||||
check.add_argument("--file", action="store_true", help="check a file"
|
||||
" directly instead of a config in a package")
|
||||
check.add_argument("--no-details", action="store_false",
|
||||
dest="kconfig_check_details",
|
||||
help="print one generic error per component instead of"
|
||||
" listing each option that needs to be adjusted")
|
||||
for name in pmb.parse.kconfig.get_all_component_names():
|
||||
check.add_argument(f"--{name}", action="store_true",
|
||||
dest=f"kconfig_check_{name}",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue