forked from Mirror/pmbootstrap
kconfig check: add --keep-going argument (MR 2384)
Abort the "pmbootstrap kconfig check" on the first error, unless the --keep-going argument was passed. This makes it easier to go through the failed kernels one by one until they are all fixed.
This commit is contained in:
parent
816ae5ac6c
commit
f1afdeaaa1
4 changed files with 13 additions and 2 deletions
|
@ -660,6 +660,12 @@ def arguments_kconfig(subparser):
|
|||
help="print one generic error per component instead of"
|
||||
" listing each option that needs to be adjusted",
|
||||
)
|
||||
check.add_argument(
|
||||
"-k",
|
||||
"--keep-going",
|
||||
action="store_true",
|
||||
help="continue on errors instead of aborting on the first error",
|
||||
)
|
||||
add_kernel_arg(check, nargs="*")
|
||||
|
||||
# "pmbootstrap kconfig edit"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue