pmb.parse.kconfig: add 'community' option (MR 2204)

Add the new option that will be mandatory for all devices in
community/main category. This is just a combination of anbox + iwd +
nftables + containers + zram + netboot.

While the existing options could be removed we're keeping it for now
given that also some devices with downstream kernel might find some
options useful.
This commit is contained in:
Luca Weiss 2022-09-07 22:49:23 +02:00 committed by Oliver Smith
parent 1fee644dce
commit e468fc518e
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB
4 changed files with 22 additions and 2 deletions

View file

@ -476,6 +476,9 @@ def arguments_kconfig(subparser):
" options needed for zram support too")
check.add_argument("--netboot", action="store_true", help="check"
" options needed for netbooting too")
check.add_argument("--community", action="store_true", help="check"
" options needed for various features, required for"
" community/main devices")
check.add_argument("--uefi", action="store_true", help="check"
" options needed for uefi too")
add_kernel_arg(check)