pmb.parse.kconfig.check_config_options_set: Update docstring (MR 2490)

The mentioned variable no longer exists, so update it to reflect how
things work now.
This commit is contained in:
Newbyte 2024-11-15 11:58:50 +01:00
parent c8bd5abde1
commit b2d32a85e9
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -117,13 +117,7 @@ def check_config_options_set(
:param config: full kernel config as string :param config: full kernel config as string
:param config_path: full path to kernel config file :param config_path: full path to kernel config file
:param config_arch: architecture name (alpine format, e.g. aarch64, x86_64) :param config_arch: architecture name (alpine format, e.g. aarch64, x86_64)
:param options: kconfig_options* var passed from pmb/config/__init__.py: :param options: dictionary returned by pmb.parse.kconfigcheck.read_category().
kconfig_options_example = {
">=0.0.0": { # all versions
"all": { # all arches
"ANDROID_PARANOID_NETWORK": False,
},
}
:param component: name of the component to test (postmarketOS, waydroid, ) :param component: name of the component to test (postmarketOS, waydroid, )
:param pkgver: kernel version :param pkgver: kernel version
:param details: print all warnings if True, otherwise one per component :param details: print all warnings if True, otherwise one per component