| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
This is an automated commit generated from the
kernel-5.7.0-0.rc1.20200414git8632e9b5645b.1 tag in
https://gitlab.com/cki-project/kernel-ark.git
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This script detects unknown Kconfig symbols by checking whether the
Kconfig macros used in the various *.config files have a corresponding
Kconfig symbol in the tree. Its core test is done with grep().
It turns out that match pattern used in grep() is too broad. For
instance, it doesn't report CONFIG_ACPI_PROCFS as unknown because there
is a Kconfig entry for ACPI_PROCFS_POWER in the tree. Make the pattern
match Kconfig symbols exactly to correct this.
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
|
|
|
|
|
|
|
|
| |
With the introduction of the new method of configuration generation the
names of the shipped kernel configuration files changed too. Adjust the
glob pattern in the check-configs.pl script to those changed names.
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
|
|
We can run this once per RC (or somewhat frequently) to keep the split
config-* files clean of dead Kconfig options
|