You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Values in the selectedConfigs list are checked using an AND operation i.e they all need to exist or not. In some environments, a kernel configuration may have been loaded as a module (m) or built into the kernel (y) depending of the kernel version. We are not able to have a spec like below to allow a preflight to capture both cases.
This will limit users to just detecting a configuration is either loaded as a module or in-built into the kernel.
Describe the feature
Have the analyser accept a config with multiple values i.e CONFIG_X=my. This would mean that we would be able to define a spec like below which would check whether a kernel configuration exists irrelevant of whether it was loaded as a module or in-built into the kernel. The ability of checking one of the other (m or y) is still preserved with this approach.
Describe the rationale for the suggested feature.
When we define an analyser to check for the availability of a kernel config, it would look something like this
Values in the
selectedConfigs
list are checked using an AND operation i.e they all need to exist or not. In some environments, a kernel configuration may have been loaded as a module (m
) or built into the kernel (y
) depending of the kernel version. We are not able to have a spec like below to allow a preflight to capture both cases.This will limit users to just detecting a configuration is either loaded as a module or in-built into the kernel.
Describe the feature
Have the analyser accept a config with multiple values i.e
CONFIG_X=my
. This would mean that we would be able to define a spec like below which would check whether a kernel configuration exists irrelevant of whether it was loaded as a module or in-built into the kernel. The ability of checking one of the other (m
ory
) is still preserved with this approach.The text was updated successfully, but these errors were encountered: